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.70.127.73
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.fedora-misc
# Some miscellaneous Fedora-related macros # List files matching inclusion globs, excluding files matching exclusion blogs # Optional parameters: # – -i "<globs>" inclusion globs # – -x "<globs>" exclusion globs # Globs are space-separated lists of shell globs. Such lists require %{quote:} # use for safe rpm argument passing. # Alternatively, set the following rpm variables before calling the macro: # – “listfiles_include” inclusion globs # — “listfiles_exclude” exclusion globs # Arguments passed to the macro without flags will be interpreted as inclusion # globs. %listfiles(i:x:) %{expand: %if %{lua: print(string.len(rpm.expand("%{?-i*}%{?listfiles_include}%*")))} listfiles_include=$(realpath -e --relative-base=. %{?-i*} %{?listfiles_include} %* | sort -u) %if %{lua: print(string.len(rpm.expand("%{?-x*}%{?listfiles_exclude}")))} while IFS= read -r finc ; do realpath -qe --relative-base=. %{?-x*} %{?listfiles_exclude} \\ | sort -u | grep -q "${finc}" || echo "${finc}" done <<< "${listfiles_include}" %else echo "${listfiles_include}" %endif %endif } # https://github.com/rpm-software-management/rpm/issues/581 # Write the contents of a list of rpm variables to a macro file. # The target file must contain the corresponding anchors. # For example %writevars -f myfile foo bar will replace: # @@FOO@@ with the rpm evaluation of %{foo} and # @@BAR@@ with the rpm evaluation of %{bar} # in myfile %writevars(f:) %{lua: local fedora = require "fedora.common" local macrofile = rpm.expand("%{-f*}") local rpmvars = {} for i = 1, rpm.expand("%#") do table.insert(rpmvars, rpm.expand("%" .. i)) end fedora.writevars(macrofile,rpmvars) } # gpgverify verifies signed sources. There is documentation in the script. %gpgverify(k:s:d:) %{lua: local script = rpm.expand("%{_rpmconfigdir}/redhat/gpgverify ") local keyring = rpm.expand("%{-k*}") local signature = rpm.expand("%{-s*}") local data = rpm.expand("%{-d*}") print(script) if keyring ~= "" then print(rpm.expand("--keyring='%{SOURCE" .. keyring .. "}' ")) end if signature ~= "" then print(rpm.expand("--signature='%{SOURCE" .. signature .. "}' ")) end if data ~= "" then print(rpm.expand("--data='%{SOURCE" .. data .. "}' ")) end } # gpgverify verifies signed sources. There is documentation in the script. %gpgverify(k:s:d:) %{lua: local script = rpm.expand("%{_rpmconfigdir}/redhat/gpgverify ") local keyring = rpm.expand("%{-k*}") local signature = rpm.expand("%{-s*}") local data = rpm.expand("%{-d*}") print(script) if keyring ~= "" then print(rpm.expand("--keyring='%{SOURCE" .. keyring .. "}' ")) end if signature ~= "" then print(rpm.expand("--signature='%{SOURCE" .. signature .. "}' ")) end if data ~= "" then print(rpm.expand("--data='%{SOURCE" .. data .. "}' ")) end }
Close