Skip to content

Commit 108511e

Browse files
committed
Add simple help and README file
Add help and README mentioning what the add-on has/provides. Signed-off-by: thc202 <thc202@gmail.com>
1 parent b0631a8 commit 108511e

File tree

7 files changed

+96
-0
lines changed

7 files changed

+96
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
fuzzdb-web-backdoors
2+
====================
3+
4+
A ZAP add-on with FuzzDB web backdoors, split from the main add-on to avoid issues with AVs.

build.gradle.kts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ eclipse {
1717
}
1818
}
1919

20+
repositories {
21+
mavenCentral()
22+
}
23+
2024
version = "1"
2125
description = "FuzzDB web backdoors which can be used with the ZAP fuzzer"
2226

@@ -38,6 +42,11 @@ zapAddOn {
3842
author.set("ZAP Dev Team")
3943
url.set("https://github.com/fuzzdb-project/fuzzdb/")
4044
changesFile.set(tasks.named<ConvertMarkdownToHtml>("generateManifestChanges").flatMap { it.html })
45+
46+
helpSet {
47+
baseName.set("help%LC%.helpset")
48+
localeToken.set("%LC%")
49+
}
4150
}
4251
}
4352

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
2+
<HTML>
3+
<HEAD>
4+
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
5+
<TITLE>
6+
FuzzDB Web Backdoors
7+
</TITLE>
8+
</HEAD>
9+
<BODY BGCOLOR="#ffffff">
10+
<H1>FuzzDB Web Backdoors</H1>
11+
FuzzDB web backdoors which can be used with the ZAP fuzzer.
12+
13+
</BODY>
14+
</HTML>

src/main/javahelp/help/helpset.hs

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<!DOCTYPE helpset
3+
PUBLIC "-//Sun Microsystems Inc.//DTD JavaHelp HelpSet Version 2.0//EN"
4+
"http://java.sun.com/products/javahelp/helpset_2_0.dtd">
5+
<helpset version="2.0" xml:lang="en-GB">
6+
<title>FuzzDB Web Backdoors Add-On</title>
7+
8+
<maps>
9+
<homeID>top</homeID>
10+
<mapref location="map.jhm"/>
11+
</maps>
12+
13+
<view>
14+
<name>TOC</name>
15+
<label>Contents</label>
16+
<type>org.zaproxy.zap.extension.help.ZapTocView</type>
17+
<data>toc.xml</data>
18+
</view>
19+
20+
<view>
21+
<name>Index</name>
22+
<label>Index</label>
23+
<type>javax.help.IndexView</type>
24+
<data>index.xml</data>
25+
</view>
26+
27+
<view>
28+
<name>Search</name>
29+
<label>Search</label>
30+
<type>javax.help.SearchView</type>
31+
<data engine="com.sun.java.help.search.DefaultSearchEngine">
32+
JavaHelpSearch
33+
</data>
34+
</view>
35+
36+
<view>
37+
<name>Favorites</name>
38+
<label>Favorites</label>
39+
<type>javax.help.FavoritesView</type>
40+
</view>
41+
</helpset>

src/main/javahelp/help/index.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<!DOCTYPE index
3+
PUBLIC "-//Sun Microsystems Inc.//DTD JavaHelp Index Version 1.0//EN"
4+
"http://java.sun.com/products/javahelp/index_2_0.dtd">
5+
6+
<index version="2.0">
7+
<indexitem text="FuzzDB Web Backdoors" target="fuzzdb-web-backdoors" />
8+
</index>

src/main/javahelp/help/map.jhm

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<!DOCTYPE map
3+
PUBLIC "-//Sun Microsystems Inc.//DTD JavaHelp Map Version 1.0//EN"
4+
"http://java.sun.com/products/javahelp/map_1_0.dtd">
5+
6+
<map version="1.0">
7+
<mapID target="fuzzdb-web-backdoors" url="contents/intro.html" />
8+
</map>

src/main/javahelp/help/toc.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version='1.0' encoding='UTF-8' ?>
2+
<!DOCTYPE toc
3+
PUBLIC "-//Sun Microsystems Inc.//DTD JavaHelp TOC Version 2.0//EN"
4+
"http://java.sun.com/products/javahelp/toc_2_0.dtd">
5+
6+
<toc version="2.0">
7+
<tocitem text="ZAP User Guide" tocid="toplevelitem">
8+
<tocitem text="Add Ons" tocid="addons">
9+
<tocitem text="FuzzDB Web Backdoors" target="fuzzdb-web-backdoors"/>
10+
</tocitem>
11+
</tocitem>
12+
</toc>

0 commit comments

Comments
 (0)