Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.222.82.248
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib64 /
perl5 /
vendor_perl /
DBI /
Delete
Unzip
Name
Size
Permission
Date
Action
Const
[ DIR ]
drwxr-xr-x
2021-11-03 07:25
DBD
[ DIR ]
drwxr-xr-x
2021-11-03 07:25
Gofer
[ DIR ]
drwxr-xr-x
2021-11-03 07:25
ProfileDumper
[ DIR ]
drwxr-xr-x
2021-11-03 07:25
SQL
[ DIR ]
drwxr-xr-x
2021-11-03 07:25
Util
[ DIR ]
drwxr-xr-x
2021-11-03 07:25
Changes.pm
111.05
KB
-rw-r--r--
2014-06-10 01:06
DBD.pm
122.99
KB
-rw-r--r--
2013-04-04 22:17
FAQ.pm
34.38
KB
-rw-r--r--
2013-04-04 22:17
Profile.pm
31.75
KB
-rw-r--r--
2013-04-04 22:17
ProfileData.pm
19.63
KB
-rw-r--r--
2013-04-04 22:17
ProfileDumper.pm
10.19
KB
-rw-r--r--
2013-04-04 22:17
ProfileSubs.pm
1.18
KB
-rw-r--r--
2013-04-04 22:17
ProxyServer.pm
25.84
KB
-rw-r--r--
2014-06-10 01:06
PurePerl.pm
37.04
KB
-rw-r--r--
2013-04-04 22:17
Save
Rename
package DBI::ProfileSubs; our $VERSION = sprintf("0.%06d", q$Revision: 9395 $ =~ /(\d+)/o); =head1 NAME DBI::ProfileSubs - Subroutines for dynamic profile Path =head1 SYNOPSIS DBI_PROFILE='&norm_std_n3' prog.pl This is new and still experimental. =head1 TO DO Define come kind of naming convention for the subs. =cut use strict; use warnings; # would be good to refactor these regex into separate subs and find some # way to compose them in various combinations into multiple subs. # Perhaps via AUTOLOAD where \&auto_X_Y_Z creates a sub that does X, Y, and Z. # The final subs always need to be very fast. # sub norm_std_n3 { # my ($h, $method_name) = @_; local $_ = $_; s/\b\d+\b/<N>/g; # 42 -> <N> s/\b0x[0-9A-Fa-f]+\b/<N>/g; # 0xFE -> <N> s/'.*?'/'<S>'/g; # single quoted strings (doesn't handle escapes) s/".*?"/"<S>"/g; # double quoted strings (doesn't handle escapes) # convert names like log20001231 into log<N> s/([a-z_]+)(\d{3,})\b/${1}<N>/ig; # abbreviate massive "in (...)" statements and similar s!((\s*<[NS]>\s*,\s*){100,})!sprintf("$2,<repeated %d times>",length($1)/2)!eg; return $_; } 1;