Issues (14)

Security Analysis    no request data  

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.

shortcodes/subway-shortcodes.php (2 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
 * This file is part of the Subway WordPress Plugin Package.
4
 *
5
 * (c) Joseph Gabito <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 * 
10
 * PHP Version 5.4
11
 * 
12
 * @category Subway\Shortcodes
13
 * @package  Subway\Shortcodes
14
 * @author   Joseph G. <[email protected]>
15
 * @license  http://opensource.org/licenses/gpl-license.php GNU Public License
16
 * @version  GIT:github.com/codehaiku/subway
17
 * @link     github.com/codehaiku/subway The Plugin Repository
18
 */
19
20
namespace Subway;
21
22
if (! defined('ABSPATH') ) {
23
    return;
24
}
25
26
/**
27
 * Registers Plugin Shortcodes
28
 *
29
 * @category Subway\Shortcodes
30
 * @package  Subway
31
 * @author   Joseph G. <[email protected]>
32
 * @license  http://opensource.org/licenses/gpl-license.php GNU Public License
33
 * @link     github.com/codehaiku/subway The Plugin Repository
34
 * @since    1.0  
35
 */
36
final class Shortcodes
37
{
38
39
    /**
40
     * Class Constructor.
41
     *
42
     * @return void
0 ignored issues
show
Comprehensibility Best Practice introduced by
Adding a @return annotation to constructors is generally not recommended as a constructor does not have a meaningful return value.

Adding a @return annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.

Please refer to the PHP core documentation on constructors.

Loading history...
43
     */
44
    private function __construct() 
45
    {
46
        
47
        add_action('init', array( $this, 'register'));
48
        
49
        return $this;
0 ignored issues
show
Constructors do not have meaningful return values, anything that is returned from here is discarded. Are you sure this is correct?
Loading history...
50
51
    }
52
53
    /**
54
     * Instantiate our class.
55
     * 
56
     * @return mixed The instance of this class.
57
     */
58
    public static function instance() 
59
    {
60
        
61
        static $instance = null;
62
63
        if (null === $instance ) {
64
65
            $instance = new Shortcodes();
66
67
        }
68
69
        return $instance;
70
71
    }
72
73
    /**
74
     * Instantiate our class.
75
     * 
76
     * @return void
77
     */
78
    public function register() 
79
    {
80
81
        add_shortcode('subway_login', array( $this, 'loginForm' ));
82
83
        add_action('login_form_middle', array( $this, 'loginFormAction' ), 10, 2);
84
85
        add_action('login_form_middle', array( $this, 'lostPasswordLink' ), 10, 2);
86
87
        return;
88
89
    }
90
91
    /**
92
     * Displays the login form
93
     * 
94
     * @return void
95
     */
96
    public function loginForm( $atts )
97
    {
98
        $atts = shortcode_atts( array(
99
            'echo'           => true,
100
            'form_id'        => 'loginform',
101
            'label_username' => __( 'Username', 'subway' ),
102
            'label_password' => __( 'Password', 'subway' ),
103
            'label_remember' => __( 'Remember Me', 'subway' ),
104
            'label_log_in'   => __( 'Log In', 'subway' ),
105
            'id_username'    => 'user_login',
106
            'id_password'    => 'user_pass',
107
            'id_remember'    => 'rememberme',
108
            'id_submit'      => 'wp-submit',
109
            'remember'       => true,
110
            'value_username' => '',
111
            'value_remember' => false,
112
            'redirect'       => home_url(),
113
        ), $atts );
114
115
        return $this->renderTemplate($atts, 'login-form.php');
116
    }
117
118
    /**
119
     * Include the specific plugin file if there is no template file.
120
     * 
121
     * @param mixed  $atts The shortcode attribute.
122
     * @param string $file The shortcode template file.
123
     * 
124
     * @return string The html template content.
125
     */
126
    protected function renderTemplate( $atts, $file = '' ) 
127
    {
128
129
        ob_start();
130
131
        if (empty($file) ) {
132
            
133
            return;
134
135
        }
136
137
        $template = SUBWAY_DIR_PATH . 'templates/'.$file;
138
139
        if (file_exists($template) ) {
140
141
            $theme_template = locate_template(array('gears/shortcodes/'.$file ));
142
143
            if ($theme_template) {
144
145
                   $template = $theme_template;
146
147
            }
148
149
            include $template;
150
151
        } else {
152
153
            echo sprintf(
154
                esc_html_e(
155
                    'Subway Error: Unable to find template file in: %1s', 'subway'
156
                ), 
157
                $template
158
            );
159
160
        }
161
162
        return ob_get_clean();
163
    }
164
165
    /**
166
     * The action for our login form.
167
     * 
168
     * @param string $__content The current filtered contents.
169
     * 
170
     * @return string            The content of our login form action.
171
     */
172
    public function loginFormAction( $__content ) 
173
    {
174
175
        ob_start();
176
        
177
        do_action('login_form');
178
        
179
        return $__content . ob_get_clean();
180
181
    }
182
183
     /**
184
     * The action for our 'lost password' link.
185
     * 
186
     * @param string $content The current filtered contents.
187
     * 
188
     * @return string          The content of our lost password link.
189
     */
190
    public function lostPasswordLink( $content ) 
191
    {
192
        
193
        return $content . $this->renderTemplate(
194
            array(), 
195
            'login-form-lost-password.php'
196
        );
197
198
    }
199
200
}
201
202
$subway_shortcode = Shortcodes::instance();
203