Issues (4967)

Security Analysis    not enabled

This project does not seem to handle request data directly as such no vulnerable execution paths were found.

  Cross-Site Scripting
Cross-Site Scripting enables an attacker to inject code into the response of a web-request that is viewed by other users. It can for example be used to bypass access controls, or even to take over other users' accounts.
  File Exposure
File Exposure allows an attacker to gain access to local files that he should not be able to access. These files can for example include database credentials, or other configuration files.
  File Manipulation
File Manipulation enables an attacker to write custom data to files. This potentially leads to injection of arbitrary code on the server.
  Object Injection
Object Injection enables an attacker to inject an object into PHP code, and can lead to arbitrary code execution, file exposure, or file manipulation attacks.
  Code Injection
Code Injection enables an attacker to execute arbitrary code on the server.
  Response Splitting
Response Splitting can be used to send arbitrary responses.
  File Inclusion
File Inclusion enables an attacker to inject custom files into PHP's file loading mechanism, either explicitly passed to include, or for example via PHP's auto-loading mechanism.
  Command Injection
Command Injection enables an attacker to inject a shell command that is execute with the privileges of the web-server. This can be used to expose sensitive data, or gain access of your server.
  SQL Injection
SQL Injection enables an attacker to execute arbitrary SQL code on your database server gaining access to user data, or manipulating user data.
  XPath Injection
XPath Injection enables an attacker to modify the parts of XML document that are read. If that XML document is for example used for authentication, this can lead to further vulnerabilities similar to SQL Injection.
  LDAP Injection
LDAP Injection enables an attacker to inject LDAP statements potentially granting permission to run unauthorized queries, or modify content inside the LDAP tree.
  Header Injection
  Other Vulnerability
This category comprises other attack vectors such as manipulating the PHP runtime, loading custom extensions, freezing the runtime, or similar.
  Regex Injection
Regex Injection enables an attacker to execute arbitrary code in your PHP process.
  XML Injection
XML Injection enables an attacker to read files on your local filesystem including configuration files, or can be abused to freeze your web-server process.
  Variable Injection
Variable Injection enables an attacker to overwrite program variables with custom data, and can lead to further vulnerabilities.
Unfortunately, the security analysis is currently not available for your project. If you are a non-commercial open-source project, please contact support to gain access.

src/wp-admin/link-manager.php (3 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
/**
3
 * Link Management Administration Screen.
4
 *
5
 * @package WordPress
6
 * @subpackage Administration
7
 */
8
9
/** Load WordPress Administration Bootstrap */
10
require_once( dirname( __FILE__ ) . '/admin.php' );
11
if ( ! current_user_can( 'manage_links' ) )
12
	wp_die( __( 'Sorry, you are not allowed to edit the links for this site.' ) );
13
14
$wp_list_table = _get_list_table('WP_Links_List_Table');
15
16
// Handle bulk deletes
17
$doaction = $wp_list_table->current_action();
18
19
if ( $doaction && isset( $_REQUEST['linkcheck'] ) ) {
20
	check_admin_referer( 'bulk-bookmarks' );
21
22
	$redirect_to = admin_url( 'link-manager.php' );
23
	$bulklinks = (array) $_REQUEST['linkcheck'];
24
25
	if ( 'delete' == $doaction ) {
26
		foreach ( $bulklinks as $link_id ) {
27
			$link_id = (int) $link_id;
28
29
			wp_delete_link( $link_id );
30
		}
31
32
		$redirect_to = add_query_arg( 'deleted', count( $bulklinks ), $redirect_to );
33
	} else {
34
		/** This action is documented in wp-admin/edit-comments.php */
35
		$redirect_to = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $redirect_to, $doaction, $bulklinks );
36
	}
37
	wp_redirect( $redirect_to );
38
	exit;
39 View Code Duplication
} elseif ( ! empty( $_GET['_wp_http_referer'] ) ) {
40
	 wp_redirect( remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), wp_unslash( $_SERVER['REQUEST_URI'] ) ) );
0 ignored issues
show
It seems like wp_unslash($_SERVER['REQUEST_URI']) targeting wp_unslash() can also be of type array; however, remove_query_arg() does only seem to accept boolean|string, maybe add an additional type check?

