exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

madscan.c

madscan.c
Posted Feb 23, 2000
Authored by The Madjoker

Madscan scans for sites which do not block broadcast IP addresses. Based on broadscan, but 4 times faster, and supports scanning a full class A address space.

tags | tool, scanner
systems | unix
SHA-256 | 8a263b5fd823f5cd845ca898388b2e9d3103fb7666d850bb4e46c68150490c19

madscan.c

Change Mirror Download
 /* madscan v 1.0 by ThE MaDj0kEr
based on broadscan 0.31 by Vacuum http://www.technotronic.com

it's a scanner which finds DUP broadcast ip addresses.
it works 4 times faster than original, and also allows
scanning a full a-class.

Dedicated to Itze... she knows why

Thanks to DarkHeavy for hosting and testing ;)
*/

#include <stdlib.h>
#include <stdio.h>

#define DEBUG 1

FILE *stream;

void pingz0r(int first, int second, int start, int end)
{
int counter,flag,cont;
FILE *stream;
char tempstring[2048];
char parse[2048];

if (second==255) {
for (cont=0; cont<255; cont++)
{
for (counter=start; counter <end; counter++)
{
flag=0;
sprintf(tempstring,"ping -c 2 -n %d.%d.%d.255 2>/dev/null",first,
cont, counter);
stream=popen(tempstring,"r");
while (fgets(parse,sizeof(parse),stream)!=NULL)
{
if (DEBUG) printf("Results:%s",parse);
if (strstr(parse,"DUP"))
{
flag=1;
fclose(stream);
break;
}
}
if (flag==1)
stream=fopen("broadcast.txt", "a");
fprintf(stream, "%d.%d.%d.255\n",first,cont,counter);
fclose( stream);
}
}
} else

for (counter=start; counter <end; counter++)
{
flag=0;
sprintf(tempstring,"ping -c 2 -n %d.%d.%d.255 2>/dev/null",first,
second, counter);
stream=popen(tempstring,"r");
while (fgets(parse,sizeof(parse),stream)!=NULL)
{
if (DEBUG) printf("Results:%s",parse);
if (strstr(parse,"DUP"))
{
flag=1;
fclose(stream);
break;
}
}
if (flag==1)
stream=fopen("broadcast.txt", "a");
fprintf(stream, "%d.%d.%d.255\n",first,second,counter);
fclose( stream);
}
}
}

main(int argc, char *argv[])

{
int first,second,count;

if (argc!=3)
{
printf("\nusage : %s <octet(A)> <octet(B)>\n\n",argv[0]);
printf("Setting octec(B) as 255 then madscan will scan a full
A-Class\n\n");
exit(0);
}

first=atoi(argv[1]);
second=atoi(argv[2]);

if (first==127)
{
printf("%d is a localhost. You have no clue or are trying to break this
progra
m",first);
exit(0);
}
if (first>254 || first <0)
{
printf("First octet is: %d. It must be between <1-254>",first);
exit(0);
}
if (second>255 || second<0)
{
printf("Second octet is: %d. It must be <1-254> or 255 for full-class
scan",second);
exit(0);
}

printf("Scanning for DUP broadcast ip addresses\n");
printf("Results output to broadcast.txt\n");

if (fork()!=0)
pingz0r(first,second,0,32);
else
if (fork()!=0)
pingz0r(first,second,32,64);
else
if (fork()!=0)
pingz0r(first,second,64,96);
else
if (fork()!=0)
pingz0r(first,second,96,128);
else
if(fork()!=0)
pingz0r(first,second,128,160);
else
if (fork()!=0)
pingz0r(first,second,160,192);
else
if (fork()!=0)
pingz0r(first,second,192,224);
else
pingz0r(first,second,224,255);

}




Login or Register to add favorites

File Archive:

June 2023

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Jun 1st
    18 Files
  • 2
    Jun 2nd
    0 Files
  • 3
    Jun 3rd
    0 Files
  • 4
    Jun 4th
    0 Files
  • 5
    Jun 5th
    0 Files
  • 6
    Jun 6th
    0 Files
  • 7
    Jun 7th
    0 Files
  • 8
    Jun 8th
    0 Files
  • 9
    Jun 9th
    0 Files
  • 10
    Jun 10th
    0 Files
  • 11
    Jun 11th
    0 Files
  • 12
    Jun 12th
    0 Files
  • 13
    Jun 13th
    0 Files
  • 14
    Jun 14th
    0 Files
  • 15
    Jun 15th
    0 Files
  • 16
    Jun 16th
    0 Files
  • 17
    Jun 17th
    0 Files
  • 18
    Jun 18th
    0 Files
  • 19
    Jun 19th
    0 Files
  • 20
    Jun 20th
    0 Files
  • 21
    Jun 21st
    0 Files
  • 22
    Jun 22nd
    0 Files
  • 23
    Jun 23rd
    0 Files
  • 24
    Jun 24th
    0 Files
  • 25
    Jun 25th
    0 Files
  • 26
    Jun 26th
    0 Files
  • 27
    Jun 27th
    0 Files
  • 28
    Jun 28th
    0 Files
  • 29
    Jun 29th
    0 Files
  • 30
    Jun 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close