Issues (75)

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.

DependencyInjection/Configuration.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
namespace Jns\Bundle\XhprofBundle\DependencyInjection;
4
5
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
6
use Symfony\Component\Config\Definition\ConfigurationInterface;
7
use Symfony\Component\Config\Definition\NodeInterface;
8
9
/**
10
 * This class contains the configuration information for the bundle
11
 *
12
 * This information is solely responsible for how the different configuration
13
 * sections are normalized, and merged.
14
 *
15
 * @author Alex Kleissner <[email protected]>
16
 */
17
class Configuration implements ConfigurationInterface
18
{
19
    /**
20
     * Generates the configuration tree builder.
21
     *
22
     * @return \Symfony\Component\Config\Definition\Builder\TreeBuilder The tree builder
23
     */
24
    public function getConfigTreeBuilder()
25
    {
26
        $treeBuilder = new TreeBuilder();
27
        $rootNode = $treeBuilder->root('jns_xhprof');
28
29
        $rootNode
30
            ->children()
31
            ->scalarNode('location_web')->defaultValue('http://xhprof')->end()
32
            ->scalarNode('manager_registry')->defaultValue('doctrine')->end()
33
            ->scalarNode('entity_manager')->defaultValue('default')->end()
34
            ->scalarNode('entity_class')->defaultValue(null)->end()
35
            ->scalarNode('enable_xhgui')->defaultFalse()->end()
36
            ->arrayNode('exclude_patterns')->prototype('scalar')->end()->end()
37
            ->scalarNode('sample_size')->defaultValue(1)->end()
38
            ->scalarNode('enabled')->defaultFalse()->end()
39
            ->scalarNode('require_extension_exists')->defaultTrue()->end()
40
            ->scalarNode('skip_builtin_functions')->defaultFalse()->end()
41
            ->scalarNode('request_query_argument')->defaultFalse()->end()
42
            ->scalarNode('response_header')->defaultValue('X-Xhprof-Url')->end()
43
            ->enumNode('command')
44
            ->values(array('on', 'option', 'off'))
45
            ->defaultValue('option')
46
            ->info('on: Always profile, off: Never profile, option: only profile if option specified in command_option_name is given.')
47
            ->end()
48
            ->scalarNode('command_option_name')
49
            ->defaultValue('xhprof')
50
            ->info('If "command" is set to "option", this is the name of the additional option that all commands get.')
51
            ->end()
52
            ->arrayNode('command_exclude_patterns')
53
            ->prototype('scalar')->end()
54
            ->beforeNormalization()
55
            ->ifTrue(function($v) { return $v === null; })
56
            ->then(function($v) { return array(); })
0 ignored issues
show
The parameter $v is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
57
            ->end()
58
            ->info('List of regular expressions to match commands that are not profiled.')
59
            ->end()
60
            ->end();
61
62
        return $treeBuilder;
63
    }
64
}
65