Linux cyberpanel 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
LiteSpeed
: 160.191.175.3 | : 216.73.216.114
Cant Read [ /etc/named.conf ]
8.2.29
aodai6801
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 /
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
522
B
-rw-r--r--
dovecot-oauth2.conf.ext
2.13
KB
-rw-r--r--
dovecot-openssl.cnf
542
B
-rw-r--r--
dovecot-sql.conf.ext
5.69
KB
-rw-r--r--
dovecot.conf
4.24
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