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 : 3.144.237.87
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
myadmin /
templates /
columns_definitions /
Delete
Unzip
Name
Size
Permission
Date
Action
column_adjust_privileges.twig
628
B
-rw-r--r--
2021-02-05 18:27
column_attribute.twig
909
B
-rw-r--r--
2021-02-05 18:27
column_attributes.twig
7.91
KB
-rw-r--r--
2021-02-05 18:27
column_auto_increment.twig
291
B
-rw-r--r--
2021-02-05 18:27
column_comment.twig
188
B
-rw-r--r--
2021-02-05 18:27
column_default.twig
1.23
KB
-rw-r--r--
2021-02-05 18:27
column_definitions_form.twig
6.35
KB
-rw-r--r--
2021-02-05 18:27
column_extra.twig
285
B
-rw-r--r--
2021-02-05 18:27
column_indexes.twig
1.21
KB
-rw-r--r--
2021-02-05 18:27
column_length.twig
402
B
-rw-r--r--
2021-02-05 18:27
column_name.twig
1.44
KB
-rw-r--r--
2021-02-05 18:27
column_null.twig
322
B
-rw-r--r--
2021-02-05 18:27
column_type.twig
337
B
-rw-r--r--
2021-02-05 18:27
column_virtuality.twig
972
B
-rw-r--r--
2021-02-05 18:27
mime_type.twig
763
B
-rw-r--r--
2021-02-05 18:27
move_column.twig
626
B
-rw-r--r--
2021-02-05 18:27
partitions.twig
7.52
KB
-rw-r--r--
2021-02-05 18:27
table_fields_definitions.twig
4.71
KB
-rw-r--r--
2021-02-05 18:27
transformation.twig
1.17
KB
-rw-r--r--
2021-02-05 18:27
transformation_option.twig
421
B
-rw-r--r--
2021-02-05 18:27
Save
Rename
<form method="post" action="{{ action }}" class=" {{- action == 'tbl_create.php' ? 'create_table' : 'append_fields' -}} _form ajax lock-page"> {{ get_hidden_inputs(form_params) }} {# happens when an index has been set on a column #} {# and a column is added to the table creation dialog #} {# This contains a JSON-encoded string #} <input type="hidden" name="primary_indexes" value=" {{- primary_indexes is not empty ? primary_indexes : '[]' }}"> <input type="hidden" name="unique_indexes" value=" {{- unique_indexes is not empty ? unique_indexes : '[]' }}"> <input type="hidden" name="indexes" value=" {{- indexes is not empty ? indexes : '[]' }}"> <input type="hidden" name="fulltext_indexes" value=" {{- fulltext_indexes is not empty ? fulltext_indexes : '[]' }}"> <input type="hidden" name="spatial_indexes" value=" {{- spatial_indexes is not empty ? spatial_indexes : '[]' }}"> {% if action == 'tbl_create.php' %} <div id="table_name_col_no_outer"> <table id="table_name_col_no" class="tdblock"> <tr class="vmiddle floatleft"> <td>{% trans 'Table name' %}: <input type="text" name="table" size="40" maxlength="64" value="{{ table is defined ? table }}" class="textfield" autofocus required> </td> <td> {% trans 'Add' %} <input type="number" id="added_fields" name="added_fields" size="2" value="1" min="1" onfocus="this.select()"> {% trans 'column(s)' %} <input class="btn btn-secondary" type="button" name="submit_num_fields" value="{% trans 'Go' %}"> </td> </tr> </table> </div> {% endif %} {% if content_cells is iterable %} {% include 'columns_definitions/table_fields_definitions.twig' with { 'is_backup': is_backup, 'fields_meta': fields_meta, 'mimework': mimework, 'content_cells': content_cells, 'change_column': change_column, 'is_virtual_columns_supported': is_virtual_columns_supported, 'browse_mime': browse_mime, 'server_type': server_type, 'max_rows': max_rows, 'char_editing': char_editing, 'attribute_types': attribute_types, 'privs_available': privs_available, 'max_length': max_length, 'charsets': charsets } only %} {% endif %} {% if action == 'tbl_create.php' %} <div class="responsivetable"> <table> <tr class="vtop"> <th>{% trans 'Table comments:' %}</th> <td width="25"> </td> <th>{% trans 'Collation:' %}</th> <td width="25"> </td> <th> {% trans 'Storage Engine:' %} {{ show_mysql_docu('Storage_engines') }} </th> <td width="25"> </td> <th> {% trans 'Connection:' %} {{ show_mysql_docu('federated-create-connection') }} </th> </tr> <tr> <td> <input type="text" name="comment" size="40" maxlength="60" value="{{ comment is defined ? comment }}" class="textfield"> </td> <td width="25"> </td> <td> <select lang="en" dir="ltr" name="tbl_collation"> <option value=""></option> {% for charset in charsets %} <optgroup label="{{ charset.name }}" title="{{ charset.description }}"> {% for collation in charset.collations %} <option value="{{ collation.name }}" title="{{ collation.description }}" {{- collation.name == tbl_collation ? ' selected' }}> {{- collation.name -}} </option> {% endfor %} </optgroup> {% endfor %} </select> </td> <td width="25"> </td> <td> {{ get_html_select( 'tbl_storage_engine', null, tbl_storage_engine ) }} </td> <td width="25"> </td> <td> <input type="text" name="connection" size="40" value="{{ connection is defined ? connection }}" placeholder="scheme://user_name[:password]@host_name[:port_num]/db_name/tbl_name" class="textfield" required="required"> </td> </tr> {% if have_partitioning %} <tr class="vtop"> <th colspan="5"> {% trans 'PARTITION definition:' %} {{ show_mysql_docu('Partitioning') }} </th> </tr> <tr> <td colspan="5"> {% include 'columns_definitions/partitions.twig' with { 'partition_details': partition_details } only %} </td> </tr> {% endif %} </table> </div> {% endif %} <fieldset class="tblFooters"> <input class="btn btn-secondary preview_sql" type="button" value="{% trans 'Preview SQL' %}"> <input class="btn btn-primary" type="submit" name="do_save_data" value="{% trans 'Save' %}"> </fieldset> <div id="properties_message"></div> </form>