Issues (2687)

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/Eccube/Twig/Extension/EccubeExtension.php (6 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 EC-CUBE
4
 *
5
 * Copyright(c) 2000-2015 LOCKON CO.,LTD. All Rights Reserved.
6
 *
7
 * http://www.lockon.co.jp/
8
 *
9
 * This program is free software; you can redistribute it and/or
10
 * modify it under the terms of the GNU General Public License
11
 * as published by the Free Software Foundation; either version 2
12
 * of the License, or (at your option) any later version.
13
 *
14
 * This program is distributed in the hope that it will be useful,
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
 * GNU General Public License for more details.
18
 *
19
 * You should have received a copy of the GNU General Public License
20
 * along with this program; if not, write to the Free Software
21
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
 */
23
24
25
namespace Eccube\Twig\Extension;
26
27
use Eccube\Common\Constant;
28
use Eccube\Util\Str;
29
use Silex\Application;
30
use Symfony\Component\Routing\Exception\RouteNotFoundException;
31
32
class EccubeExtension extends \Twig_Extension
33
{
34
    private $app;
35
36 585
    public function __construct(Application $app)
37
    {
38 585
        $this->app = $app;
39
    }
40
41
    /**
42
     * Returns a list of functions to add to the existing list.
43
     *
44
     * @return array An array of functions
45
     */
46 99
    public function getFunctions()
47
    {
48 99
        $RoutingExtension = $this->app['twig']->getExtension('routing');
49
50
        return array(
51 99
            new \Twig_SimpleFunction('is_object', array($this, 'isObject')),
52 99
            new \Twig_SimpleFunction('calc_inc_tax', array($this, 'getCalcIncTax')),
53 99
            new \Twig_SimpleFunction('active_menus', array($this, 'getActiveMenus')),
54 99
            new \Twig_SimpleFunction('csrf_token_for_anchor', array($this, 'getCsrfTokenForAnchor'), array('is_safe' => array('all'))),
55
56
            // Override: \Symfony\Bridge\Twig\Extension\RoutingExtension::url
57 99
            new \Twig_SimpleFunction('url', array($this, 'getUrl'), array('is_safe_callback' => array($RoutingExtension, 'isUrlGenerationSafe'))),
58
            // Override: \Symfony\Bridge\Twig\Extension\RoutingExtension::path
59 99
            new \Twig_SimpleFunction('path', array($this, 'getPath'), array('is_safe_callback' => array($RoutingExtension, 'isUrlGenerationSafe'))),
60
        );
61
    }
62
63
    /**
64
     * Returns a list of filters.
65
     *
66
     * @return array
67
     */
68 99
    public function getFilters()
69
    {
70
        return array(
71 99
            new \Twig_SimpleFilter('no_image_product', array($this, 'getNoImageProduct')),
72 99
            new \Twig_SimpleFilter('date_format', array($this, 'getDateFormatFilter')),
73 99
            new \Twig_SimpleFilter('price', array($this, 'getPriceFilter')),
74 99
            new \Twig_SimpleFilter('ellipsis', array($this, 'getEllipsis')),
75 99
            new \Twig_SimpleFilter('time_ago', array($this, 'getTimeAgo')),
76
        );
77
    }
78
79
    /**
80
     * Name of this extension
81
     *
82
     * @return string
83
     */
84 585
    public function getName()
85
    {
86 585
        return 'eccube';
87
    }
88
89
    /**
90
     * Name of this extension
91
     *
92
     * @return string
93
     */
94 33
    public function getCalcIncTax($price, $tax_rate, $tax_rule)
95
    {
96 33
        return $price + $this->app['eccube.service.tax_rule']->calcTax($price, $tax_rate, $tax_rule);
97
    }
98
99
    /**
100
     * Name of this extension
101
     *
102
     * @param array $menus
103
     * @return array
104
     */
105 155
    public function getActiveMenus($menus = array())
106
    {
107 155
        $count = count($menus);
108 155
        for ($i = $count; $i <= 2; $i++) {
109 98
            $menus[] = '';
110
        }
111
112 155
        return $menus;
113
    }
114
115
    /**
116
     * Name of this extension
117
     *
118
     * @return string
119
     */
120 82
    public function getCsrfTokenForAnchor()
121
    {
122 82
        $token = $this->app['form.csrf_provider']->getToken(Constant::TOKEN_NAME)->getValue();
123 82
        return 'token-for-anchor=\'' . $token . '\'';
124
    }
125
126
    /**
127
     * return No Image filename
128
     *
129
     * @return string
130
     */
131 130
    public function getNoImageProduct($image)
132
    {
133 130
        return empty($image) ? 'no_image_product.jpg' : $image;
134
    }
135
136
    /**
137
     * Name of this extension
138
     *
139
     * @return string
140
     */
141 24
    public function getDateFormatFilter($date, $value = '', $format = 'Y/m/d')
142
    {
143 24
        if (is_null($date)) {
144 20
            return $value;
145
        } else {
146 4
            return $date->format($format);
147
        }
148
    }
149
150
    /**
151
     * Name of this extension
152
     *
153
     * @return string
154
     */
155 208
    public function getPriceFilter($number, $decimals = 0, $decPoint = '.', $thousandsSep = ',')
156
    {
157 208
        $price = number_format($number, $decimals, $decPoint, $thousandsSep);
158 208
        $price = '¥ ' . $price;
159
160 208
        return $price;
161
    }
162
163
    /**
164
     * Name of this extension
165
     *
166
     * @return string
167
     */
168
    public function getEllipsis($value, $length = 100, $end = '...')
169
    {
170
        return Str::ellipsis($value, $length, $end);
171
    }
172
173
    /**
174
     * Name of this extension
175
     *
176
     * @return string
177
     */
178
    public function getTimeAgo($date)
179
    {
180
        return Str::timeAgo($date);
181
    }
182
183
    /**
184
     * bind から URL へ変換します。
185
     * \Symfony\Bridge\Twig\Extension\RoutingExtension::getPath の処理を拡張し、
186
     * RouteNotFoundException 発生時に E_USER_WARNING を発生させ、
187
     * 文字列 "/404?bind={bind}" を返します。
188
     *
189
     * @param string $name
0 ignored issues
show
Expected 2 spaces after parameter type; 1 found
Loading history...
190
     * @param array $parameters
0 ignored issues
show
Expected 3 spaces after parameter type; 1 found
Loading history...
191
     * @param boolean $relative
192
     * @return string URL
193
     */
194 292 View Code Duplication
    public function getPath($name, $parameters = array(), $relative = false)
0 ignored issues
show
This method seems to be duplicated in 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...
195
    {
196 292
        $RoutingExtension = $this->app['twig']->getExtension('routing');
197
        try {
198 292
            return $RoutingExtension->getPath($name, $parameters, $relative);
199
        } catch (RouteNotFoundException $e) {
200
            trigger_error($e->getMessage(), E_USER_WARNING);
201
        }
202
203
        return $RoutingExtension->getPath('homepage').'404?bind='.$name;
204
    }
205
206
    /**
207
     * bind から URL へ変換します。
208
     * \Symfony\Bridge\Twig\Extension\RoutingExtension::getUrl の処理を拡張し、
209
     * RouteNotFoundException 発生時に E_USER_WARNING を発生させ、
210
     * 文字列 "/404?bind={bind}" を返します。
211
     *
212
     * @param string $name
0 ignored issues
show
Expected 2 spaces after parameter type; 1 found
Loading history...
213
     * @param array $parameters
0 ignored issues
show
Expected 3 spaces after parameter type; 1 found
Loading history...
214
     * @param boolean $schemeRelative
215
     * @return string URL
216
     */
217 347 View Code Duplication
    public function getUrl($name, $parameters = array(), $schemeRelative = false)
0 ignored issues
show
This method seems to be duplicated in 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...
218
    {
219 347
        $RoutingExtension = $this->app['twig']->getExtension('routing');
220
        try {
221 347
            return $RoutingExtension->getUrl($name, $parameters, $schemeRelative);
222
        } catch (RouteNotFoundException $e) {
223
            trigger_error($e->getMessage(), E_USER_WARNING);
224
        }
225
226
        return $RoutingExtension->getUrl('homepage').'404?bind='.$name;
227
    }
228
229
    /**
230
     * Check if the value is object
231
     *
232
     * @param object $value
233
     * @return bool
234
     */
235 2
    public function isObject($value)
236
    {
237 2
        return is_object($value);
238
    }
239
}
240