GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Issues (1410)

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.

protected/components/url/FUrlRule.php (1 issue)

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
 * @author Sergey Glagolev <[email protected]>
4
 * @link https://github.com/shogodev/argilla/
5
 * @copyright Copyright &copy; 2003-2013 Shogo
6
 * @license http://argilla.ru/LICENSE
7
 * @package frontend.components.url
8
 *
9
 * <pre>
10
 * 'productType' => array('product/type', 'pattern' => 'type-<type:\w+>/<page:\d+>', 'defaultParams' => array('page' => 1), 'canonicalParams' => array('page'), 'shouldRemember' => false),
11
 * </pre>
12
 */
13
class FUrlRule extends CUrlRule
14
{
15
  /**
16
   * @var array Параметры, которые будут оставлены при построении канонической ссылки
17
   */
18
  public $canonicalParams = array();
19
20
  /**
21
   * @var bool Запоминаем или нет маршрут в сессию, чтобы вернуться на страницу после авторизации пользователя
22
   */
23
  public $shouldRemember = true;
24
25
  /**
26
   * @var bool Строим ли ссылку с параметрами по-умолчанию или без них
27
   */
28
  public $createWithDefault = false;
29
30 6
  public function __construct($route, $pattern)
31
  {
32 6
    if( is_array($route) )
33 6
      foreach(array('canonicalParams', 'shouldRemember', 'createWithDefault') as $name)
34 6
        if( isset($route[$name]) )
35 6
          $this->$name = $route[$name];
36
37 6
    parent::__construct($route, $pattern);
38 6
  }
39
40
  /**
41
   * @param FUrlManager $manager
42
   * @param CHttpRequest $request
43
   * @param string $pathInfo
44
   * @param string $rawPathInfo
45
   *
46
   * @return mixed
47
   */
48 2
  public function parseUrl($manager, $request, $pathInfo, $rawPathInfo)
49
  {
50 2
    $manager->defaultParams = array();
51
52 2
    if( ($pathInfo = $this->preparePathInfo($manager, $request, $pathInfo, $rawPathInfo)) === false )
53 2
    {
54
      return false;
55
    }
56
57 2 View Code Duplication
    if( !empty($this->defaultParams) && !preg_match($this->pattern, $pathInfo, $matches)  )
0 ignored issues
show
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
58 2
    {
59 2
      $pathInfo .= implode('/', $this->defaultParams).'/';
60 2
      $manager->defaultParams = $this->defaultParams;
61 2
    }
62
63 2
    if( preg_match($this->pattern, $pathInfo, $matches) )
64 2
    {
65 2
      $manager->rule = $this;
66 2
      return $this->getRoute($manager, $pathInfo, $matches);
67
    }
68
    else
69 1
      return false;
70
  }
71
72 15
  public function createUrl($manager, $route, $params, $ampersand)
73
  {
74 15
    if( $this->parsingOnly )
75 15
      return false;
76
77 15
    if( $manager->caseSensitive && $this->caseSensitive === null || $this->caseSensitive )
78 15
      $case = '';
79
    else
80
      $case = 'i';
81
82 15
    $tr = array();
83 15
    if( $route !== $this->route )
84 15
    {
85 14
      if( $this->routePattern !== null && preg_match($this->routePattern.$case, $route, $matches) )
86 14
      {
87
        foreach($this->references as $key => $name)
88
          $tr[$name] = $matches[$key];
89
      }
90
      else
91 14
        return false;
92
    }
93
94
    // Если в параметрах построения ссылки не заданы какие-то параметры по-умолчанию,
95
    // то добавляем пустое значение в массив параметров. Это позволяет пройти проверку,
96
    // но в ссылку они добавлены не будут
97 15
    foreach($this->defaultParams as $key => $value)
98 9
      if( !isset($params[$key]) )
99 9
        $params[$key] = $this->createWithDefault ? $value : '';
100
101 15
    foreach($this->params as $key => $value)
102 12
      if( !isset($params[$key]) )
103 12
        return false;
104
105 13
    if( $manager->matchValue && $this->matchValue === null || $this->matchValue )
106 13
    {
107
      foreach($this->params as $key => $value)
108
      {
109
        if( !preg_match('/\A'.$value.'\z/u'.$case, $params[$key]) )
110
          return false;
111
      }
112
    }
113
114 13
    foreach($this->params as $key => $value)
115
    {
116 10
      $tr["<$key>"] = preg_match('/[a-z\/-]/', $params[$key]) ? $params[$key] : urlencode($params[$key]);
117 10
      unset($params[$key]);
118 13
    }
119
120 13
    $suffix = $this->urlSuffix === null ? $manager->urlSuffix : $this->urlSuffix;
121 13
    $url = strtr($this->template, $tr);
122
123 13
    if( empty($suffix) && !empty($url) )
124 13
      $url = trim($url, '/').'/';
125
126 13
    if( $this->hasHostInfo )
127 13
    {
128
      $hostInfo = Yii::app()->getRequest()->getHostInfo();
129
      if( stripos($url, $hostInfo) === 0 )
130
        $url = substr($url, strlen($hostInfo));
131
    }
132
133 13
    if( empty($params) )
134 13
      return $url !== '' ? $url.$suffix : $url;
135
136 8
    if( $this->append )
137 8
      $url .= '/'.$manager->createPathInfo($params, '/', '/').$suffix;
138
    else
139
    {
140 8
      if( $url !== '' )
141 8
        $url .= $suffix;
142 8
      $url .= '?'.$manager->createPathInfo($params, '=', $ampersand);
143
    }
144
145 8
    return $url;
146
  }
147
148
  /**
149
   * @param FUrlManager $manager
150
   * @param CHttpRequest $request
151
   * @param string $pathInfo
152
   * @param string $rawPathInfo
153
   *
154
   * @return mixed
155
   */
156 3
  protected function preparePathInfo($manager, $request, $pathInfo, $rawPathInfo)
157
  {
158 3
    if( $this->verb !== null && !in_array($request->getRequestType(), $this->verb, true) )
159 3
      return false;
160
161 3
    if( !($manager->caseSensitive && $this->caseSensitive === null || $this->caseSensitive) )
162 3
      $this->pattern .= 'i';
163
164 3
    if( $this->urlSuffix !== null )
165 3
      $pathInfo = $manager->removeUrlSuffix($rawPathInfo, $this->urlSuffix);
166
167
    // URL suffix required, but not found in the requested URL
168 3
    if( $manager->useStrictParsing && $pathInfo === $rawPathInfo )
169 3
    {
170 3
      $urlSuffix = $this->urlSuffix === null ? $manager->urlSuffix : $this->urlSuffix;
171 3
      if( $urlSuffix != '' && $urlSuffix !== '/' )
172 3
        return false;
173 3
    }
174
175 3
    if( $this->hasHostInfo )
176 3
      $pathInfo = strtolower($request->getHostInfo()).rtrim('/'.$pathInfo, '/');
177
178 3
    $pathInfo .= '/';
179
180 3
    return $pathInfo;
181
  }
182
183
  /**
184
   * @param FUrlManager $manager
185
   * @param string $pathInfo
186
   * @param array $matches
187
   *
188
   * @return string
189
   */
190 3
  protected function getRoute($manager, $pathInfo, $matches)
191
  {
192 3
    foreach($this->defaultParams as $name => $value)
193
    {
194 2
      if( !isset($_GET[$name]) )
195 2
        $_REQUEST[$name] = $_GET[$name] = $value;
196 3
    }
197
198 3
    $tr = array();
199 3
    foreach($matches as $key => $value)
200
    {
201 3
      if( isset($this->references[$key]) )
202 3
        $tr[$this->references[$key]] = $value;
203 3
      elseif( isset($this->params[$key]) )
204 3
        $_REQUEST[$key] = $_GET[$key] = $value;
205 3
    }
206
207 3
    if( $pathInfo !== $matches[0] ) // there're additional GET params
208 3
      $manager->parsePathInfo(ltrim(substr($pathInfo, strlen($matches[0])), '/'));
209 3
    if( $this->routePattern !== null )
210 3
      return strtr($this->route, $tr);
211
    else
212 3
      return $this->route;
213
  }
214
}