Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
democracyforfuture /
wp-admin /
includes /
Delete
Unzip
Name
Size
Permission
Date
Action
ajax-actions.php
134.33
KB
-rw-r--r--
2019-10-01 16:28
class-automatic-upgrader-skin.php
3.07
KB
-rw-r--r--
2018-08-17 01:51
class-bulk-plugin-upgrader-skin.php
2.01
KB
-rw-r--r--
2018-08-30 13:36
class-bulk-theme-upgrader-skin.php
2.04
KB
-rw-r--r--
2018-08-30 13:36
class-bulk-upgrader-skin.php
5.18
KB
-rw-r--r--
2018-03-11 16:44
class-file-upload-upgrader.php
3.29
KB
-rw-r--r--
2017-11-30 23:11
class-ftp-pure.php
5.27
KB
-rw-r--r--
2019-03-17 01:20
class-language-pack-upgrader-skin.php
2.31
KB
-rw-r--r--
2018-08-30 13:36
class-language-pack-upgrader.php
14.38
KB
-rw-r--r--
2019-01-21 21:13
class-plugin-upgrader-skin.php
2.62
KB
-rw-r--r--
2018-03-22 20:27
class-theme-installer-skin.php
4.33
KB
-rw-r--r--
2018-08-30 13:36
class-theme-upgrader-skin.php
3.75
KB
-rw-r--r--
2018-08-30 13:36
class-walker-category-checklist.php
4.16
KB
-rw-r--r--
2017-11-30 23:11
class-walker-nav-menu-checklist.php
4.9
KB
-rw-r--r--
2018-08-30 13:36
class-wp-ajax-upgrader-skin.php
2.97
KB
-rw-r--r--
2018-02-27 02:31
class-wp-community-events.php
15.58
KB
-rw-r--r--
2018-06-28 02:34
class-wp-importer.php
7.35
KB
-rw-r--r--
2018-03-02 17:17
class-wp-links-list-table.php
7.57
KB
-rw-r--r--
2021-04-15 04:01
class-wp-media-list-table.php
22.37
KB
-rw-r--r--
2019-04-08 23:54
class-wp-ms-sites-list-table.php
15.48
KB
-rw-r--r--
2018-08-17 01:51
class-wp-ms-themes-list-table.php
20.06
KB
-rw-r--r--
2018-08-17 01:51
class-wp-post-comments-list-table.php
1.44
KB
-rw-r--r--
2018-08-17 01:51
class-wp-site-health-auto-updates.php
12.22
KB
-rw-r--r--
2019-05-01 18:08
class-wp-site-health.php
59.59
KB
-rw-r--r--
2019-05-17 11:56
class-wp-themes-list-table.php
9.31
KB
-rw-r--r--
2019-04-01 11:55
class-wp-upgrader-skin.php
5.04
KB
-rw-r--r--
2019-03-21 18:03
class-wp-upgrader-skins.php
1.42
KB
-rw-r--r--
2016-12-03 03:40
class-wp-users-list-table.php
17.13
KB
-rw-r--r--
2019-01-12 06:41
continents-cities.php
20.26
KB
-rw-r--r--
2018-07-18 11:21
credits.php
2.16
KB
-rw-r--r--
2017-11-30 23:11
edit-tag-messages.php
1.38
KB
-rw-r--r--
2017-11-30 23:11
image-edit.php
33.9
KB
-rw-r--r--
2019-03-01 20:58
misc.php
72.5
KB
-rw-r--r--
2020-10-29 20:52
ms-admin-filters.php
1.34
KB
-rw-r--r--
2017-11-30 23:11
taxonomy.php
7.73
KB
-rw-r--r--
2018-03-25 19:35
user.php
51.58
KB
-rw-r--r--
2019-04-13 18:08
Save
Rename
<?php /** * List Table API: WP_Post_Comments_List_Table class * * @package WordPress * @subpackage Administration * @since 4.4.0 */ /** * Core class used to implement displaying post comments in a list table. * * @since 3.1.0 * @access private * * @see WP_Comments_List_Table */ class WP_Post_Comments_List_Table extends WP_Comments_List_Table { /** * @return array */ protected function get_column_info() { return array( array( 'author' => __( 'Author' ), 'comment' => _x( 'Comment', 'column name' ), ), array(), array(), 'comment', ); } /** * @return array */ protected function get_table_classes() { $classes = parent::get_table_classes(); $classes[] = 'wp-list-table'; $classes[] = 'comments-box'; return $classes; } /** * @param bool $output_empty */ public function display( $output_empty = false ) { $singular = $this->_args['singular']; wp_nonce_field( 'fetch-list-' . get_class( $this ), '_ajax_fetch_list_nonce' ); ?> <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" style="display:none;"> <tbody id="the-comment-list" <?php if ( $singular ) { echo " data-wp-lists='list:$singular'"; } ?> > <?php if ( ! $output_empty ) { $this->display_rows_or_placeholder(); } ?> </tbody> </table> <?php } /** * @param bool $comment_status * @return int */ public function get_per_page( $comment_status = false ) { return 10; } }