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 : color
#!/usr/bin/perl ###################################################################### # color - Print messages colored by level ###################################################################### use strict; use warnings; my $VERSION = "0.01"; our $CVSVERSION = '$Revision: 1.1 $'; use Log::Log4perl qw(:easy); Log::Log4perl->init(\ <<'EOT'); log4perl.category = DEBUG, Screen log4perl.appender.Screen = Log::Log4perl::Appender::ScreenColoredLevels log4perl.appender.Screen.layout = \ Log::Log4perl::Layout::PatternLayout log4perl.appender.Screen.layout.ConversionPattern = %d %F{1} %L> %m %n EOT for(1..3) { DEBUG "Debug Message"; INFO "Info Message"; WARN "Warn Message"; ERROR "Error Message"; FATAL "Fatal Message"; }
Close