Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
apps /
perl /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
corelist
14.77
KB
-rwxr-xr-x
2019-05-31 11:39
cpan
8
KB
-rwxr-xr-x
2019-05-31 11:39
dbilogstrip
1.36
KB
-r-xr-xr-x
2019-05-31 11:40
dbiprof
6.08
KB
-r-xr-xr-x
2019-05-31 11:40
dbiproxy
5.28
KB
-r-xr-xr-x
2019-05-31 11:40
enc2xs
41.09
KB
-rwxr-xr-x
2019-05-31 11:39
encguess
3.03
KB
-rwxr-xr-x
2019-05-31 11:39
fastcgi-wrapper.pl
3.08
KB
-rwxr-xr-x
2019-05-31 11:40
h2ph
28.57
KB
-rwxr-xr-x
2019-05-31 11:39
h2xs
59.47
KB
-rwxr-xr-x
2019-05-31 11:39
instmodsh
4.22
KB
-rwxr-xr-x
2019-05-31 11:39
json_pp
4.59
KB
-rwxr-xr-x
2019-05-31 11:39
libnetcfg
15.44
KB
-rwxr-xr-x
2019-05-31 11:39
lwp-download
8.36
KB
-r-xr-xr-x
2019-05-31 11:40
lwp-dump
2.66
KB
-r-xr-xr-x
2019-05-31 11:40
lwp-mirror
2.35
KB
-r-xr-xr-x
2019-05-31 11:40
lwp-request
14.64
KB
-r-xr-xr-x
2019-05-31 11:40
perl
3.16
MB
-rwxr-xr-x
2019-05-31 11:39
perl-fcgi
705
B
-rwxr-xr-x
2019-05-31 11:40
perl5.30.0
3.16
MB
-rwxr-xr-x
2019-05-31 11:39
perlbug
45.31
KB
-rwxr-xr-x
2019-05-31 11:39
perldoc
294
B
-rwxr-xr-x
2019-05-31 11:39
perlivp
10.6
KB
-rwxr-xr-x
2019-05-31 11:39
perlthanks
45.31
KB
-rwxr-xr-x
2019-05-31 11:39
piconv
8.19
KB
-rwxr-xr-x
2019-05-31 11:39
pl2pm
4.46
KB
-rwxr-xr-x
2019-05-31 11:39
pod2html
4.07
KB
-rwxr-xr-x
2019-05-31 11:39
pod2man
14.71
KB
-rwxr-xr-x
2019-05-31 11:39
pod2text
10.58
KB
-rwxr-xr-x
2019-05-31 11:39
pod2usage
3.87
KB
-rwxr-xr-x
2019-05-31 11:39
podchecker
3.59
KB
-rwxr-xr-x
2019-05-31 11:39
podselect
2.48
KB
-rwxr-xr-x
2019-05-31 11:39
prove
13.37
KB
-rwxr-xr-x
2019-05-31 11:39
ptar
3.5
KB
-rwxr-xr-x
2019-05-31 11:39
ptardiff
2.6
KB
-rwxr-xr-x
2019-05-31 11:39
ptargrep
4.32
KB
-rwxr-xr-x
2019-05-31 11:39
shasum
9.77
KB
-rwxr-xr-x
2019-05-31 11:39
splain
18.73
KB
-rwxr-xr-x
2019-05-31 11:39
xsubpp
5.07
KB
-rwxr-xr-x
2019-05-31 11:39
zipdetails
49.56
KB
-rwxr-xr-x
2019-05-31 11:39
Save
Rename
#!/usr/local/apps/perl/bin/perl -w use strict; use LWP::UserAgent (); use Getopt::Long qw(GetOptions); use Encode; use Encode::Locale; my $VERSION = "6.09"; GetOptions(\my %opt, 'parse-head', 'max-length=n', 'keep-client-headers', 'method=s', 'agent=s', 'request', ) || usage(); my $url = shift || usage(); @ARGV && usage(); sub usage { (my $progname = $0) =~ s,.*/,,; die <<"EOT"; Usage: $progname [options] <url> Recognized options are: --agent <str> --keep-client-headers --max-length <n> --method <str> --parse-head --request EOT } my $ua = LWP::UserAgent->new( parse_head => $opt{'parse-head'} || 0, keep_alive => 1, env_proxy => 1, agent => $opt{agent} || "lwp-dump/$VERSION ", ); my $req = HTTP::Request->new($opt{method} || 'GET' => decode(locale => $url)); my $res = $ua->simple_request($req); $res->remove_header(grep /^Client-/, $res->header_field_names) unless $opt{'keep-client-headers'} or ($res->header("Client-Warning") || "") eq "Internal response"; if ($opt{request}) { $res->request->dump; print "\n"; } $res->dump(maxlength => $opt{'max-length'}); __END__ =head1 NAME lwp-dump - See what headers and content is returned for a URL =head1 SYNOPSIS B<lwp-dump> [ I<options> ] I<URL> =head1 DESCRIPTION The B<lwp-dump> program will get the resource identified by the URL and then dump the response object to STDOUT. This will display the headers returned and the initial part of the content, escaped so that it's safe to display even binary content. The escapes syntax used is the same as for Perl's double quoted strings. If there is no content the string "(no content)" is shown in its place. The following options are recognized: =over =item B<--agent> I<str> Override the user agent string passed to the server. =item B<--keep-client-headers> LWP internally generate various C<Client-*> headers that are stripped by B<lwp-dump> in order to show the headers exactly as the server provided them. This option will suppress this. =item B<--max-length> I<n> How much of the content to show. The default is 512. Set this to 0 for unlimited. If the content is longer then the string is chopped at the limit and the string "...\n(### more bytes not shown)" appended. =item B<--method> I<str> Use the given method for the request instead of the default "GET". =item B<--parse-head> By default B<lwp-dump> will not try to initialize headers by looking at the head section of HTML documents. This option enables this. This corresponds to L<LWP::UserAgent/"parse_head">. =item B<--request> Also dump the request sent. =back =head1 SEE ALSO L<lwp-request>, L<LWP>, L<HTTP::Message/"dump">