Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'master' of https://github.com/ciccio-87/zmap into cicci…
…o-87-master
  • Loading branch information
zakird committed Aug 17, 2013
2 parents eaf4ece + 7438bdd commit 779424f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions README
@@ -1,3 +1,9 @@
==============================================================================
Now it should be working on 32 bits systems (only possible issues
should be on some prints).
Further testing is needed though
==============================================================================

ZMap is a fast network scanner designed for Internet-wide network surveys. On a
typical desktop computer with a gigabit Ethernet connection, ZMap is capable
scanning the entire public IPv4 address space in under 45 minutes.
Expand Down
2 changes: 1 addition & 1 deletion lib/blacklist.c
Expand Up @@ -124,6 +124,6 @@ int blacklist_init_from_files(char *whitelist_filename, char *blacklist_filename
constraint_optimize(constraint);
uint64_t allowed = blacklist_count_allowed();
log_debug("blacklist", "%lu addresses allowed to be scanned (%0.0f%% of address space)",
allowed, allowed*100./(1L << 32));
allowed, allowed*100./((long long int)1 << 32));
return 0;
}
6 changes: 3 additions & 3 deletions src/zmap.c
Expand Up @@ -81,7 +81,7 @@ static void *start_mon(__attribute__((unused)) void *arg)
#define SI(w,x,y) printf("%s\t%s\t%i\n", w, x, y);
#define SD(w,x,y) printf("%s\t%s\t%f\n", w, x, y);
#define SU(w,x,y) printf("%s\t%s\t%u\n", w, x, y);
#define SLU(w,x,y) printf("%s\t%s\t%lu\n", w, x, y);
#define SLU(w,x,y) printf("%s\t%s\t%lu\n", w, x, (long unsigned int)y);
#define SS(w,x,y) printf("%s\t%s\t%s\n", w, x, y);
#define STRTIME_LEN 1024

Expand Down Expand Up @@ -458,7 +458,7 @@ int main(int argc, char *argv[])
}
if (end[0] == '%' && end[1] == '\0') {
// treat as percentage
v = v * (1L << 32) / 100.;
v = v * ((unsigned long long int)1 << 32) / 100.;
} else if (end[0] != '\0') {
fprintf(stderr, "%s: extra characters after max-targets\n",
CMDLINE_PARSER_PACKAGE);
Expand All @@ -467,7 +467,7 @@ int main(int argc, char *argv[])
if (v <= 0) {
zconf.max_targets = 0;
}
else if (v >= (1L << 32)) {
else if (v >= ((unsigned long long int)1 << 32)) {
zconf.max_targets = 0xFFFFFFFF;
} else {
zconf.max_targets = v;
Expand Down

0 comments on commit 779424f

Please sign in to comment.