2022-08-17 10:43:00 -04:00
|
|
|
## Contribute
|
|
|
|
### First, Fork Repository
|
2022-08-17 10:42:24 -04:00
|
|
|
Fork this repository :D
|
2020-11-07 10:39:59 -05:00
|
|
|
|
2022-08-17 10:43:44 -04:00
|
|
|
### Second, Write `./weapons/<appname>.yaml` and Commit/PR
|
2022-08-17 10:41:54 -04:00
|
|
|
Write YAML Code.
|
|
|
|
```yaml
|
|
|
|
---
|
|
|
|
name: App Name
|
|
|
|
description: App Description
|
|
|
|
url: App URL # https://github.com/hahwul/dalfox
|
|
|
|
category: tool # tool / tool-addon / browser-addon / bookmarklet
|
2022-09-16 04:46:58 -04:00
|
|
|
type: # Army-knife / Proxy / Recon / Fuzzer / Scanner / Exploit / Env / Utils / Etc
|
2022-08-17 10:41:54 -04:00
|
|
|
platform:
|
2022-08-19 03:26:26 -04:00
|
|
|
- linux # linux
|
|
|
|
- macos # macos application
|
|
|
|
- windows # windows application
|
|
|
|
- firefox # firefox addon
|
|
|
|
- safari # safari addon
|
|
|
|
- chrome # chrome addon
|
2022-08-19 10:48:55 -04:00
|
|
|
- zap # anything to do with zap (addons, scripts, etc..)
|
|
|
|
- burpsuite # anything to do with burpsuite (extensions, payloads, etc..)
|
|
|
|
# If supported crossplatform (OS), you write out all three (linux/macos/windows)
|
|
|
|
# If supported zap and burpsuite addon, you write both (zap/burpsuite)
|
2022-08-19 03:42:53 -04:00
|
|
|
lang: # go / python / ruby / rust / etc...
|
2022-09-05 18:42:20 -04:00
|
|
|
tags: [] # xss / sqli / ssrf / oast / http / subdomains / etc...
|
2020-11-07 10:39:59 -05:00
|
|
|
```
|
|
|
|
|
2022-08-19 10:48:55 -04:00
|
|
|
*Sample*
|
2022-08-19 10:55:56 -04:00
|
|
|
```yaml
|
2022-08-19 10:48:55 -04:00
|
|
|
---
|
|
|
|
name: HUNT
|
|
|
|
description: Identifies common parameters vulnerable to certain vulnerability classes
|
|
|
|
url: https://github.com/bugcrowd/HUNT
|
|
|
|
category: tool-addon
|
|
|
|
type: Recon
|
|
|
|
platform:
|
|
|
|
- linux
|
|
|
|
- macos
|
|
|
|
- windows
|
|
|
|
- zap
|
|
|
|
- burpsuite
|
|
|
|
lang: Kotlin
|
|
|
|
tags:
|
|
|
|
- param
|
|
|
|
```
|
|
|
|
|
2020-11-07 10:57:11 -05:00
|
|
|
![1415](https://user-images.githubusercontent.com/13212227/98445635-00db1e00-215c-11eb-8a59-d7d21dd98db0.png)
|
|
|
|
|
2022-09-05 18:42:20 -04:00
|
|
|
### Third, There's no third.
|