Linux newlinux5.pouyasazan.org 3.10.0-962.3.2.lve1.5.60.el7.x86_64 #1 SMP Fri Jul 23 07:07:00 EDT 2021 x86_64
LiteSpeed
Server IP : 88.99.66.243 & Your IP : 216.73.216.178
Domains :
Cant Read [ /etc/named.conf ]
User : wdbbsgxf
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
pki /
tls /
certs /
Delete
Unzip
Name
Size
Permission
Date
Action
88-99-66-243.cprapid.com.crt
1.43
KB
-rw-r--r--
2021-08-24 16:58
Makefile
2.46
KB
-rw-r--r--
2025-10-08 16:52
ca-bundle.crt
239.43
KB
-r--r--r--
2026-01-19 08:28
ca-bundle.trust.crt
512.23
KB
-r--r--r--
2026-01-19 08:28
localhost.crt
1.45
KB
-rw-------
2021-08-24 16:58
make-dummy-cert
610
B
-rwxr-xr-x
2025-10-08 16:52
newlinux5.pouyasazan.org.crt
1.43
KB
-rw-r--r--
2021-09-12 12:49
renew-dummy-cert
829
B
-rwxr-xr-x
2025-10-08 16:52
Save
Rename
#!/bin/sh umask 077 answers() { echo -- echo SomeState echo SomeCity echo SomeOrganization echo SomeOrganizationalUnit echo localhost.localdomain echo root@localhost.localdomain } if [ $# -eq 0 ] ; then echo $"Usage: `basename $0` filename [...]" exit 0 fi for target in $@ ; do PEM1=`/bin/mktemp /tmp/openssl.XXXXXX` PEM2=`/bin/mktemp /tmp/openssl.XXXXXX` trap "rm -f $PEM1 $PEM2" SIGINT answers | /usr/bin/openssl req -newkey rsa:2048 -keyout $PEM1 -nodes -x509 -days 365 -out $PEM2 2> /dev/null cat $PEM1 > ${target} echo "" >> ${target} cat $PEM2 >> ${target} rm -f $PEM1 $PEM2 done