This check looks at variables that are passed out again to other methods.

If the outgoing method call has stricter type requirements than the method itself, an issue is raised.

An additional type check may prevent trouble.

Loading history...
It seems like remove_query_arg(array('...SERVER['REQUEST_URI'])) targeting remove_query_arg() can also be of type boolean; however, wp_redirect() does only seem to accept string, maybe add an additional type check?

This check looks at variables that are passed out again to other methods.

If the outgoing method call has stricter type requirements than the method itself, an issue is raised.

An additional type check may prevent trouble.

Loading history...
41
	 exit;
42
}
43
44
$wp_list_table->prepare_items();
45
46
$title = __('Links');
47
$this_file = $parent_file = 'link-manager.php';
48
49
get_current_screen()->add_help_tab( array(
50
'id'		=> 'overview',
51
'title'		=> __('Overview'),
52
'content'	=>
53
	'<p>' . sprintf(__('You can add links here to be displayed on your site, usually using <a href="%s">Widgets</a>. By default, links to several sites in the WordPress community are included as examples.'), 'widgets.php') . '</p>' .
54
    '<p>' . __('Links may be separated into Link Categories; these are different than the categories used on your posts.') . '</p>' .
55
    '<p>' . __('You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table.') . '</p>'
56
) );
57
get_current_screen()->add_help_tab( array(
58
'id'		=> 'deleting-links',
59
'title'		=> __('Deleting Links'),
60
'content'	=>
61
    '<p>' . __('If you delete a link, it will be removed permanently, as Links do not have a Trash function yet.') . '</p>'
62
) );
63
64
get_current_screen()->set_help_sidebar(
65
	'<p><strong>' . __('For more information:') . '</strong></p>' .
66
	'<p>' . __('<a href="https://codex.wordpress.org/Links_Screen">Documentation on Managing Links</a>') . '</p>' .
67
	'<p>' . __('<a href="https://wordpress.org/support/">Support Forums</a>') . '</p>'
68
);
69
70
get_current_screen()->set_screen_reader_content( array(
71
	'heading_list' => __( 'Links list' ),
72
) );
73
74
include_once( ABSPATH . 'wp-admin/admin-header.php' );
75
76
if ( ! current_user_can('manage_links') )
77
	wp_die(__('Sorry, you are not allowed to edit the links for this site.'));
78
79
?>
80
81
<div class="wrap nosubsub">
82
<h1 class="wp-heading-inline"><?php
83
echo esc_html( $title );
84
?></h1>
85
86
<a href="link-add.php" class="page-title-action"><?php echo esc_html_x( 'Add New', 'link' ); ?></a>
87
88
<?php
89 View Code Duplication
if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) {
90
	/* translators: %s: search keywords */
91
	printf( '<span class="subtitle">' . __( 'Search results for &#8220;%s&#8221;' ) . '</span>', esc_html( wp_unslash( $_REQUEST['s'] ) ) );
0 ignored issues
show
It seems like wp_unslash($_REQUEST['s']) targeting wp_unslash() can also be of type array; however, esc_html() does only seem to accept string, maybe add an additional type check?

This check looks at variables that are passed out again to other methods.

If the outgoing method call has stricter type requirements than the method itself, an issue is raised.

An additional type check may prevent trouble.

Loading history...
92
}
93
?>
94
95
<hr class="wp-header-end">
96
97
<?php
98
if ( isset($_REQUEST['deleted']) ) {
99
	echo '<div id="message" class="updated notice is-dismissible"><p>';
100
	$deleted = (int) $_REQUEST['deleted'];
101
	printf(_n('%s link deleted.', '%s links deleted', $deleted), $deleted);
102
	echo '</p></div>';
103
	$_SERVER['REQUEST_URI'] = remove_query_arg(array('deleted'), $_SERVER['REQUEST_URI']);
104
}
105
?>
106
107
<form id="posts-filter" method="get">
108
109
<?php $wp_list_table->search_box( __( 'Search Links' ), 'link' ); ?>
110
111
<?php $wp_list_table->display(); ?>
112
113
<div id="ajax-response"></div>
114
</form>
115
116
</div>
117
118
<?php
119
include( ABSPATH . 'wp-admin/admin-footer.php' );
120