Linux linux7.web4world.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
: 199.38.113.107 | : 216.73.216.178
Cant Read [ /etc/named.conf ]
?5.6.40
siddhapu
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
/
lib /
python2.7 /
site-packages /
clcommon /
[ HOME SHELL ]
Name
Size
Permission
Action
?;
cpapi
[ DIR ]
drwxr-xr-x
__init__.py
196
B
-rw-r--r--
__init__.pyc
491
B
-rw-r--r--
__init__.pyo
491
B
-rw-r--r--
clcagefs.py
6.16
KB
-rw-r--r--
clcagefs.pyc
7.56
KB
-rw-r--r--
clcagefs.pyo
7.56
KB
-rw-r--r--
clconfpars.py
1.68
KB
-rw-r--r--
clconfpars.pyc
2.48
KB
-rw-r--r--
clconfpars.pyo
2.48
KB
-rw-r--r--
cldetect.py
2.93
KB
-rw-r--r--
cldetect.pyc
2.96
KB
-rw-r--r--
cldetect.pyo
2.96
KB
-rw-r--r--
clemail.py
1.86
KB
-rw-r--r--
clemail.pyc
2.04
KB
-rw-r--r--
clemail.pyo
2.04
KB
-rw-r--r--
clfunc.py
2.5
KB
-rw-r--r--
clfunc.pyc
3.33
KB
-rw-r--r--
clfunc.pyo
3.33
KB
-rw-r--r--
clhook.py
3.55
KB
-rw-r--r--
clhook.pyc
3.75
KB
-rw-r--r--
clhook.pyo
3.75
KB
-rw-r--r--
cllog.py
1.11
KB
-rw-r--r--
cllog.pyc
1.83
KB
-rw-r--r--
cllog.pyo
1.83
KB
-rw-r--r--
cloutput.py
447
B
-rw-r--r--
cloutput.pyc
697
B
-rw-r--r--
cloutput.pyo
697
B
-rw-r--r--
clpwd.py
3.53
KB
-rw-r--r--
clpwd.pyc
4.65
KB
-rw-r--r--
clpwd.pyo
4.65
KB
-rw-r--r--
clsec.py
450
B
-rw-r--r--
clsec.pyc
1.2
KB
-rw-r--r--
clsec.pyo
1.2
KB
-rw-r--r--
utils.py
1.45
KB
-rw-r--r--
utils.pyc
2.09
KB
-rw-r--r--
utils.pyo
2.09
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : utils.py
#!/usr/bin/python # -*- coding: utf-8 -*- import subprocess class ExternalProgramFailed(Exception): def __init__(self, message): Exception.__init__(self, message) def run_command(cmd, env_data=None): """ Runs external process and returns output @param cmd: command and arguments as a list @return: string """ cmd_line = ' '.join(cmd) try: output = subprocess.Popen( cmd, stdin=open('/dev/null'), stdout=subprocess.PIPE, stderr=subprocess.STDOUT, close_fds=True, env=env_data) except OSError, oserr: raise ExternalProgramFailed('%s. Can not run command: %s' % (cmd_line, str(oserr))) std_out, std_err = output.communicate() if output.returncode != 0: raise ExternalProgramFailed(std_err or 'output of the command: %s\n%s' % (cmd_line, std_out)) return std_out def delete_line_from_file(path, line): """ Delete line from file. Return True when line(s) have been deleted, False otherwise (specified line is not found) :param path: path to file :type path: string :param line: line to delete without EOL ('\n') :type line: string :rtype bool """ found = False f = open(path, 'r+') lines = f.readlines() f.seek(0) for l in lines: if l != ('%s\n' % line): f.write(l) else: found = True f.truncate() f.close() return found
Close