Issues (251)

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.

Tools/Console/Command/GenerateProxiesCommand.php (1 issue)

Labels
Severity

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 Doctrine\ODM\CouchDB\Tools\Console\Command;
4
5
use Symfony\Component\Console\Input\InputArgument,
6
    Symfony\Component\Console\Input\InputOption,
7
    Symfony\Component\Console,
8
    Doctrine\ODM\CouchDB\Tools\Console\MetadataFilter;
9
10
/**
11
 * Command to (re)generate the proxy classes used by doctrine.
12
 *
13
 * @since   1.0
14
 * @author  Benjamin Eberlei <[email protected]>
15
 * @author  Guilherme Blanco <[email protected]>
16
 * @author  Jonathan Wage <[email protected]>
17
 * @author  Roman Borschel <[email protected]>
18
 */
19
class GenerateProxiesCommand extends Console\Command\Command
20
{
21
    /**
22
     * @see Console\Command\Command
23
     */
24
    protected function configure()
25
    {
26
        $this->setName('couchdb:odm:generate-proxies')
27
             ->setDescription('Generates proxy classes for document classes.')
28
             ->setDefinition(array(
29
                 new InputOption(
30
                     'filter', 'f', InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY,
31
                     'A string pattern used to match documents that should be processed.'
32
                 ),
33
                 new InputArgument(
34
                     'dest-path', InputArgument::OPTIONAL,
35
                     'The path to generate your proxy classes. If none is provided, it will attempt to grab from configuration.'
36
                 ),
37
             ));
38
    }
39
40
    /**
41
     * @see Console\Command\Command
42
     */
43
    protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output)
44
    {
45
        $dm = $this->getHelper('couchdb')->getDocumentManager();
0 ignored issues
show
The method getDocumentManager() does not seem to exist on object<Symfony\Component...Helper\HelperInterface>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
46
        
47
        $metadatas = $dm->getMetadataFactory()->getAllMetadata();
48
        $metadatas = MetadataFilter::filter($metadatas, $input->getOption('filter'));
49
50
        // Process destination directory
51
        if (($destPath = $input->getArgument('dest-path')) === null) {
52
            $destPath = $dm->getConfiguration()->getProxyDir();
53
        }
54
55
        if ( ! is_dir($destPath)) {
56
            mkdir($destPath, 0777, true);
57
        }
58
59
        $destPath = realpath($destPath);
60
61
        if ( ! file_exists($destPath)) {
62
            throw new \InvalidArgumentException(
63
                sprintf("Proxies destination directory '<info>%s</info>' does not exist.", $destPath)
64
            );
65
        } elseif ( ! is_writable($destPath)) {
66
            throw new \InvalidArgumentException(
67
                sprintf("Proxies destination directory '<info>%s</info>' does not have write permissions.", $destPath)
68
            );
69
        }
70
71
        if ( ! count($metadatas)) {
72
            $output->write('No Metadata Classes to process.' . PHP_EOL);
73
            return;
74
        }
75
        
76
        foreach ($metadatas as $metadata) {
77
            $output->write(sprintf('Processing document "<info>%s</info>"', $metadata->name) . PHP_EOL);
78
        }
79
80
        // Acutally generate the Proxies
81
        $dm->getProxyFactory()->generateProxyClasses($metadatas, $destPath);
82
83
        $output->write(PHP_EOL . sprintf('Proxy classes generated to "<info>%s</INFO>"', $destPath) . PHP_EOL);
84
    }
85
}
86