Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
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
/
etc /
pki /
tls /
certs /
[ HOME SHELL ]
Name
Size
Permission
Action
Makefile
2.19
KB
-rw-r--r--
ca-bundle.crt
743.62
KB
-rw-r--r--
ca-bundle.trust.crt
431.91
KB
-rw-r--r--
ca.crt
1.2
KB
-rw-r--r--
localhost.crt
1.43
KB
-rw-------
make-dummy-cert
610
B
-rwxr-xr-x
renew-dummy-cert
829
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : renew-dummy-cert
#!/bin/bash if [ $# -eq 0 ]; then echo $"Usage: `basename $0` filename" 1>&2 exit 1 fi PEM=$1 REQ=`/bin/mktemp /tmp/openssl.XXXXXX` KEY=`/bin/mktemp /tmp/openssl.XXXXXX` CRT=`/bin/mktemp /tmp/openssl.XXXXXX` NEW=${PEM}_ trap "rm -f $REQ $KEY $CRT $NEW" SIGINT if [ ! -f $PEM ]; then echo "$PEM: file not found" 1>&2 exit 1 fi let -a SERIAL=0x$(openssl x509 -in $PEM -noout -serial | cut -d= -f2) let SERIAL++ umask 077 OWNER=`ls -l $PEM | awk '{ printf "%s.%s", $3, $4; }'` openssl rsa -inform pem -in $PEM -out $KEY openssl x509 -x509toreq -in $PEM -signkey $KEY -out $REQ openssl x509 -req -in $REQ -signkey $KEY -set_serial $SERIAL -days 365 \ -extfile /etc/pki/tls/openssl.cnf -extensions v3_ca -out $CRT (cat $KEY ; echo "" ; cat $CRT) > $NEW chown $OWNER $NEW mv -f $NEW $PEM rm -f $REQ $KEY $CRT exit 0
Close