Issues (4388)

Security Analysis    no vulnerabilities found

This project does not seem to handle request data directly as such no vulnerable execution paths were found.

  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.
  Regex Injection
Regex Injection enables an attacker to execute arbitrary code in your PHP process.
  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.
  Response Splitting
Response Splitting can be used to send arbitrary responses.
  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.
  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.
  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.
  Code Injection
Code Injection enables an attacker to execute arbitrary code on the server.
  Variable Injection
Variable Injection enables an attacker to overwrite program variables with custom data, and can lead to further vulnerabilities.
  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.
  Other Vulnerability
This category comprises other attack vectors such as manipulating the PHP runtime, loading custom extensions, freezing the runtime, or similar.
  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.
  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.
  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.
  Header Injection
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.

webroot/css/cake.css (34 issues)

1
/* Miligram overrides */
2
body {
3
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
0 ignored issues
show
Style definitions must be lowercase; expected helvetica but found Helvetica
Loading history...
Style definitions must be lowercase; expected arial but found Arial
Loading history...
4
    font-weight: 400;
5
}
6
7
.top-nav-links,
8
.side-nav,
9
h1, h2, h3, h4, h5, h6 {
0 ignored issues
show
Multiple selectors should each be on a single line
Loading history...
10
    font-family: "Raleway", sans-serif;
11
}
12
13
h1, h2, h3, h4, h5, h6 {
0 ignored issues
show
Multiple selectors should each be on a single line
Loading history...
14
    font-weight: 400;
15
    color: #363637;
16
}
17
18
a {
19
    color:#2f85ae;
0 ignored issues
show
CSS colours must be defined in uppercase; expected #2F85AE but found #2f85ae
Loading history...
Expected 1 space after colon in style definition; 0 found
Loading history...
20
    -webkit-transition:all 0.2s linear;
0 ignored issues
show
Expected 1 space after colon in style definition; 0 found
Loading history...
21
    transition:all 0.2s linear;
0 ignored issues
show
Expected 1 space after colon in style definition; 0 found
Loading history...
22
}
23
24
a:hover,
25
a:focus,
26
a:active  {
0 ignored issues
show
Expected 1 space before opening brace of class definition; 2 found
Loading history...
27
    color:#2a6496;
0 ignored issues
show
CSS colours must be defined in uppercase; expected #2A6496 but found #2a6496
Loading history...
Expected 1 space after colon in style definition; 0 found
Loading history...
28
    -webkit-transition:all 0.2s easeout;
0 ignored issues
show
Expected 1 space after colon in style definition; 0 found
Loading history...
29
    transition:all 0.2s ease-out;
0 ignored issues
show
Expected 1 space after colon in style definition; 0 found
Loading history...
30
}
31
32
.side-nav a,
33
.top-nav-links a,
34
th a,
35
.actions a {
36
    color: #606c76;
0 ignored issues
show
CSS colours must be defined in uppercase; expected #606C76 but found #606c76
Loading history...
37
}
38
39
.side-nav a:hover,
40
.side-nav a:focus,
41
.actions a:hover,
42
.actions a:focus {
43
    color:#2f85ae;
0 ignored issues
show
CSS colours must be defined in uppercase; expected #2F85AE but found #2f85ae
Loading history...
Expected 1 space after colon in style definition; 0 found
Loading history...
44
}
45
46
/* Utility */
47
.table-responsive {
48
    display: block;
49
    width: 100%;
50
    overflow-x: auto;
51
    -webkit-overflow-scrolling: touch;
52
}
53
54
/* Main */
55
body {
0 ignored issues
show
Duplicate class definition found; first defined on line 2
Loading history...
56
    background: #f5f7fa;
0 ignored issues
show
CSS colours must be defined in uppercase; expected #F5F7FA but found #f5f7fa
Loading history...
57
}
58
.content {
59
    padding: 2rem;
60
    background: #ffffff;
0 ignored issues
show
CSS colours must be defined in uppercase; expected #FFFFFF but found #ffffff
Loading history...
CSS colours must use shorthand if available; expected #fff but found #ffffff
Loading history...
61
    border-radius: 0.4rem;
62
    /* Thanks Stripe */
63
    box-shadow: 0 7px 14px 0 rgba(60, 66, 87, 0.1),
64
        0 3px 6px 0 rgba(0, 0, 0, 0.07);
0 ignored issues
show
No style definition found on line; check for missing colon
Loading history...
65
}
66
.actions a {
67
    font-weight: bold;
68
    padding: 0 0.4rem;
69
}
70
th {
71
    white-space: nowrap;
72
}
73
74
/* Nav bar */
75
.top-nav {
76
    display: flex;
77
    align-items: center;
78
    justify-content: space-between;
79
    max-width: 112rem;
80
    padding: 2rem;
81
    margin: 0 auto 2rem;
82
}
83
.top-nav-title a {
84
    font-size: 2.4rem;
85
    color: #d33c43;
0 ignored issues
show
CSS colours must be defined in uppercase; expected #D33C43 but found #d33c43
Loading history...
86
}
87
.top-nav-title span {
88
    color: #404041;
89
}
90
.top-nav-links a {
91
    margin: 0 0.5rem;
92
}
93
.top-nav-title a,
94
.top-nav-links a {
95
    font-weight: bold;
96
}
97
98
.side-nav-item {
99
    display: block;
100
    padding: 0.5rem 0;
101
}
102
103
/* View action */
104
.view.content .text {
105
    margin-top: 1.2rem;
106
}
107
.related {
108
    margin-top: 2rem;
109
}
110
111
/* Flash messages */
112
.message {
113
    padding: 1rem;
114
0 ignored issues
show
Blank lines are not allowed in class definitions
Loading history...
115
    background: #eff8ff;
0 ignored issues
show
CSS colours must be defined in uppercase; expected #EFF8FF but found #eff8ff
Loading history...
116
    color: #2779bd;
0 ignored issues
show
CSS colours must be defined in uppercase; expected #2779BD but found #2779bd
Loading history...
117
0 ignored issues
show
Blank lines are not allowed in class definitions
Loading history...
118
    border-color: #6cb2eb;
0 ignored issues
show
CSS colours must be defined in uppercase; expected #6CB2EB but found #6cb2eb
Loading history...
119
    border-width: 1px;
120
    border-style: solid;
121
    border-radius: 4px;
122
    margin-bottom: 2rem;
123
}
124
.message.hidden {
125
    display: none;
126
}
127
.message.success {
128
    background: #e3fcec;
0 ignored issues
show
CSS colours must be defined in uppercase; expected #E3FCEC but found #e3fcec
Loading history...
129
    color: #1f9d55;
0 ignored issues
show
CSS colours must be defined in uppercase; expected #1F9D55 but found #1f9d55
Loading history...
130
    border-color: #51d88a;
0 ignored issues
show
CSS colours must be defined in uppercase; expected #51D88A but found #51d88a
Loading history...
131
}
132
.message.error {
133
    background: #fcebea;
0 ignored issues
show
CSS colours must be defined in uppercase; expected #FCEBEA but found #fcebea
Loading history...
134
    color: #cc1f1a;
0 ignored issues
show
CSS colours must be defined in uppercase; expected #CC1F1A but found #cc1f1a
Loading history...
135
    border-color: #ef5753;
0 ignored issues
show
CSS colours must be defined in uppercase; expected #EF5753 but found #ef5753
Loading history...
136
}
137
138
/* Forms */
139
.input.radio,
140
.input.checkbox {
141
    margin-bottom: 2.0rem;
142
}
143
.input.radio input,
144
.input.checkbox input {
145
    margin: 0;
146
}
147
.input.radio label,
148
.input.checkbox label {
149
    margin: 0;
150
    display: flex;
151
    align-items: center;
152
}
153
.input.radio label > input,
154
.input.checkbox label > input {
155
    margin-right: 1.0rem;
156
}
157
.input.radio label:first-of-type {
158
    margin-bottom: 2.0rem;
159
}
160
161
/* Paginator */
162
.paginator {
163
    text-align: right;
164
}
165
.pagination {
166
    display: flex;
167
    justify-content: center;
168
    list-style: none;
169
    padding: 0;
170
    margin: 0 0 1rem;
171
}
172
.pagination li {
173
    margin: 0 0.5rem;
174
}
175
.prev.disabled a,
176
.next.disabled a {
177
    cursor: not-allowed;
178
    color: #606c76;
0 ignored issues
show
CSS colours must be defined in uppercase; expected #606C76 but found #606c76
Loading history...
179
}
180
.asc:after {
181
    content: " \2193";
182
}
183
.desc:after {
184
    content: " \2191";
185
}
186
187
/* Error */
188
.error-container {
189
    align-items: center;
190
    display: flex;
191
    flex-direction: column;
192
    height: 100vh;
193
    justify-content: center;
194
}
195
196
@media screen and (max-width: 640px) {
197
    .top-nav {
198
        margin: 0 auto;
199
    }
200
    .side-nav {
201
        margin-bottom: 1rem;
202
    }
203
    .heading {
204
        margin-bottom: 1rem;
205
    }
206
    .side-nav-item {
207
        display: inline;
208
        margin: 0 1.5rem 0 0;
209
    }
210
    .asc:after {
211
        content: " \2192";
212
    }
213
    .desc:after {
214
        content: " \2190";
215
    }
216
}
217