Full Version: Need A Tool
usch
hi there

yeah i am lookin for a tool which works like this:
u type in some range e.g. : 192.168.0.0-192.168.255.255
and it writes all the ips from
192.168.0.0-192.168.255.255 in a .txt file.

would be nice if someone has got a tool like that smile.gif
could use it to write a batch file for the blackice exploit to mass scann this


so long
bonarez
it shouldn't be that hard to do it in vb.. it could even be done in excell I think..
fulvioo
yeah
excel will do the trick
just onpen that program and you will probably figure it out how to do it
I'm using a portuguese version so its hard to tell you step by step in english
Stephen79
I am just wondering why? laugh.gif

Are you sure you mean;

192.168.0.0
192.168.0.1
192.168.0.2
192.168.0.3
....
192.168.255.255

If so, it certainly work in Excel, but surely you dont just want a list of the full range do you?
Roby
hmhhh,
If you want an app here ya go:
This app works - coded by me, tested on WinXP.

EXPERT CODERS DONT LOUGH AT MY CODE - IM JUST A BEGINNER.

How to use:
IP is like this:
a.b.c.d
you only enter a, b, c and c2 - so the end IP looks like a.b.c2.d.
App skips IPs like a.b.c.1 and a.b.c.255 so the output is like:
a.b.c.2
a.b.c.3
a.b.c.4
.........
a.b.c2.254

I will make any corrections if you have any notes.
I couldnt add a compiled version, because of being trial I guess...

Last note: enter wrong values at your own risk - wrong values will crash an app.

Language = C++

CODE

#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int a, c2, b, c, d, i, j;
cout << "Enter a: \n";
cin >> a;
cout << "Enter b: \n";
cin >> b;
cout << "Enter c: \n";
cin >> c;
c=c-1;
cout << "Enter c2: \n";
cin >> c2;
c2=c2-1;
cout << "Working on it....\n";
for (j=c; j<=c2; j++) {
 c++;
 d=2;
 for (i=1; i<=253; i++) {
  ofstream outFile("list.txt", ios::app);
  if (!outFile)
   {
    cout << "Unable to open the file\n";
    return 1;
    }
  outFile  << a << "." << b << "." << c << "." << d << endl;
  outFile.close();
  d++;
 }
}
cout << "FINISHED!\n";
cout << "want to quit? - enter any value or close the window...\n";
cin >> a;
return 0;
   };
nulladd
that will kinda do it, was a very rushed job in vb
usch
thanks for your help guys.especially nulladd.that was exactly what i was looking for.thank u very much wink.gif

so long
drink3r
Helium Pinger does this:

http://helium.webz.cz/
BuzzDee
drink3r, do u have this program on ur hd? because the archive is corrupt... would be nice if u could upload it.

greetz
ssapp
excel is the easiest i think......just copy the 192.168 to row of cells......then in another row type 1 and when you pull it down to the next it will increment....then just merge the cells
DCLXVI
very nice nulladd works great here , thank you biggrin.gif
drink3r
BuzzDee:

The archive is perfectly fine, just downloaded it
Paul
Could i have the source of your prog nullad ?
Thnx.
elmismo
hey guys i need a good port scanner, you know where i can get it
thanks
tweakz20
there's port scanners all around... (they're like in 1/2 the posts)
scan500 (or other numbers) work fine for me

too bad this exploit wasn't written to give you a choice to give a scan range wink.gif .. guess it wasn't made for that kinda stuff...
seeno
here's the web page and the direct download

Web Page
Direct Download

(note: this is a windows port scanner)
Roby
QUOTE (elmismo @ Mar 31 2004, 12:37 AM)
hey guys i need a good port scanner, you know where i can get it
thanks

I think a good port scanner should be able to scan stealth and I dont think there are any stealth scanners avaiable for public (correct me if Im wrong). You can only get something that author claims to be stealth like Nmap (Ive read that its not completely stealth, but I havent tested it myself).
If you want a good port scanner youll have to code it yourself...
Or just use scanners mentioned, like sfind, but be wise not to scan from your own IP.

Greetz,
Roby
nulladd
here is the source of my program

i put zero thought into making it so u could probly structure it way better
kingvandal
I made a small batch file that gets all network info and drops it to a txt file. problem is I need a self-contained smtp mailer. Like the ones that the latest viruses have. not blat. it requires a install. anyone have one? or point me in the right direction. I am totaly lost on this.


Rich
Paul
Thanks for sharing nullad, ill look into it wheni've installed vb.
slaughter
Thanks Nulladd, now i can export ur code to perl and before i will share

CU.
LittleHacker
@ nulladd
Thanks for your codes, but they result rong in some cases ( such as 192.187.145.176-192.187.146.10)
here is right codes

LittleHacker
and here is binnary

Hope to be usefull wink.gif
nuorder
yeh nice work
elmismo
biggrin.gif
Thanks guys
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.

 
Invision Power Board © 2001-2005 Invision Power Services, Inc.