iΒiiG1pAccept-Encoding,User-AgentKMx_v=J-v KEY: https://avaliareassessoria.com.br/Ven-SS/root/opt/cpanel/ea-openssl/etc/pki/tls/certs/make-dummy-cert HTTP/1.1 200 OK Date: Wed, 29 Apr 2026 12:50:15 GMT Server: Apache Last-Modified: Tue, 10 Feb 2026 20:19:26 GMT Accept-Ranges: bytes Content-Length: 610 Vary: Accept-Encoding,User-Agent Connection: close Content-Type: text/plain #!/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