Issues (1039)

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/Entity/TradingCard.php (2 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
namespace PlaygroundGame\Entity;
3
4
use Doctrine\Common\Collections\ArrayCollection;
5
use Doctrine\ORM\Mapping as ORM;
6
use Doctrine\ORM\Mapping\HasLifecycleCallbacks;
7
use Doctrine\ORM\Mapping\PrePersist;
8
use Doctrine\ORM\Mapping\PreUpdate;
9
10
use PlaygroundGame\Entity\Game;
11
12
use Zend\InputFilter\InputFilter;
13
use Zend\InputFilter\InputFilterAwareInterface;
14
use Zend\InputFilter\InputFilterInterface;
15
16
/**
17
 * @ORM\Entity @HasLifecycleCallbacks
18
 * @ORM\Table(name="game_tradingcard")
19
 */
20
21 View Code Duplication
class TradingCard extends Game implements InputFilterAwareInterface
0 ignored issues
show
This class 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...
22
{
23
    const CLASSTYPE = 'tradingcard';
24
25
    /**
26
     * the card models associated with the game
27
     * @ORM\OneToMany(targetEntity="TradingCardModel", mappedBy="game")
28
     */
29
    protected $models;
30
31
    /**
32
     * The number of cards in a booster
33
     * @ORM\Column(name="booster_card_number", type="integer", nullable=true)
34
     */
35
    protected $boosterCardNumber;
36
37
    /**
38
     * The number of boosters to deliver to user for each entry
39
     * @ORM\Column(name="booster_draw_quantity", type="integer", nullable=true)
40
     */
41
    protected $boosterDrawQuantity;
42
43
    public function __construct()
44
    {
45
        parent::__construct();
46
        $this->setClassType(self::CLASSTYPE);
47
        $this->models = new ArrayCollection();
48
    }
49
50
    /**
51
     * Gets the the card models associated with the game.
52
     *
53
     * @return mixed
54
     */
55
    public function getModels()
56
    {
57
        return $this->models;
58
    }
59
60
    /**
61
     * Sets the the card models associated with the game.
62
     *
63
     * @param mixed $models the models
64
     *
65
     * @return self
66
     */
67
    protected function setModels($models)
68
    {
69
        $this->models = $models;
70
71
        return $this;
72
    }
73
74
    /**
75
     * Add a model to the trading card.
76
     *
77
     *
78
     * @return void
79
     */
80
    public function addModel($model)
81
    {
82
        $this->models[] = $model;
83
    }
84
85
    /**
86
     * Gets the The number of cards in a booster.
87
     *
88
     * @return mixed
89
     */
90
    public function getBoosterCardNumber()
91
    {
92
        return $this->boosterCardNumber;
93
    }
94
95
    /**
96
     * Sets the The number of cards in a booster.
97
     *
98
     * @param mixed $boosterCardNumber the booster card number
99
     *
100
     * @return self
101
     */
102
    public function setBoosterCardNumber($boosterCardNumber)
103
    {
104
        $this->boosterCardNumber = $boosterCardNumber;
105
106
        return $this;
107
    }
108
109
    /**
110
     * Gets the The number of boosters to deliver to user.
111
     *
112
     * @return mixed
113
     */
114
    public function getBoosterDrawQuantity()
115
    {
116
        return $this->boosterDrawQuantity;
117
    }
118
119
    /**
120
     * Sets the The number of boosters to deliver to user.
121
     *
122
     * @param mixed $boosterDrawQuantity the booster draw quantity
123
     *
124
     * @return self
125
     */
126
    public function setBoosterDrawQuantity($boosterDrawQuantity)
127
    {
128
        $this->boosterDrawQuantity = $boosterDrawQuantity;
129
130
        return $this;
131
    }
132
133
    /**
134
     * Convert the object to an array.
135
     *
136
     * @return array
137
     */
138
    public function getArrayCopy()
139
    {
140
        $obj_vars = parent::getArrayCopy();
141
        array_merge($obj_vars, get_object_vars($this));
142
143
        return $obj_vars;
144
    }
145
146
    public function setInputFilter(InputFilterInterface $inputFilter)
147
    {
148
        throw new \Exception("Not used");
149
    }
150
151
    public function getInputFilter()
152
    {
153
        if (!$this->inputFilter) {
154
            $inputFilter = new InputFilter();
0 ignored issues
show
$inputFilter is not used, you could remove the assignment.

This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.

$myVar = 'Value';
$higher = false;

if (rand(1, 6) > 3) {
    $higher = true;
} else {
    $higher = false;
}

Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.

Loading history...
155
156
            $inputFilter = parent::getInputFilter();
157
158
            $this->inputFilter = $inputFilter;
159
        }
160
161
        return $this->inputFilter;
162
    }
163
}
164