forked from zaproxy/addon-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExampleFileActiveScanRule.java
More file actions
254 lines (228 loc) · 8.5 KB
/
ExampleFileActiveScanRule.java
File metadata and controls
254 lines (228 loc) · 8.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
/*
* Zed Attack Proxy (ZAP) and its related class files.
*
* ZAP is an HTTP/HTTPS proxy for assessing web application security.
*
* Copyright 2014 The ZAP Development Team
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.youruser.zap.javaexample;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.parosproxy.paros.Constant;
import org.parosproxy.paros.core.scanner.AbstractAppParamPlugin;
import org.parosproxy.paros.core.scanner.Alert;
import org.parosproxy.paros.core.scanner.Category;
import org.parosproxy.paros.core.scanner.Plugin;
import org.parosproxy.paros.network.HttpBody;
import org.parosproxy.paros.network.HttpMessage;
import org.zaproxy.zap.model.Tech;
import org.zaproxy.zap.model.TechSet;
/**
* An example active scan rule, for more details see
* https://www.zaproxy.org/blog/2014-04-30-hacking-zap-4-active-scan-rules/
*
* @author psiinon
*/
public class ExampleFileActiveScanRule extends AbstractAppParamPlugin {
/** Prefix for internationalized messages used by this rule */
private static final String MESSAGE_PREFIX = "javaexample.active.examplefile.";
private static final String exampleAscanFile = "txt/example-ascan-file.txt";
private List<String> strings = null;
private static final Logger LOGGER = LogManager.getLogger(ExampleFileActiveScanRule.class);
@Override
public int getId() {
/*
* This should be unique across all active and passive rules.
* The master list is https://github.com/zaproxy/zaproxy/blob/main/docs/scanners.md
*/
return 60101;
}
@Override
public String getName() {
return Constant.messages.getString(MESSAGE_PREFIX + "name");
}
@Override
public boolean targets(
TechSet technologies) { // This method allows the programmer or user to restrict when a
// scanner is run based on the technologies selected. For example, to restrict the scanner
// to run just when
// C language is selected
return technologies.includes(Tech.C);
}
@Override
public String getDescription() {
return Constant.messages.getString(MESSAGE_PREFIX + "desc");
}
private static String getOtherInfo() {
return Constant.messages.getString(MESSAGE_PREFIX + "other");
}
@Override
public String getSolution() {
return Constant.messages.getString(MESSAGE_PREFIX + "soln");
}
@Override
public String getReference() {
return Constant.messages.getString(MESSAGE_PREFIX + "refs");
}
@Override
public int getCategory() {
return Category.MISC;
}
/*
* This method is called by the active scanner for each GET and POST parameter for every page
* @see org.parosproxy.paros.core.scanner.AbstractAppParamPlugin#scan(org.parosproxy.paros.network.HttpMessage, java.lang.String, java.lang.String)
*/
@Override
public void scan(HttpMessage msg, String param, String value) {
try {
if (!Constant.isDevBuild()) {
// Only run this example scan rule in dev mode
// Uncomment locally if you want to see these alerts in non dev mode ;)
return;
}
if (this.strings == null) {
this.strings = loadFile(exampleAscanFile);
}
// This is where you change the 'good' request to attack the application
// You can make multiple requests if needed
int numAttacks = 0;
switch (this.getAttackStrength()) {
case LOW:
numAttacks = 6;
break;
case MEDIUM:
numAttacks = 12;
break;
case HIGH:
numAttacks = 24;
break;
case INSANE:
numAttacks = 96;
break;
default:
break;
}
for (int i = 0; i < numAttacks; i++) {
if (this.isStop()) {
// User has stopped the scan
break;
}
if (i >= this.strings.size()) {
// run out of attack strings
break;
}
String attack = this.strings.get(i);
// Always use getNewMsg() for each new request
HttpMessage testMsg = getNewMsg();
setParameter(testMsg, param, attack);
sendAndReceive(testMsg);
// This is where you detect potential vulnerabilities in the response
String evidence;
if ((evidence = doesResponseContainString(msg.getResponseBody(), attack)) != null) {
// Raise an alert
createAlert(param, attack, evidence).setMessage(testMsg).raise();
return;
}
}
} catch (IOException e) {
LOGGER.error(e.getMessage(), e);
}
}
private String doesResponseContainString(HttpBody body, String str) {
String sBody;
if (Plugin.AlertThreshold.HIGH.equals(this.getAlertThreshold())) {
// For a high threshold perform a case exact check
sBody = body.toString();
} else {
// For all other thresholds perform a case ignore check
sBody = body.toString().toLowerCase();
}
if (!Plugin.AlertThreshold.HIGH.equals(this.getAlertThreshold())) {
// Use case ignore unless a high threshold has been specified
str = str.toLowerCase();
}
int start = sBody.indexOf(str);
if (start >= 0) {
// Return the original (case exact) string so we can match it in the response
return body.toString().substring(start, start + str.length());
}
return null;
}
private AlertBuilder createAlert(String param, String attack, String evidence) {
return newAlert()
.setConfidence(Alert.CONFIDENCE_MEDIUM)
.setParam(param)
.setAttack(attack)
.setOtherInfo(getOtherInfo())
.setEvidence(evidence);
}
private static List<String> loadFile(String file) {
/*
* ZAP will have already extracted the file from the add-on and put it underneath the 'ZAP home' directory
*/
List<String> strings = new ArrayList<>();
BufferedReader reader = null;
File f = new File(Constant.getZapHome() + File.separator + file);
if (!f.exists()) {
LOGGER.error("No such file: {}", f.getAbsolutePath());
return strings;
}
try {
String line;
reader = new BufferedReader(new FileReader(f));
while ((line = reader.readLine()) != null) {
if (!line.startsWith("#") && line.length() > 0) {
strings.add(line);
}
}
} catch (IOException e) {
LOGGER.error(
"Error on opening/reading example error file. Error: {}", e.getMessage(), e);
} finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e) {
LOGGER.debug("Error on closing the file reader. Error: {}", e.getMessage(), e);
}
}
}
return strings;
}
@Override
public int getRisk() {
return Alert.RISK_HIGH;
}
@Override
public int getCweId() {
// The CWE id
return 0;
}
@Override
public int getWascId() {
// The WASC ID
return 0;
}
@Override
public List<Alert> getExampleAlerts() {
return List.of(createAlert("foo", "<SCRIPT>a=/XSS/", "<SCRIPT>a=/XSS/").build());
}
}