404

[ Avaa Bypassed ]




Upload:

Command:

botdev@18.119.116.139: ~ $
#!/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);



Filemanager

Name Type Size Permission Actions
README File 1.06 KB 0644
hanchors File 1.14 KB 0755
hdump File 683 B 0755
hform File 1.87 KB 0755
hlc File 710 B 0755
hrefsub File 2.72 KB 0755
hstrip File 1.74 KB 0755
htext File 575 B 0755
htextsub File 955 B 0755
htitle File 434 B 0755