diff options
author | Felix Richter <github@syntax-fehler.de> | 2011-06-30 23:06:27 +0200 |
---|---|---|
committer | Felix Richter <github@syntax-fehler.de> | 2011-06-30 23:06:27 +0200 |
commit | 07f4cbf46f0872097ecf03435dfbacc2531ca7e2 (patch) | |
tree | 946e003bbd9eb25279656cbd6ad96122fd478fa1 /census | |
parent | 9dd15654794ff3b046be4389fbd047b42500ef67 (diff) | |
parent | 1328ff1587266fc69508c99825fb421bb8da0f84 (diff) |
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'census')
-rwxr-xr-x | census/arping_users.py | 6 | ||||
-rw-r--r-- | census/mac_names.lst | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/census/arping_users.py b/census/arping_users.py index c576e4f3..008fe337 100755 --- a/census/arping_users.py +++ b/census/arping_users.py @@ -21,7 +21,7 @@ def load_names(MAC_NAMES): names = {} f = open(MAC_NAMES) for l in f: - mac,name = l.split() + mac,name = l.split(' ',1) names[mac] = name.replace('\n','') f.close() return names @@ -29,7 +29,7 @@ def load_names(MAC_NAMES): def arping_helper(dic): return arpingy(**dic) -for first in range(4): +for first in range(1,3): for second in range(255): data.append({'iprange':'10.42.'+str(first)+'.'+str(second),'iface':DEV}) @@ -50,5 +50,3 @@ for p in ret: print p[0] + " => " + p[1] if p[1] in names: print names[p[1]]+ " is online" - - diff --git a/census/mac_names.lst b/census/mac_names.lst index dcd3c2b0..ae58b539 100644 --- a/census/mac_names.lst +++ b/census/mac_names.lst @@ -1 +1,7 @@ 00:40:63:c8:b5:a0 krebs +00:23:54:29:1d:3e hadez +00:26:c7:bd:a7:1a Martin +04:1e:64:05:39:28 Stephan +5c:59:48:22:2d:d2 Phil +00:21:00:fb:5c:b6 Kah Hah +00:1e:64:27:3b:72 Felix |