usr
/
lib64
/
perl5
/
vendor_perl
/
auto
/
Net
/
SSLeay
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
SSLeay.so
601.71 KB
Rename
Delete
autosplit.ix
1.54 KB
Rename
Delete
debug_read.al
677 bytes
Rename
Delete
do_https.al
508 bytes
Rename
Delete
do_https2.al
446 bytes
Rename
Delete
do_https3.al
466 bytes
Rename
Delete
do_https4.al
357 bytes
Rename
Delete
do_httpx2.al
559 bytes
Rename
Delete
do_httpx3.al
1.52 KB
Rename
Delete
do_httpx4.al
544 bytes
Rename
Delete
dump_peer_certificate.al
958 bytes
Rename
Delete
get_http.al
316 bytes
Rename
Delete
get_http3.al
319 bytes
Rename
Delete
get_http4.al
319 bytes
Rename
Delete
get_https.al
319 bytes
Rename
Delete
get_https3.al
322 bytes
Rename
Delete
get_https4.al
322 bytes
Rename
Delete
get_httpx.al
316 bytes
Rename
Delete
get_httpx3.al
319 bytes
Rename
Delete
get_httpx4.al
319 bytes
Rename
Delete
head_http.al
319 bytes
Rename
Delete
head_http3.al
322 bytes
Rename
Delete
head_http4.al
346 bytes
Rename
Delete
head_https.al
322 bytes
Rename
Delete
head_https3.al
325 bytes
Rename
Delete
head_https4.al
333 bytes
Rename
Delete
head_httpx.al
319 bytes
Rename
Delete
head_httpx3.al
322 bytes
Rename
Delete
head_httpx4.al
399 bytes
Rename
Delete
http_cat.al
1.17 KB
Rename
Delete
https_cat.al
2.96 KB
Rename
Delete
httpx_cat.al
558 bytes
Rename
Delete
initialize.al
815 bytes
Rename
Delete
make_form.al
604 bytes
Rename
Delete
make_headers.al
575 bytes
Rename
Delete
new_x_ctx.al
1.81 KB
Rename
Delete
open_proxy_tcp_connection.al
1.25 KB
Rename
Delete
open_tcp_connection.al
1.45 KB
Rename
Delete
post_http.al
318 bytes
Rename
Delete
post_http3.al
321 bytes
Rename
Delete
post_http4.al
321 bytes
Rename
Delete
post_https.al
321 bytes
Rename
Delete
post_https3.al
324 bytes
Rename
Delete
post_https4.al
324 bytes
Rename
Delete
post_httpx.al
318 bytes
Rename
Delete
post_httpx3.al
321 bytes
Rename
Delete
post_httpx4.al
321 bytes
Rename
Delete
put_http.al
316 bytes
Rename
Delete
put_http3.al
319 bytes
Rename
Delete
put_http4.al
319 bytes
Rename
Delete
put_https.al
319 bytes
Rename
Delete
put_https3.al
322 bytes
Rename
Delete
put_https4.al
322 bytes
Rename
Delete
put_httpx.al
316 bytes
Rename
Delete
put_httpx3.al
319 bytes
Rename
Delete
put_httpx4.al
319 bytes
Rename
Delete
randomize.al
1.00 KB
Rename
Delete
set_cert_and_key.al
828 bytes
Rename
Delete
set_proxy.al
540 bytes
Rename
Delete
set_server_cert_and_key.al
413 bytes
Rename
Delete
ssl_read_CRLF.al
384 bytes
Rename
Delete
ssl_read_all.al
1.02 KB
Rename
Delete
ssl_read_until.al
3.07 KB
Rename
Delete
ssl_write_CRLF.al
812 bytes
Rename
Delete
ssl_write_all.al
5.60 KB
Rename
Delete
sslcat.al
3.05 KB
Rename
Delete
tcp_read_CRLF.al
400 bytes
Rename
Delete
tcp_read_all.al
756 bytes
Rename
Delete
tcp_read_until.al
970 bytes
Rename
Delete
tcp_write_CRLF.al
793 bytes
Rename
Delete
tcp_write_all.al
1.20 KB
Rename
Delete
tcpcat.al
1.33 KB
Rename
Delete
tcpxcat.al
485 bytes
Rename
Delete
want_X509_lookup.al
441 bytes
Rename
Delete
want_nothing.al
357 bytes
Rename
Delete
want_read.al
309 bytes
Rename
Delete
want_write.al
312 bytes
Rename
Delete
# NOTE: Derived from blib/lib/Net/SSLeay.pm. # Changes made here will be lost when autosplit is run again. # See AutoSplit.pm. package Net::SSLeay; #line 799 "blib/lib/Net/SSLeay.pm (autosplit into blib/lib/auto/Net/SSLeay/ssl_read_until.al)" ### from patch by Clinton Wong <clintdw@netcom.com> # ssl_read_until($ssl [, $delimit [, $max_length]]) # if $delimit missing, use $/ if it exists, otherwise use \n # read until delimiter reached, up to $max_length chars if defined sub ssl_read_until ($;$$) { my ($ssl,$delim, $max_length) = @_; # guess the delim string if missing if ( ! defined $delim ) { if ( defined $/ && length $/ ) { $delim = $/ } else { $delim = "\n" } # Note: \n,$/ value depends on the platform } my $len_delim = length $delim; my ($got); my $reply = ''; # If we have OpenSSL 0.9.6a or later, we can use SSL_peek to # speed things up. # N.B. 0.9.6a has security problems, so the support for # anything earlier than 0.9.6e will be dropped soon. if (&Net::SSLeay::OPENSSL_VERSION_NUMBER >= 0x0090601f) { $max_length = 2000000000 unless (defined $max_length); my ($pending, $peek_length, $found, $done); while (blength($reply) < $max_length and !$done) { #Block if necessary until we get some data $got = Net::SSLeay::peek($ssl,1); last if print_errs('SSL_peek'); $pending = Net::SSLeay::pending($ssl) + blength($reply); $peek_length = ($pending > $max_length) ? $max_length : $pending; $peek_length -= blength($reply); $got = Net::SSLeay::peek($ssl, $peek_length); last if print_errs('SSL_peek'); $peek_length = blength($got); #$found = index($got, $delim); # Old and broken # the delimiter may be split across two gets, so we prepend # a little from the last get onto this one before we check # for a match my $match; if(blength($reply) >= blength($delim) - 1) { #if what we've read so far is greater or equal #in length of what we need to prepatch $match = substr $reply, blength($reply) - blength($delim) + 1; } else { $match = $reply; } $match .= $got; $found = index($match, $delim); if ($found > -1) { #$got = Net::SSLeay::ssl_read_all($ssl, $found+$len_delim); #read up to the end of the delimiter $got = Net::SSLeay::ssl_read_all($ssl, $found + $len_delim - ((blength($match)) - (blength($got)))); $done = 1; } else { $got = Net::SSLeay::ssl_read_all($ssl, $peek_length); $done = 1 if ($peek_length == $max_length - blength($reply)); } last if print_errs('SSL_read'); debug_read(\$reply, \$got) if $trace>1; last if $got eq ''; $reply .= $got; } } else { while (!defined $max_length || length $reply < $max_length) { $got = Net::SSLeay::ssl_read_all($ssl,1); # one by one last if print_errs('SSL_read'); debug_read(\$reply, \$got) if $trace>1; last if $got eq ''; $reply .= $got; last if $len_delim && substr($reply, blength($reply)-$len_delim) eq $delim; } } return $reply; } # end of Net::SSLeay::ssl_read_until 1;
Save