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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## Unreleased

### Added
- Add repo URL, shown in the marketplace and Manage Add-ons dialogue.
- active/cve-2019-5418.js > An active scanner for Ruby on Rails Accept header content disclosure issue.
- active/JWT None Exploit.js > Checks if the application's JWT implementation allows the usage of the 'none' algorithm.
- authentication/DjangoAuthentication.js > Django authentication script.
Expand All @@ -28,6 +29,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

### Changed
- Maintenance changes to target ZAP 2.8.
- Change info URL to link to the online help page.

### Removed
- The following scripts were merged into a new script `HUNT.py`:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ If you might want to contribute to the repo then you can also clone it to a loca
Please upload your scripts via pull requests!

For more information on ZAP scripts see:
* https://github.com/zaproxy/zap-core-help/wiki/HelpAddonsScriptsScripts
* https://www.zaproxy.org/docs/desktop/addons/script-console/
* https://github.com/zaproxy/zaproxy/wiki/InternalScripting

To discuss any aspect of ZAP scripting please join the zaproxy-scripts group: http://groups.google.com/group/zaproxy-scripts
Expand Down
10 changes: 3 additions & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import org.zaproxy.gradle.addon.misc.ExtractLatestChangesFromChangelog

plugins {
`java-library`
id("org.zaproxy.add-on") version "0.2.0"
id("org.zaproxy.add-on") version "0.3.0"
id("com.diffplug.gradle.spotless") version "3.15.0"
}

Expand All @@ -30,15 +30,11 @@ zapAddOn {

manifest {
author.set("ZAP Community")
url.set("https://github.com/zaproxy/community-scripts")
url.set("https://www.zaproxy.org/docs/desktop/addons/community-scripts/")
repo.set("https://github.com/zaproxy/community-scripts/")
changesFile.set(tasks.named<ConvertMarkdownToHtml>("generateManifestChanges").flatMap { it.html })
files.from(scriptsDir)
}

wikiGen {
wikiFilesPrefix.set("HelpAddons${zapAddOn.addOnId.get().capitalize()}")
wikiDir.set(file("$rootDir/../zap-extensions-wiki/"))
}
}

val jupiterVersion = "5.2.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ <H1>Community Scripts</H1>
<br><br>
For more information on ZAP scripts see:
<ul>
<li><a href="https://github.com/zaproxy/zap-core-help/wiki/HelpAddonsScriptsScripts">https://github.com/zaproxy/zap-core-help/wiki/HelpAddonsScriptsScripts</a></li>
<li><a href="https://www.zaproxy.org/docs/desktop/addons/script-console/">Script Console add-on</a></li>
<li><a href="https://github.com/zaproxy/zaproxy/wiki/InternalScripting">https://github.com/zaproxy/zaproxy/wiki/InternalScripting</a></li>
</ul>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
PUBLIC "-//Sun Microsystems Inc.//DTD JavaHelp HelpSet Version 2.0//EN"
"http://java.sun.com/products/javahelp/helpset_2_0.dtd">
<helpset version="2.0" xml:lang="en-GB">
<title>Community Scripts | ZAP Extension</title>
<title>Community Scripts Add-on</title>

<maps>
<homeID>top</homeID>
<homeID>communityScripts</homeID>
<mapref location="map.jhm"/>
</maps>

Expand Down