summaryrefslogtreecommitdiffstats
path: root/census/arping_users.py
diff options
context:
space:
mode:
authormakefu <makefu@syntax-fehler.de>2011-06-30 23:33:03 +0200
committermakefu <makefu@syntax-fehler.de>2011-06-30 23:33:03 +0200
commit8a19571735f245380ee3cf4d4023a95fa0cdc736 (patch)
treeedc0521c4d05fd023859700d7c80339b6498d0b4 /census/arping_users.py
parent5347a59c010413403eabe9ee584150e96f66623e (diff)
parentf35d129de5003cb46c81a8691ed94285ce467606 (diff)
Merge branch 'master' of github.com:krebscode/painload
Conflicts: mining/Makefile: now installs tmux and configures
Diffstat (limited to 'census/arping_users.py')
-rwxr-xr-xcensus/arping_users.py6
1 files changed, 2 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"
-
-