2022-10-08 00:40:49 +09:00
|
|
|
## ⚠️ Important
|
|
|
|
The paths below is automatically generated.
|
|
|
|
|
|
|
|
- `README.md`
|
|
|
|
- `categorize/*`
|
|
|
|
|
|
|
|
Please contribute only the `./weapons` and `./scripts`, `./images` directories 😉
|
|
|
|
|
|
|
|
## ❤️ Contribute
|
2022-08-17 23:43:00 +09:00
|
|
|
### First, Fork Repository
|
2022-08-17 23:42:24 +09:00
|
|
|
Fork this repository :D
|
2020-11-08 00:39:59 +09:00
|
|
|
|
2022-08-17 23:43:44 +09:00
|
|
|
### Second, Write `./weapons/<appname>.yaml` and Commit/PR
|
2022-08-17 23:41:54 +09: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 17:46:58 +09:00
|
|
|
type: # Army-knife / Proxy / Recon / Fuzzer / Scanner / Exploit / Env / Utils / Etc
|
2022-08-17 23:41:54 +09:00
|
|
|
platform:
|
2022-08-19 16:26:26 +09:00
|
|
|
- linux # linux
|
|
|
|
- macos # macos application
|
|
|
|
- windows # windows application
|
|
|
|
- firefox # firefox addon
|
|
|
|
- safari # safari addon
|
|
|
|
- chrome # chrome addon
|
2022-08-19 23:48:55 +09: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 16:42:53 +09:00
|
|
|
lang: # go / python / ruby / rust / etc...
|
2022-09-06 07:42:20 +09:00
|
|
|
tags: [] # xss / sqli / ssrf / oast / http / subdomains / etc...
|
2020-11-08 00:39:59 +09:00
|
|
|
```
|
|
|
|
|
2022-08-19 23:48:55 +09:00
|
|
|
*Sample*
|
2022-08-19 23:55:56 +09:00
|
|
|
```yaml
|
2022-08-19 23:48:55 +09:00
|
|
|
---
|
|
|
|
name: HUNT
|
|
|
|
description: Identifies common parameters vulnerable to certain vulnerability classes
|
|
|
|
url: https://github.com/bugcrowd/HUNT
|
|
|
|
category: tool-addon
|
|
|
|
type: Recon
|
2024-01-02 01:10:29 +09:00
|
|
|
platform: [linux, macos, windows, zap, burpsuite]
|
2022-08-19 23:48:55 +09:00
|
|
|
lang: Kotlin
|
2024-01-02 01:10:29 +09:00
|
|
|
tags: [param]
|
2022-08-19 23:48:55 +09:00
|
|
|
```
|
|
|
|
|
2020-11-08 00:57:11 +09:00
|
|
|
![1415](https://user-images.githubusercontent.com/13212227/98445635-00db1e00-215c-11eb-8a59-d7d21dd98db0.png)
|
|
|
|
|
2022-09-06 07:42:20 +09:00
|
|
|
### Third, There's no third.
|