forked from robertdavidgraham/masscan
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bfd1d5d
commit 4cb17c2
Showing
7 changed files
with
108 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 1,71 @@ | ||
#include "masscan.h" | ||
#include "logger.h" | ||
#include "rand-blackrock.h" | ||
|
||
void | ||
main_listscan(struct Masscan *masscan) | ||
{ | ||
uint64_t count_ips; | ||
uint64_t count_ports; | ||
uint64_t i; | ||
uint64_t range; | ||
uint64_t start; | ||
uint64_t end; | ||
struct BlackRock blackrock; | ||
unsigned r = masscan->retries 1; | ||
unsigned increment = masscan->shard.of; | ||
|
||
count_ports = rangelist_count(&masscan->ports); | ||
if (count_ports == 0) | ||
rangelist_add_range(&masscan->ports, 80, 80); | ||
count_ports = rangelist_count(&masscan->ports); | ||
|
||
count_ips = rangelist_count(&masscan->targets); | ||
if (count_ips == 0) { | ||
LOG(0, "FAIL: target IP address list empty\n"); | ||
LOG(0, " [hint] try something like \"--range 10.0.0.0/8\"\n"); | ||
LOG(0, " [hint] try something like \"--range 192.168.0.100-192.168.0.200\"\n"); | ||
return; | ||
} | ||
|
||
range = count_ips * count_ports; | ||
|
||
|
||
blackrock_init(&blackrock, range, masscan->seed); | ||
|
||
start = masscan->resume.index (masscan->shard.one-1); | ||
end = range; | ||
if (masscan->resume.count && end > start masscan->resume.count) | ||
end = start masscan->resume.count; | ||
end = masscan->retries * masscan->max_rate; | ||
|
||
|
||
for (i=start; i<end; ) { | ||
uint64_t xXx; | ||
unsigned ip; | ||
unsigned port; | ||
|
||
|
||
xXx = (i (r--) * masscan->max_rate); | ||
while (xXx >= range) | ||
xXx -= range; | ||
xXx = blackrock_shuffle(&blackrock, xXx); | ||
ip = rangelist_pick(&masscan->targets, xXx % count_ips); | ||
port = rangelist_pick(&masscan->ports, xXx / count_ips); | ||
|
||
if (count_ports == 1) | ||
printf("%u.%u.%u.%u\n", | ||
(ip>>24)&0xFF, (ip>>16)&0xFF, (ip>>8)&0xFF, (ip>>0)&0xFF | ||
); | ||
else | ||
printf("%u.%u.%u.%u:%u\n", | ||
(ip>>24)&0xFF, (ip>>16)&0xFF, (ip>>8)&0xFF, (ip>>0)&0xFF, | ||
port | ||
); | ||
|
||
if (r == 0) { | ||
i = increment; /* <------ increment by 1 normally, more with shards/nics */ | ||
r = masscan->retries 1; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters