Issues (1169)

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.

src/API/WSCRSHo_ClubMemberSearch.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 Gueststream\PMS\IQWare\API;
4
5
class WSCRSHo_ClubMemberSearch
6
{
7
8
    /**
9
     * @var int $GUID
10
     */
11
    protected $GUID = null;
12
13
    /**
14
     * @var string $MemberNo
15
     */
16
    protected $MemberNo = null;
17
18
    /**
19
     * @var string $ClubNo
20
     */
21
    protected $ClubNo = null;
22
23
    /**
24
     * @var string $ClubName
25
     */
26
    protected $ClubName = null;
27
28
    /**
29
     * @var string $MemberLastName
30
     */
31
    protected $MemberLastName = null;
32
33
    /**
34
     * @var string $MemberFirstName
35
     */
36
    protected $MemberFirstName = null;
37
38
    /**
39
     * @var boolean $IsActive
40
     */
41
    protected $IsActive = null;
42
43
    /**
44
     * @var TSearchRigidity $Rigidity
45
     */
46
    protected $Rigidity = null;
47
48
    /**
49
     * @param int $GUID
50
     * @param string $MemberNo
51
     * @param string $ClubNo
52
     * @param string $ClubName
53
     * @param string $MemberLastName
54
     * @param string $MemberFirstName
55
     * @param boolean $IsActive
56
     * @param TSearchRigidity $Rigidity
57
     */
58 View Code Duplication
    public function __construct($GUID, $MemberNo, $ClubNo, $ClubName, $MemberLastName, $MemberFirstName, $IsActive, $Rigidity)
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...
59
    {
60
        $this->GUID = $GUID;
61
        $this->MemberNo = $MemberNo;
62
        $this->ClubNo = $ClubNo;
63
        $this->ClubName = $ClubName;
64
        $this->MemberLastName = $MemberLastName;
65
        $this->MemberFirstName = $MemberFirstName;
66
        $this->IsActive = $IsActive;
67
        $this->Rigidity = $Rigidity;
68
    }
69
70
    /**
71
     * @return int
72
     */
73
    public function getGUID()
74
    {
75
        return $this->GUID;
76
    }
77
78
    /**
79
     * @param int $GUID
80
     * @return \Gueststream\PMS\IQWare\API\WSCRSHo_ClubMemberSearch
81
     */
82
    public function setGUID($GUID)
83
    {
84
        $this->GUID = $GUID;
85
        return $this;
86
    }
87
88
    /**
89
     * @return string
90
     */
91
    public function getMemberNo()
92
    {
93
        return $this->MemberNo;
94
    }
95
96
    /**
97
     * @param string $MemberNo
98
     * @return \Gueststream\PMS\IQWare\API\WSCRSHo_ClubMemberSearch
99
     */
100
    public function setMemberNo($MemberNo)
101
    {
102
        $this->MemberNo = $MemberNo;
103
        return $this;
104
    }
105
106
    /**
107
     * @return string
108
     */
109
    public function getClubNo()
110
    {
111
        return $this->ClubNo;
112
    }
113
114
    /**
115
     * @param string $ClubNo
116
     * @return \Gueststream\PMS\IQWare\API\WSCRSHo_ClubMemberSearch
117
     */
118
    public function setClubNo($ClubNo)
119
    {
120
        $this->ClubNo = $ClubNo;
121
        return $this;
122
    }
123
124
    /**
125
     * @return string
126
     */
127
    public function getClubName()
128
    {
129
        return $this->ClubName;
130
    }
131
132
    /**
133
     * @param string $ClubName
134
     * @return \Gueststream\PMS\IQWare\API\WSCRSHo_ClubMemberSearch
135
     */
136
    public function setClubName($ClubName)
137
    {
138
        $this->ClubName = $ClubName;
139
        return $this;
140
    }
141
142
    /**
143
     * @return string
144
     */
145
    public function getMemberLastName()
146
    {
147
        return $this->MemberLastName;
148
    }
149
150
    /**
151
     * @param string $MemberLastName
152
     * @return \Gueststream\PMS\IQWare\API\WSCRSHo_ClubMemberSearch
153
     */
154
    public function setMemberLastName($MemberLastName)
155
    {
156
        $this->MemberLastName = $MemberLastName;
157
        return $this;
158
    }
159
160
    /**
161
     * @return string
162
     */
163
    public function getMemberFirstName()
164
    {
165
        return $this->MemberFirstName;
166
    }
167
168
    /**
169
     * @param string $MemberFirstName
170
     * @return \Gueststream\PMS\IQWare\API\WSCRSHo_ClubMemberSearch
171
     */
172
    public function setMemberFirstName($MemberFirstName)
173
    {
174
        $this->MemberFirstName = $MemberFirstName;
175
        return $this;
176
    }
177
178
    /**
179
     * @return boolean
180
     */
181
    public function getIsActive()
182
    {
183
        return $this->IsActive;
184
    }
185
186
    /**
187
     * @param boolean $IsActive
188
     * @return \Gueststream\PMS\IQWare\API\WSCRSHo_ClubMemberSearch
189
     */
190
    public function setIsActive($IsActive)
191
    {
192
        $this->IsActive = $IsActive;
193
        return $this;
194
    }
195
196
    /**
197
     * @return TSearchRigidity
198
     */
199
    public function getRigidity()
200
    {
201
        return $this->Rigidity;
202
    }
203
204
    /**
205
     * @param TSearchRigidity $Rigidity
206
     * @return \Gueststream\PMS\IQWare\API\WSCRSHo_ClubMemberSearch
207
     */
208
    public function setRigidity($Rigidity)
209
    {
210
        $this->Rigidity = $Rigidity;
211
        return $this;
212
    }
213
}
214