-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver-inventory.py
executable file
·59 lines (52 loc) · 1.7 KB
/
server-inventory.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
from __future__ import print_function
import sys
import paramiko
from netaddr import IPNetwork
from multiprocessing.dummy import Pool as ThreadPool
def connect(ip):
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
# print("Testing",ip)
for password in passwords:
try:
ssh.connect(ip, username='root', password=password,
allow_agent=False, look_for_keys=False, timeout=5)
stdin, stdout, stderr = ssh.exec_command("uname -n")
results[ip] = {"hostname": "".join(stdout.readlines()).strip(),
"password": password}
return
except paramiko.ssh_exception.AuthenticationException:
pass
except Exception, e:
results[ip] = {"error": e}
return
results[ip] = {"error": "cannot login"}
def usage():
print("""Usage: %s <passwords> <ip>
<passwords> a password or a comma separated password list
<ip> an ip address or a network in cidr notation
Examples:
%s password 192.168.1.1
%s password,secondpassword 172.16.1.0/25 """
% (sys.argv[0], sys.argv[0], sys.argv[0]))
def main():
global ips
if len(ips) > 1: # get rid of network and broadcast addresses
ips = ips[1:-1]
print ("Testing", sys.argv[2])
pool = ThreadPool(24)
pool.map(connect, ips)
pool.close()
pool.join()
for ip in results:
print(ip, results[ip])
if __name__ == "__main__":
try:
passwords = sys.argv[1].split(",")
ips = [str(i) for i in IPNetwork(sys.argv[2])]
except Exception, e:
usage()
sys.exit(-1)
results = {}
main()