usch
Mar 30 2004, 11:53 AM
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

could use it to write a batch file for the blackice exploit to mass scann this
so long
bonarez
Mar 30 2004, 01:08 PM
it shouldn't be that hard to do it in vb.. it could even be done in excell I think..
fulvioo
Mar 30 2004, 01:15 PM
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
Mar 30 2004, 01:36 PM
I am just wondering why?
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
Mar 30 2004, 02:14 PM
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
Mar 30 2004, 02:47 PM
that will kinda do it, was a very rushed job in vb
usch
Mar 30 2004, 03:29 PM
thanks for your help guys.especially nulladd.that was exactly what i was looking for.thank u very much

so long
drink3r
Mar 30 2004, 04:18 PM
Helium Pinger does this:
http://helium.webz.cz/
BuzzDee
Mar 30 2004, 05:29 PM
drink3r, do u have this program on ur hd? because the archive is corrupt... would be nice if u could upload it.
greetz
ssapp
Mar 30 2004, 06:06 PM
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
Mar 30 2004, 06:07 PM
very nice nulladd works great here , thank you
drink3r
Mar 30 2004, 06:18 PM
BuzzDee:
The archive is perfectly fine, just downloaded it
Paul
Mar 30 2004, 07:28 PM
Could i have the source of your prog nullad ?
Thnx.
elmismo
Mar 30 2004, 09:37 PM
hey guys i need a good port scanner, you know where i can get it
thanks
tweakz20
Mar 30 2004, 09:47 PM
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

.. guess it wasn't made for that kinda stuff...
seeno
Mar 30 2004, 09:59 PM
here's the web page and the direct download
Web PageDirect Download(note: this is a windows port scanner)
Roby
Mar 30 2004, 10:31 PM
| 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
Mar 31 2004, 02:06 AM
here is the source of my program
i put zero thought into making it so u could probly structure it way better
kingvandal
Mar 31 2004, 04:42 AM
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
Mar 31 2004, 01:44 PM
Thanks for sharing nullad, ill look into it wheni've installed vb.
slaughter
Mar 31 2004, 04:42 PM
Thanks Nulladd, now i can export ur code to perl and before i will share
CU.
LittleHacker
Apr 3 2004, 02:42 PM
@ 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
Apr 3 2004, 02:44 PM
and here is binnary
Hope to be usefull
nuorder
Apr 3 2004, 02:46 PM
yeh nice work
elmismo
Apr 4 2004, 05:57 PM
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.