Issues (461)

Branch: master

Security Analysis    not enabled

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

  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.
  Regex Injection
Regex Injection enables an attacker to execute arbitrary code in your PHP process.
  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.
  Response Splitting
Response Splitting can be used to send arbitrary responses.
  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.
  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.
  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.
  Code Injection
Code Injection enables an attacker to execute arbitrary code on the server.
  Variable Injection
Variable Injection enables an attacker to overwrite program variables with custom data, and can lead to further vulnerabilities.
  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.
  Other Vulnerability
This category comprises other attack vectors such as manipulating the PHP runtime, loading custom extensions, freezing the runtime, or similar.
  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.
  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.
  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.
  Header Injection
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.

footer.php (1 issue)

1
<?php
2
/**
3
 * The template for displaying the footer.
4
 *
5
 * Contains the closing of the #content div and all content after
6
 *
7
 * @package lsx
8
 */
9
10
?>
11
12
			</div><!-- .content -->
13
		</div><!-- .wrap -->
14
15
		<?php lsx_footer_before(); ?>
16
17
		<footer id="colophon" class="content-info" role="contentinfo">
18
			<div class="container">
19
				<div class="row">
20
					<div class="col-sm-12">
21
						<?php lsx_footer_top(); ?>
22
23
						<p class="credit <?php if ( has_nav_menu( 'social' ) || has_nav_menu( 'footer' ) ) echo 'credit-float'; ?>">
0 ignored issues
show
Coding Style Best Practice introduced by
It is generally a best practice to always use braces with control structures.

Adding braces to control structures avoids accidental mistakes as your code changes:

// Without braces (not recommended)
if (true)
    doSomething();

// Recommended
if (true) {
    doSomething();
}
Loading history...
24
							<?php
25
								printf(
26
									/* Translators: 1: current year, 2: blog name */
27
									esc_html__( '&#169; %1$s %2$s All Rights Reserved', 'lsx' ),
28
									esc_html( date_i18n( 'Y' ) ),
29
									esc_html( get_bloginfo( 'name' ) )
30
								);
31
								?>
32
33
							<?php if ( apply_filters( 'lsx_credit_link', true ) ) : ?>
34
								<?php
35
									printf(
36
										/* Translators: 1: theme name, 2: author name and link */
37
										esc_html__( ' | %1$s is a WordPress theme developed by %2$s.', 'lsx' ),
38
										'LSX',
39
										'<a href="https://www.lsdev.biz/" rel="nofollow noreferrer noopener" title="LightSpeed WordPress Development - Unlocking the full value of your business, online" rel="author nofollow noopener noreferrer" >LightSpeed</a>'
40
									);
41
								?>
42
							<?php endif; ?>
43
						</p>
44
45
						<?php if ( has_nav_menu( 'social' ) ) : ?>
46
							<nav id="social-navigation" class="social-navigation">
47
								<?php
48
									wp_nav_menu(
49
										array(
50
											'theme_location' => 'social',
51
											'depth' => 1,
52
										)
53
									);
54
								?>
55
							</nav><!-- .social-navigation -->
56
						<?php endif; ?>
57
58
						<?php if ( has_nav_menu( 'footer' ) ) : ?>
59
							<nav id="footer-navigation" class="footer-navigation">
60
								<?php
61
									wp_nav_menu(
62
										array(
63
											'theme_location' => 'footer',
64
											'depth' => 1,
65
										)
66
									);
67
								?>
68
							</nav><!-- .footer-navigation -->
69
						<?php endif; ?>
70
71
						<?php lsx_footer_bottom(); ?>
72
					</div>
73
				</div>
74
			</div>
75
		</footer>
76
77
		<?php lsx_footer_after(); ?>
78
		<?php lsx_body_bottom(); ?>
79
		<?php wp_footer(); ?>
80
	</body>
81
</html>
82