-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathshell.py
36 lines (32 loc) · 967 Bytes
/
shell.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
import requests
import base64
import sys
def send_raw(url,password,cmd):
res=requests.post(url,{
'password':password,
'code': base64.b64encode(cmd.encode('utf-8'))
})
return res.text
def send_php_shell(url,password,cmd):
return send_raw(url,password,'<?php '+cmd)
if __name__ == '__main__':
if len(sys.argv) <= 1:
print('Usage:\r\n\tpython shell.py url password')
sys.exit(0)
url = sys.argv[1]
password =sys.argv[2]
while True:
cmd = input('php-shell>')
if cmd == 'exit':
break
elif cmd.startswith('run'):
cmd,path = cmd.split(' ',1)
code = ''
with open(path) as f:
for line in f:
code = code + line + "\r\n"
response = send_raw(url,password,code);
print(response)
else:
response = send_php_shell(url,password,cmd);
print(response)