This project does not seem to handle request data directly as such no vulnerable execution paths were found.
include
, or for example
via PHP's auto-loading mechanism.
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
1 | <?php |
||
0 ignored issues
–
show
|
|||
2 | // GIJOE's Ticket Class (based on Marijuana's Oreteki XOOPS) |
||
3 | // nobunobu's suggestions are applied |
||
4 | |||
5 | if (!class_exists('XoopsGTicket')) { |
||
6 | /** |
||
7 | * Class XoopsGTicket |
||
8 | */ |
||
9 | class XoopsGTicket |
||
0 ignored issues
–
show
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.
You can fix this by adding a namespace to your class: namespace YourVendor;
class YourClass { }
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries. ![]() |
|||
10 | { |
||
11 | public $_errors = array(); |
||
12 | public $_latest_token = ''; |
||
13 | |||
14 | // render form as plain html |
||
15 | /** |
||
16 | * @param string $salt |
||
17 | * @param int $timeout |
||
18 | * @param string $area |
||
19 | * @return string |
||
20 | */ |
||
21 | public function getTicketHtml($salt = '', $timeout = 1800, $area = '') |
||
22 | { |
||
23 | return '<input type="hidden" name="XOOPS_G_TICKET" value="' . $this->issue($salt, $timeout, $area) . '" />'; |
||
24 | } |
||
25 | |||
26 | // returns an object of XoopsFormHidden including theh ticket |
||
27 | /** |
||
28 | * @param string $salt |
||
29 | * @param int $timeout |
||
30 | * @param string $area |
||
31 | * @return XoopsFormHidden |
||
32 | */ |
||
33 | public function getTicketXoopsForm($salt = '', $timeout = 1800, $area = '') |
||
34 | { |
||
35 | return new XoopsFormHidden('XOOPS_G_TICKET', $this->issue($salt, $timeout, $area)); |
||
36 | } |
||
37 | |||
38 | // add a ticket as Hidden Element into XoopsForm |
||
39 | /** |
||
40 | * @param $form |
||
41 | * @param string $salt |
||
42 | * @param int $timeout |
||
43 | * @param string $area |
||
44 | */ |
||
45 | public function addTicketXoopsFormElement(&$form, $salt = '', $timeout = 1800, $area = '') |
||
46 | { |
||
47 | $form->addElement(new XoopsFormHidden('XOOPS_G_TICKET', $this->issue($salt, $timeout, $area))); |
||
48 | } |
||
49 | |||
50 | // returns an array for xoops_confirm() ; |
||
0 ignored issues
–
show
Unused Code
Comprehensibility
introduced
by
36% of this comment could be valid code. Did you maybe forget this after debugging?
Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it. The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production. This check looks for comments that seem to be mostly valid code and reports them. ![]() |
|||
51 | /** |
||
52 | * @param string $salt |
||
53 | * @param int $timeout |
||
54 | * @param string $area |
||
55 | * @return array |
||
56 | */ |
||
57 | public function getTicketArray($salt = '', $timeout = 1800, $area = '') |
||
58 | { |
||
59 | return array('XOOPS_G_TICKET' => $this->issue($salt, $timeout, $area)); |
||
60 | } |
||
61 | |||
62 | // return GET parameter string. |
||
63 | /** |
||
64 | * @param string $salt |
||
65 | * @param bool $noamp |
||
66 | * @param int $timeout |
||
67 | * @param string $area |
||
68 | * @return string |
||
69 | */ |
||
70 | public function getTicketParamString($salt = '', $noamp = false, $timeout = 1800, $area = '') |
||
71 | { |
||
72 | return ($noamp ? '' : '&') . 'XOOPS_G_TICKET=' . $this->issue($salt, $timeout, $area); |
||
73 | } |
||
74 | |||
75 | // issue a ticket |
||
76 | /** |
||
77 | * @param string $salt |
||
78 | * @param int $timeout |
||
79 | * @param string $area |
||
80 | * @return string |
||
81 | */ |
||
82 | public function issue($salt = '', $timeout = 1800, $area = '') |
||
0 ignored issues
–
show
issue uses the super-global variable $_SERVER which is generally not recommended.
Instead of super-globals, we recommend to explicitly inject the dependencies of your class. This makes your code less dependent on global state and it becomes generally more testable: // Bad
class Router
{
public function generate($path)
{
return $_SERVER['HOST'].$path;
}
}
// Better
class Router
{
private $host;
public function __construct($host)
{
$this->host = $host;
}
public function generate($path)
{
return $this->host.$path;
}
}
class Controller
{
public function myAction(Request $request)
{
// Instead of
$page = isset($_GET['page']) ? intval($_GET['page']) : 1;
// Better (assuming you use the Symfony2 request)
$page = $request->query->get('page', 1);
}
}
![]() issue uses the super-global variable $_SESSION which is generally not recommended.
Instead of super-globals, we recommend to explicitly inject the dependencies of your class. This makes your code less dependent on global state and it becomes generally more testable: // Bad
class Router
{
public function generate($path)
{
return $_SERVER['HOST'].$path;
}
}
// Better
class Router
{
private $host;
public function __construct($host)
{
$this->host = $host;
}
public function generate($path)
{
return $this->host.$path;
}
}
class Controller
{
public function myAction(Request $request)
{
// Instead of
$page = isset($_GET['page']) ? intval($_GET['page']) : 1;
// Better (assuming you use the Symfony2 request)
$page = $request->query->get('page', 1);
}
}
![]() |
|||
83 | { |
||
84 | global $xoopsModule; |
||
0 ignored issues
–
show
Compatibility
Best Practice
introduced
by
Use of
global functionality is not recommended; it makes your code harder to test, and less reusable.
Instead of relying on 1. Pass all data via parametersfunction myFunction($a, $b) {
// Do something
}
2. Create a class that maintains your stateclass MyClass {
private $a;
private $b;
public function __construct($a, $b) {
$this->a = $a;
$this->b = $b;
}
public function myFunction() {
// Do something
}
}
![]() |
|||
85 | if ('' === $salt) { |
||
86 | $salt = '$2y$07$' . strtr(base64_encode(mcrypt_create_iv(16, MCRYPT_DEV_URANDOM)), '+', '.'); |
||
87 | } |
||
88 | // create a token |
||
89 | list($usec, $sec) = explode(' ', microtime()); |
||
90 | $appendix_salt = empty($_SERVER['PATH']) ? XOOPS_DB_NAME : $_SERVER['PATH']; |
||
91 | $token = crypt($salt . $usec . $appendix_salt . $sec, $salt); |
||
92 | $this->_latest_token = $token; |
||
93 | |||
94 | if (empty($_SESSION['XOOPS_G_STUBS'])) { |
||
95 | $_SESSION['XOOPS_G_STUBS'] = array(); |
||
96 | } |
||
97 | |||
98 | // limit max stubs 10 |
||
99 | if (count($_SESSION['XOOPS_G_STUBS']) > 10) { |
||
100 | $_SESSION['XOOPS_G_STUBS'] = array_slice($_SESSION['XOOPS_G_STUBS'], -10); |
||
101 | } |
||
102 | |||
103 | // record referer if browser send it |
||
104 | $referer = empty($_SERVER['HTTP_REFERER']) ? '' : $_SERVER['REQUEST_URI']; |
||
105 | |||
106 | // area as module's dirname |
||
107 | if (!$area && is_object(@$xoopsModule)) { |
||
108 | $area = $xoopsModule->getVar('dirname'); |
||
109 | } |
||
110 | |||
111 | // store stub |
||
112 | $_SESSION['XOOPS_G_STUBS'][] = array( |
||
113 | 'expire' => time() + $timeout, |
||
114 | 'referer' => $referer, |
||
115 | 'area' => $area, |
||
116 | 'token' => $token |
||
117 | ); |
||
118 | |||
119 | // paid md5ed token as a ticket |
||
120 | return md5($token . XOOPS_DB_PREFIX); |
||
121 | } |
||
122 | |||
123 | // check a ticket |
||
124 | /** |
||
125 | * @param bool $post |
||
126 | * @param string $area |
||
127 | * @return bool |
||
128 | */ |
||
129 | public function check($post = true, $area = '') |
||
0 ignored issues
–
show
check uses the super-global variable $_SESSION which is generally not recommended.
Instead of super-globals, we recommend to explicitly inject the dependencies of your class. This makes your code less dependent on global state and it becomes generally more testable: // Bad
class Router
{
public function generate($path)
{
return $_SERVER['HOST'].$path;
}
}
// Better
class Router
{
private $host;
public function __construct($host)
{
$this->host = $host;
}
public function generate($path)
{
return $this->host.$path;
}
}
class Controller
{
public function myAction(Request $request)
{
// Instead of
$page = isset($_GET['page']) ? intval($_GET['page']) : 1;
// Better (assuming you use the Symfony2 request)
$page = $request->query->get('page', 1);
}
}
![]() check uses the super-global variable $_POST which is generally not recommended.
Instead of super-globals, we recommend to explicitly inject the dependencies of your class. This makes your code less dependent on global state and it becomes generally more testable: // Bad
class Router
{
public function generate($path)
{
return $_SERVER['HOST'].$path;
}
}
// Better
class Router
{
private $host;
public function __construct($host)
{
$this->host = $host;
}
public function generate($path)
{
return $this->host.$path;
}
}
class Controller
{
public function myAction(Request $request)
{
// Instead of
$page = isset($_GET['page']) ? intval($_GET['page']) : 1;
// Better (assuming you use the Symfony2 request)
$page = $request->query->get('page', 1);
}
}
![]() check uses the super-global variable $_GET which is generally not recommended.
Instead of super-globals, we recommend to explicitly inject the dependencies of your class. This makes your code less dependent on global state and it becomes generally more testable: // Bad
class Router
{
public function generate($path)
{
return $_SERVER['HOST'].$path;
}
}
// Better
class Router
{
private $host;
public function __construct($host)
{
$this->host = $host;
}
public function generate($path)
{
return $this->host.$path;
}
}
class Controller
{
public function myAction(Request $request)
{
// Instead of
$page = isset($_GET['page']) ? intval($_GET['page']) : 1;
// Better (assuming you use the Symfony2 request)
$page = $request->query->get('page', 1);
}
}
![]() check uses the super-global variable $_SERVER which is generally not recommended.
Instead of super-globals, we recommend to explicitly inject the dependencies of your class. This makes your code less dependent on global state and it becomes generally more testable: // Bad
class Router
{
public function generate($path)
{
return $_SERVER['HOST'].$path;
}
}
// Better
class Router
{
private $host;
public function __construct($host)
{
$this->host = $host;
}
public function generate($path)
{
return $this->host.$path;
}
}
class Controller
{
public function myAction(Request $request)
{
// Instead of
$page = isset($_GET['page']) ? intval($_GET['page']) : 1;
// Better (assuming you use the Symfony2 request)
$page = $request->query->get('page', 1);
}
}
![]() |
|||
130 | { |
||
131 | global $xoopsModule; |
||
0 ignored issues
–
show
Compatibility
Best Practice
introduced
by
Use of
global functionality is not recommended; it makes your code harder to test, and less reusable.
Instead of relying on 1. Pass all data via parametersfunction myFunction($a, $b) {
// Do something
}
2. Create a class that maintains your stateclass MyClass {
private $a;
private $b;
public function __construct($a, $b) {
$this->a = $a;
$this->b = $b;
}
public function myFunction() {
// Do something
}
}
![]() |
|||
132 | |||
133 | $this->_errors = array(); |
||
134 | |||
135 | // CHECK: stubs are not stored in session |
||
136 | if (empty($_SESSION['XOOPS_G_STUBS']) || !is_array($_SESSION['XOOPS_G_STUBS'])) { |
||
137 | $this->clear(); |
||
138 | $this->_errors[] = 'Invalid Session'; |
||
139 | |||
140 | return false; |
||
141 | } |
||
142 | |||
143 | // get key&val of the ticket from a user's query |
||
144 | if ($post) { |
||
145 | $ticket = empty($_POST['XOOPS_G_TICKET']) ? '' : $_POST['XOOPS_G_TICKET']; |
||
146 | } else { |
||
147 | $ticket = empty($_GET['XOOPS_G_TICKET']) ? '' : $_GET['XOOPS_G_TICKET']; |
||
148 | } |
||
149 | |||
150 | // CHECK: no tickets found |
||
151 | if (empty($ticket)) { |
||
152 | $this->clear(); |
||
153 | $this->_errors[] = 'Irregular post found'; |
||
154 | |||
155 | return false; |
||
156 | } |
||
157 | |||
158 | // gargage collection & find a right stub |
||
159 | $stubs_tmp = $_SESSION['XOOPS_G_STUBS']; |
||
160 | $_SESSION['XOOPS_G_STUBS'] = array(); |
||
161 | foreach ($stubs_tmp as $stub) { |
||
162 | // default lifetime 30min |
||
163 | if ($stub['expire'] >= time()) { |
||
164 | if (md5($stub['token'] . XOOPS_DB_PREFIX) === $ticket) { |
||
165 | $found_stub = $stub; |
||
166 | } else { |
||
167 | // store the other valid stubs into session |
||
168 | $_SESSION['XOOPS_G_STUBS'][] = $stub; |
||
169 | } |
||
170 | } else { |
||
171 | if (md5($stub['token'] . XOOPS_DB_PREFIX) === $ticket) { |
||
172 | // not CSRF but Time-Out |
||
173 | $timeout_flag = true; |
||
174 | } |
||
175 | } |
||
176 | } |
||
177 | |||
178 | // CHECK: the right stub found or not |
||
179 | if (empty($found_stub)) { |
||
180 | $this->clear(); |
||
181 | if (empty($timeout_flag)) { |
||
182 | $this->_errors[] = 'Invalid Session'; |
||
183 | } else { |
||
184 | $this->_errors[] = 'Time out'; |
||
185 | } |
||
186 | |||
187 | return false; |
||
188 | } |
||
189 | |||
190 | // set area if necessary |
||
191 | // area as module's dirname |
||
192 | if (!$area && is_object(@$xoopsModule)) { |
||
193 | $area = $xoopsModule->getVar('dirname'); |
||
194 | } |
||
195 | |||
196 | // check area or referer |
||
197 | if (@$found_stub['area'] == $area) { |
||
198 | $area_check = true; |
||
199 | } |
||
200 | if (!empty($found_stub['referer']) && false !== strpos(@$_SERVER['HTTP_REFERER'], $found_stub['referer'])) { |
||
201 | $referer_check = true; |
||
202 | } |
||
203 | |||
204 | // if ( empty( $area_check ) || empty( $referer_check ) ) { // restrict |
||
0 ignored issues
–
show
Unused Code
Comprehensibility
introduced
by
52% of this comment could be valid code. Did you maybe forget this after debugging?
Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it. The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production. This check looks for comments that seem to be mostly valid code and reports them. ![]() |
|||
205 | if (empty($area_check) && empty($referer_check)) { // loose |
||
206 | $this->clear(); |
||
207 | $this->_errors[] = 'Invalid area or referer'; |
||
208 | |||
209 | return false; |
||
210 | } |
||
211 | |||
212 | // all green |
||
213 | return true; |
||
214 | } |
||
215 | |||
216 | // clear all stubs |
||
217 | public function clear() |
||
0 ignored issues
–
show
clear uses the super-global variable $_SESSION which is generally not recommended.
Instead of super-globals, we recommend to explicitly inject the dependencies of your class. This makes your code less dependent on global state and it becomes generally more testable: // Bad
class Router
{
public function generate($path)
{
return $_SERVER['HOST'].$path;
}
}
// Better
class Router
{
private $host;
public function __construct($host)
{
$this->host = $host;
}
public function generate($path)
{
return $this->host.$path;
}
}
class Controller
{
public function myAction(Request $request)
{
// Instead of
$page = isset($_GET['page']) ? intval($_GET['page']) : 1;
// Better (assuming you use the Symfony2 request)
$page = $request->query->get('page', 1);
}
}
![]() |
|||
218 | { |
||
219 | $_SESSION['XOOPS_G_STUBS'] = array(); |
||
220 | } |
||
221 | |||
222 | // Ticket Using |
||
223 | /** |
||
224 | * @return bool |
||
225 | */ |
||
226 | public function using() |
||
0 ignored issues
–
show
using uses the super-global variable $_SESSION which is generally not recommended.
Instead of super-globals, we recommend to explicitly inject the dependencies of your class. This makes your code less dependent on global state and it becomes generally more testable: // Bad
class Router
{
public function generate($path)
{
return $_SERVER['HOST'].$path;
}
}
// Better
class Router
{
private $host;
public function __construct($host)
{
$this->host = $host;
}
public function generate($path)
{
return $this->host.$path;
}
}
class Controller
{
public function myAction(Request $request)
{
// Instead of
$page = isset($_GET['page']) ? intval($_GET['page']) : 1;
// Better (assuming you use the Symfony2 request)
$page = $request->query->get('page', 1);
}
}
![]() |
|||
227 | { |
||
228 | if (!empty($_SESSION['XOOPS_G_STUBS'])) { |
||
229 | return true; |
||
230 | } else { |
||
231 | return false; |
||
232 | } |
||
233 | } |
||
234 | |||
235 | // return errors |
||
236 | /** |
||
237 | * @param bool $ashtml |
||
238 | * @return array|string |
||
239 | */ |
||
240 | public function getErrors($ashtml = true) |
||
241 | { |
||
242 | if ($ashtml) { |
||
243 | $ret = ''; |
||
244 | foreach ($this->_errors as $msg) { |
||
245 | $ret .= "$msg<br>\n"; |
||
246 | } |
||
247 | } else { |
||
248 | $ret = $this->_errors; |
||
249 | } |
||
250 | |||
251 | return $ret; |
||
252 | } |
||
253 | |||
254 | // end of class |
||
255 | } |
||
256 | |||
257 | // create a instance in global scope |
||
258 | $GLOBALS['xoopsGTicket'] = new XoopsGTicket(); |
||
259 | } |
||
260 | |||
261 | if (!function_exists('admin_refcheck')) { |
||
262 | |||
263 | //Admin Referer Check By Marijuana(Rev.011) |
||
264 | /** |
||
265 | * @param string $chkref |
||
266 | * @return bool |
||
267 | */ |
||
268 | function admin_refcheck($chkref = '') |
||
0 ignored issues
–
show
admin_refcheck uses the super-global variable $_SERVER which is generally not recommended.
Instead of super-globals, we recommend to explicitly inject the dependencies of your class. This makes your code less dependent on global state and it becomes generally more testable: // Bad
class Router
{
public function generate($path)
{
return $_SERVER['HOST'].$path;
}
}
// Better
class Router
{
private $host;
public function __construct($host)
{
$this->host = $host;
}
public function generate($path)
{
return $this->host.$path;
}
}
class Controller
{
public function myAction(Request $request)
{
// Instead of
$page = isset($_GET['page']) ? intval($_GET['page']) : 1;
// Better (assuming you use the Symfony2 request)
$page = $request->query->get('page', 1);
}
}
![]() |
|||
269 | { |
||
270 | if (empty($_SERVER['HTTP_REFERER'])) { |
||
271 | return true; |
||
272 | } else { |
||
273 | $ref = $_SERVER['HTTP_REFERER']; |
||
274 | } |
||
275 | $cr = XOOPS_URL; |
||
276 | if ($chkref != '') { |
||
277 | $cr .= $chkref; |
||
278 | } |
||
279 | if (strpos($ref, $cr) !== 0) { |
||
280 | return false; |
||
281 | } |
||
282 | |||
283 | return true; |
||
284 | } |
||
285 | } |
||
286 |
The PSR-1: Basic Coding Standard recommends that a file should either introduce new symbols, that is classes, functions, constants or similar, or have side effects. Side effects are anything that executes logic, like for example printing output, changing ini settings or writing to a file.
The idea behind this recommendation is that merely auto-loading a class should not change the state of an application. It also promotes a cleaner style of programming and makes your code less prone to errors, because the logic is not spread out all over the place.
To learn more about the PSR-1, please see the PHP-FIG site on the PSR-1.