Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.204
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
perl /
vendor /
lib /
DBI /
Delete
Unzip
Name
Size
Permission
Date
Action
Const
[ DIR ]
drwxrwxrwx
2024-07-26 17:38
DBD
[ DIR ]
drwxrwxrwx
2024-07-26 17:38
Gofer
[ DIR ]
drwxrwxrwx
2024-07-26 17:38
ProfileDumper
[ DIR ]
drwxrwxrwx
2024-07-26 17:38
SQL
[ DIR ]
drwxrwxrwx
2024-07-26 17:38
Util
[ DIR ]
drwxrwxrwx
2024-07-26 17:38
Changes.pm
123.46
KB
-rw-rw-rw-
2021-01-24 17:15
DBD.pm
123.57
KB
-rw-rw-rw-
2016-04-21 18:34
Profile.pm
31.89
KB
-rw-rw-rw-
2016-04-21 17:54
ProfileData.pm
19.53
KB
-rw-rw-rw-
2017-08-14 00:48
ProfileDumper.pm
10.14
KB
-rw-rw-rw-
2013-06-25 01:03
ProfileSubs.pm
1.14
KB
-rw-rw-rw-
2013-06-25 01:03
ProxyServer.pm
25.84
KB
-rw-rw-rw-
2016-04-21 18:34
PurePerl.pm
37.9
KB
-rw-rw-rw-
2020-01-26 19:44
W32ODBC.pm
4.5
KB
-rw-rw-rw-
2013-05-23 14:56
Save
Rename
package DBI::ProfileSubs; our $VERSION = "0.009396"; =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;