403Webshell
Server IP : 172.24.0.40  /  Your IP : 216.73.216.239
Web Server : Apache
System : Linux dbweb26.ust.edu.ph 4.18.0-513.5.1.el8_9.x86_64 #1 SMP Fri Sep 29 05:21:10 EDT 2023 x86_64
User : apache ( 48)
PHP Version : 8.2.18
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /proc/self/root/usr/share/doc/perl-Net-SSLeay/examples/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/usr/share/doc/perl-Net-SSLeay/examples/get_page_cert.pl
#!/usr/bin/perl
# 8.6.1998, Sampo Kellomaki <sampo@iki.fi>
# 25.3.2002, added certificate display --Sampo
# $Id: get_page_cert.pl,v 1.1 2002/03/25 23:47:15 sampo Exp $
# Get a page via HTTP and print some info about it.

use Net::SSLeay;

($site, $port, $path) = @ARGV;
die "Usage: ./get_page.pl www.cryptsoft.com 443 /\n" unless $path;

($page, $result, $headers, $server_cert)
    = &Net::SSLeay::get_https3($site, $port, $path);

if (!defined($server_cert) || ($server_cert == 0)) {
    print "Subject Name: undefined, Issuer  Name: undefined\n";
} else {
    print 'Subject Name: '
	. Net::SSLeay::X509_NAME_oneline(
	       Net::SSLeay::X509_get_subject_name($server_cert))
	    . 'Issuer  Name: '
		. Net::SSLeay::X509_NAME_oneline(
		       Net::SSLeay::X509_get_issuer_name($server_cert))
		    . "\n";
}

print "Headers were `$headers'\n";
print "Result was `$result'\n";

print "=================== Page follows =================\n";
print $page;

__END__

Youez - 2016 - github.com/yon3zu
LinuXploit