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.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
klimaplan-landshut /
wp-admin /
includes /
Delete
Unzip
Name
Size
Permission
Date
Action
ajax-actions.php
142.22
KB
-rw-r--r--
2023-10-12 21:57
class-bulk-plugin-upgrader-skin.php
2.02
KB
-rw-r--r--
2021-03-01 14:04
class-bulk-theme-upgrader-skin.php
2.05
KB
-rw-r--r--
2021-03-01 14:04
class-bulk-upgrader-skin.php
5.18
KB
-rw-r--r--
2019-09-15 10:42
class-language-pack-upgrader.php
14.57
KB
-rw-r--r--
2021-03-01 14:04
class-theme-installer-skin.php
12.16
KB
-rw-r--r--
2021-03-01 14:04
class-wp-filesystem-base.php
22.69
KB
-rw-r--r--
2021-03-01 14:04
class-wp-internal-pointers.php
4.43
KB
-rw-r--r--
2020-01-29 00:45
class-wp-links-list-table.php
7.73
KB
-rw-r--r--
2021-03-01 14:04
class-wp-list-table-compat.php
1.46
KB
-rw-r--r--
2021-03-01 14:04
class-wp-list-table.php
40.55
KB
-rw-r--r--
2023-10-12 21:57
class-wp-media-list-table.php
23.2
KB
-rw-r--r--
2021-03-01 14:04
class-wp-plugins-list-table.php
41.87
KB
-rw-r--r--
2021-03-01 14:04
class-wp-posts-list-table.php
57.43
KB
-rw-r--r--
2021-03-01 14:04
class-wp-privacy-data-export-requests-list-table.php
5.41
KB
-rw-r--r--
2021-03-01 14:04
class-wp-screen.php
36.24
KB
-rw-r--r--
2021-03-01 14:04
class-wp-site-health.php
83.37
KB
-rw-r--r--
2021-03-01 14:04
class-wp-site-icon.php
6.01
KB
-rw-r--r--
2020-01-29 00:45
continents-cities.php
20.26
KB
-rw-r--r--
2018-07-18 11:21
credits.php
5.73
KB
-rw-r--r--
2021-03-01 14:04
edit-tag-messages.php
1.4
KB
-rw-r--r--
2019-07-01 12:52
options.php
4.03
KB
-rw-r--r--
2020-05-16 18:42
template.php
91.36
KB
-rw-r--r--
2021-03-01 14:04
widgets.php
10.52
KB
-rw-r--r--
2021-03-01 14:04
Save
Rename
<?php /** * Helper functions for displaying a list of items in an ajaxified HTML table. * * @package WordPress * @subpackage List_Table * @since 4.7.0 */ /** * Helper class to be used only by back compat functions. * * @since 3.1.0 */ class _WP_List_Table_Compat extends WP_List_Table { public $_screen; public $_columns; /** * Constructor. * * @since 3.1.0 * * @param string|WP_Screen $screen The screen hook name or screen object. * @param string[] $columns An array of columns with column IDs as the keys * and translated column names as the values. */ public function __construct( $screen, $columns = array() ) { if ( is_string( $screen ) ) { $screen = convert_to_screen( $screen ); } $this->_screen = $screen; if ( ! empty( $columns ) ) { $this->_columns = $columns; add_filter( 'manage_' . $screen->id . '_columns', array( $this, 'get_columns' ), 0 ); } } /** * Gets a list of all, hidden, and sortable columns. * * @since 3.1.0 * * @return array */ protected function get_column_info() { $columns = get_column_headers( $this->_screen ); $hidden = get_hidden_columns( $this->_screen ); $sortable = array(); $primary = $this->get_default_primary_column_name(); return array( $columns, $hidden, $sortable, $primary ); } /** * Gets a list of columns. * * @since 3.1.0 * * @return array */ public function get_columns() { return $this->_columns; } }