-
Notifications
You must be signed in to change notification settings - Fork 150
/
target.py
54 lines (47 loc) · 1.76 KB
/
target.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
import paramiko
import os
import socket
import subprocess
from colorama import *
from paramiko import SSHClient
from scp import SCPClient
GOOD = Fore.GREEN + " + " + Fore.RESET
BAD = Fore.RED + " - " + Fore.RESET
WARN = Fore.YELLOW + " * " + Fore.RESET
INFO = Fore.BLUE + " + " + Fore.RESET
class Target:
def __init__(self, hostname, uname, pword, num, port=22):
self.hostname = hostname
self.uname = uname
self.pword = pword
self.target_num = num
self.port = port
self.ssh = None
self.is_open = False
self.scp = None
self.sessions = []
def conn(self):
#print("Opening SSH connection to target...")
self.ssh = paramiko.SSHClient() # use ssh.exec_command("") to perform an action.
self.ssh.load_system_host_keys()
self.ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
self.ssh.connect(self.hostname, port=self.port, username=self.uname, password=self.pword)
self.scp = SCPClient(self.ssh.get_transport())#don't call this, but use the above function instead.
self.is_open = True
def scpFiles(self, filename, a, recur=True): # call this with a filename and false if it is a single file
print(GOOD + "Shipping files: ")
print(INFO + a)
bareFile = ""
for i in range(len(a)-1, 0, -1):
if(a[i] == '/'):
break
else:
bareFile += a[i]
bareFile = bareFile[::-1]
#print bareFile
#print("echo " + self.pword + " | sudo -S rm " + bareFile)
self.ssh.exec_command("echo " + self.pword + " | sudo -S rm " + bareFile)
self.scp.put(a, recursive=recur)
def close(self):
self.is_open = False
self.ssh.close()