Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,14 @@ gradle-app.setting

# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
# gradle/wrapper/gradle-wrapper.properties

# Misc
#-----
.DS_Store

# Eclipse
# -------
*.classpath
*.project
*.settings
/bin
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ All notable changes to this add-on will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

First version
### Changed
- First version
12 changes: 12 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ zapAddOn {
url.set("https://www.zaproxy.org/docs/desktop/addons/addonjava/")
repo.set("https://github.com/zaproxy/addon-java")
changesFile.set(tasks.named<ConvertMarkdownToHtml>("generateManifestChanges").flatMap { it.html })

dependencies {
addOns {
register("commonlib") {
version.set(">= 1.36.0 & < 2.0.0")
}
}
}
}
}

Expand All @@ -38,3 +46,7 @@ spotless {
ktlint()
}
}

dependencies {
compileOnly("org.zaproxy.addon:commonlib:1.36.0")
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,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());
}
}
Loading