mirror of
https://github.com/hahwul/WebHackersWeapons.git
synced 2025-01-11 23:29:35 -05:00
commit
a55c360715
14
.github/workflows/contributors.yml
vendored
14
.github/workflows/contributors.yml
vendored
@ -1,14 +1,14 @@
|
||||
---
|
||||
name: Contributors
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
branches: [main]
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
logLevel:
|
||||
description: 'manual run'
|
||||
required: false
|
||||
default: ''
|
||||
inputs:
|
||||
logLevel:
|
||||
description: manual run
|
||||
required: false
|
||||
default: ''
|
||||
jobs:
|
||||
contributors:
|
||||
runs-on: ubuntu-latest
|
||||
|
54
.github/workflows/deploy.yml
vendored
54
.github/workflows/deploy.yml
vendored
@ -1,36 +1,34 @@
|
||||
---
|
||||
name: Deploy
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
branches: [main]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
Deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Ruby
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: 3.0
|
||||
- name: Install dependencies
|
||||
run: gem install erb yaml
|
||||
- name: Run app
|
||||
run: |
|
||||
ruby ./scripts/erb.rb
|
||||
- name: Make last_change
|
||||
run: date > ./scripts/last_change
|
||||
- name: Commit files
|
||||
run: |
|
||||
git config --local user.email "hahwul@gmail.com"
|
||||
git config --local user.name "WHW"
|
||||
git add README.md ./scripts/last_change
|
||||
git add ./categorize/*
|
||||
git commit -m "Deploy README.md and Categorize Docs"
|
||||
- name: Push changes
|
||||
uses: ad-m/github-push-action@master
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
branch: ${{ github.ref }}
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Ruby
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: 3.0
|
||||
- name: Install dependencies
|
||||
run: gem install erb yaml
|
||||
- name: Run app
|
||||
run: |
|
||||
ruby ./scripts/erb.rb
|
||||
- name: Make last_change
|
||||
run: date > ./scripts/last_change
|
||||
- name: Commit files
|
||||
run: |
|
||||
git config --local user.email "hahwul@gmail.com"
|
||||
git config --local user.name "WHW"
|
||||
git add README.md ./scripts/last_change
|
||||
git add ./categorize/*
|
||||
git commit -m "Deploy README.md and Categorize Docs"
|
||||
- name: Push changes
|
||||
uses: ad-m/github-push-action@master
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
branch: ${{ github.ref }}
|
||||
|
15
.github/workflows/yaml-lint.yml
vendored
Normal file
15
.github/workflows/yaml-lint.yml
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
name: YAML Lint
|
||||
on:
|
||||
pull_request:
|
||||
branches: [main]
|
||||
jobs:
|
||||
lintAllTheThings:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: yaml-lint
|
||||
uses: ibiqlik/action-yamllint@v3
|
||||
with:
|
||||
file_or_dir: weapons/*.yaml
|
||||
config_file: .yamllint.yml
|
30
.yamllint.yml
Normal file
30
.yamllint.yml
Normal file
@ -0,0 +1,30 @@
|
||||
---
|
||||
|
||||
rules:
|
||||
anchors: enable
|
||||
braces: enable
|
||||
brackets: enable
|
||||
colons: enable
|
||||
commas: enable
|
||||
comments:
|
||||
level: warning
|
||||
comments-indentation:
|
||||
level: warning
|
||||
document-end: disable
|
||||
document-start:
|
||||
level: warning
|
||||
empty-lines: enable
|
||||
empty-values: disable
|
||||
float-values: disable
|
||||
hyphens: enable
|
||||
indentation: enable
|
||||
key-duplicates: enable
|
||||
key-ordering: disable
|
||||
line-length: disable
|
||||
new-line-at-end-of-file: enable
|
||||
new-lines: enable
|
||||
octal-values: disable
|
||||
quoted-strings: disable
|
||||
trailing-spaces: enable
|
||||
truthy:
|
||||
level: warning
|
@ -42,15 +42,9 @@ description: Identifies common parameters vulnerable to certain vulnerability cl
|
||||
url: https://github.com/bugcrowd/HUNT
|
||||
category: tool-addon
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- zap
|
||||
- burpsuite
|
||||
platform: [linux, macos, windows, zap, burpsuite]
|
||||
lang: Kotlin
|
||||
tags:
|
||||
- param
|
||||
tags: [param]
|
||||
```
|
||||
|
||||
![1415](https://user-images.githubusercontent.com/13212227/98445635-00db1e00-215c-11eb-8a59-d7d21dd98db0.png)
|
||||
|
@ -4,10 +4,6 @@ description: An Out-of-Band XXE server for retrieving file contents over FTP.
|
||||
url: https://github.com/lc/230-OOB
|
||||
category: tool
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags:
|
||||
- xxe
|
||||
tags: [xxe]
|
||||
|
@ -5,9 +5,6 @@ description: Automation Recon tool which works with Large & Medium scopes. It pe
|
||||
url: https://github.com/eslam3kl/3klCon
|
||||
category: tool
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags: []
|
||||
|
@ -4,10 +4,6 @@ description: Security Tool to Look For Interesting Files in S3 Buckets
|
||||
url: https://github.com/jordanpotti/AWSBucketDump
|
||||
category: tool
|
||||
type: Scanner
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags:
|
||||
- s3
|
||||
tags: [s3]
|
||||
|
@ -4,10 +4,6 @@ description: Burp Extension for AWS Signing
|
||||
url: https://github.com/NetSPI/AWSSigner
|
||||
category: tool-addon
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- burpsuite
|
||||
platform: [linux, macos, windows, burpsuite]
|
||||
lang: Java
|
||||
tags: []
|
||||
tags: []
|
||||
|
@ -4,10 +4,6 @@ description: 'In-depth Attack Surface Mapping and Asset Discovery '
|
||||
url: https://github.com/OWASP/Amass
|
||||
category: tool
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Go
|
||||
tags:
|
||||
- subdomains
|
||||
tags: [subdomains]
|
||||
|
@ -4,10 +4,6 @@ description: 'HTTP parameter discovery suite. '
|
||||
url: https://github.com/s0md3v/Arjun
|
||||
category: tool
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags:
|
||||
- param
|
||||
tags: [param]
|
||||
|
@ -4,11 +4,6 @@ description: Automated & Manual Wordlists provided by Assetnote
|
||||
url: https://github.com/assetnote/wordlists
|
||||
category: tool
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: CSS
|
||||
tags:
|
||||
- wordlist
|
||||
- documents
|
||||
tags: [wordlist, documents]
|
||||
|
@ -4,9 +4,6 @@ description: 'Quick SQLMap Tamper Suggester '
|
||||
url: https://github.com/m4ll0k/Atlas
|
||||
category: tool
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags: []
|
||||
|
@ -4,11 +4,6 @@ description:
|
||||
url: https://github.com/SecurityInnovation/AuthMatrix
|
||||
category: tool-addon
|
||||
type: Scanner
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- burpsuite
|
||||
platform: [linux, macos, windows, burpsuite]
|
||||
lang: Python
|
||||
tags:
|
||||
- aaa
|
||||
tags: [aaa]
|
||||
|
@ -4,10 +4,6 @@ description: Automated HTTP Request Repeating With Burp Suite
|
||||
url: https://github.com/SecurityInnovation/AuthMatrix
|
||||
category: tool-addon
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- burpsuite
|
||||
platform: [linux, macos, windows, burpsuite]
|
||||
lang: Java
|
||||
tags: []
|
||||
|
@ -4,11 +4,6 @@ description:
|
||||
url: https://github.com/Quitten/Autorize
|
||||
category: tool-addon
|
||||
type: Scanner
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- burpsuite
|
||||
platform: [linux, macos, windows, burpsuite]
|
||||
lang: Python
|
||||
tags:
|
||||
- aaa
|
||||
tags: [aaa]
|
||||
|
@ -4,10 +4,6 @@ description: DNS Analysis Tool
|
||||
url: https://github.com/darryllane/Bluto
|
||||
category: tool
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags:
|
||||
- dns
|
||||
tags: [dns]
|
||||
|
@ -4,10 +4,6 @@ description: Java RMI enumeration and attack tool.
|
||||
url: https://github.com/NickstaDB/BaRMIe
|
||||
category: tool
|
||||
type: Exploit
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Java
|
||||
tags:
|
||||
- RMI
|
||||
tags: [RMI]
|
||||
|
@ -1,13 +1,10 @@
|
||||
---
|
||||
name: BatchQL
|
||||
description: GraphQL security auditing script with a focus on performing batch GraphQL queries and mutations
|
||||
description: GraphQL security auditing script with a focus on performing batch GraphQL
|
||||
queries and mutations
|
||||
url: https://github.com/assetnote/batchql
|
||||
category: tool
|
||||
type: Fuzzer
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags:
|
||||
- graphql
|
||||
tags: [graphql]
|
||||
|
@ -4,10 +4,6 @@ description: Burp Suite extension to perform Kerberos authentication
|
||||
url: https://github.com/nccgroup/Berserko
|
||||
category: tool-addon
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- burpsuite
|
||||
platform: [linux, macos, windows, burpsuite]
|
||||
lang: Java
|
||||
tags: []
|
||||
|
@ -4,9 +4,6 @@ description: 'project-blacklist3r '
|
||||
url: https://github.com/NotSoSecure/Blacklist3r
|
||||
category: tool
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: C#
|
||||
tags: []
|
||||
|
@ -4,9 +4,6 @@ description: Automatically brute force all services running on a target.
|
||||
url: https://github.com/1N3/BruteX
|
||||
category: tool
|
||||
type: Fuzzer
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Shell
|
||||
tags: []
|
||||
|
@ -4,9 +4,6 @@ description: 'BBT - Bug Bounty Tools '
|
||||
url: https://github.com/m4ll0k/Bug-Bounty-Toolz
|
||||
category: tool
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags: []
|
||||
|
@ -4,10 +4,6 @@ description:
|
||||
url: https://github.com/wagiro/BurpBounty
|
||||
category: tool-addon
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- burpsuite
|
||||
platform: [linux, macos, windows, burpsuite]
|
||||
lang: BlitzBasic
|
||||
tags: []
|
||||
|
@ -4,10 +4,6 @@ description: Because just a dark theme wasn't enough!
|
||||
url: https://github.com/CoreyD97/BurpCustomizer
|
||||
category: tool-addon
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- burpsuite
|
||||
platform: [linux, macos, windows, burpsuite]
|
||||
lang: Java
|
||||
tags: []
|
||||
|
@ -4,11 +4,6 @@ description:
|
||||
url: https://github.com/InitRoot/BurpJSLinkFinder
|
||||
category: tool-addon
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- burpsuite
|
||||
platform: [linux, macos, windows, burpsuite]
|
||||
lang: Python
|
||||
tags:
|
||||
- js-analysis
|
||||
tags: [js-analysis]
|
||||
|
@ -4,10 +4,6 @@ description:
|
||||
url: https://github.com/m4ll0k/BurpSuite-Secret_Finder
|
||||
category: tool-addon
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- burpsuite
|
||||
lang:
|
||||
platform: [linux, macos, windows, burpsuite]
|
||||
lang:
|
||||
tags: []
|
||||
|
@ -4,13 +4,6 @@ description: The BurpSuite Project
|
||||
url: https://portswigger.net/burp
|
||||
category: tool
|
||||
type: Army-Knife
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- burpsuite
|
||||
platform: [linux, macos, windows, burpsuite]
|
||||
lang: Java
|
||||
tags:
|
||||
- mitmproxy
|
||||
- live-audit
|
||||
- crawl
|
||||
tags: [mitmproxy, live-audit, crawl]
|
||||
|
@ -4,11 +4,6 @@ description:
|
||||
url: https://github.com/nccgroup/BurpSuiteHTTPSmuggler
|
||||
category: tool-addon
|
||||
type: Scanner
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- burpsuite
|
||||
platform: [linux, macos, windows, burpsuite]
|
||||
lang: Java
|
||||
tags:
|
||||
- smuggle
|
||||
tags: [smuggle]
|
||||
|
@ -4,10 +4,6 @@ description:
|
||||
url: https://github.com/nccgroup/BurpSuiteLoggerPlusPlus
|
||||
category: tool-addon
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- burpsuite
|
||||
platform: [linux, macos, windows, burpsuite]
|
||||
lang: Java
|
||||
tags: []
|
||||
|
@ -4,10 +4,6 @@ description: Online CSP Evaluator from google
|
||||
url: https://csp-evaluator.withgoogle.com
|
||||
category: tool
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
lang:
|
||||
tags:
|
||||
- csp
|
||||
platform: [linux, macos, windows]
|
||||
lang:
|
||||
tags: [csp]
|
||||
|
@ -5,10 +5,6 @@ description: 'An hourly updated list of subdomains gathered from certificate tra
|
||||
url: https://github.com/internetwache/CT_subdomains
|
||||
category: tool
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
lang:
|
||||
tags:
|
||||
- subdomains
|
||||
platform: [linux, macos, windows]
|
||||
lang:
|
||||
tags: [subdomains]
|
||||
|
@ -1,13 +1,10 @@
|
||||
---
|
||||
name: Chaos Web
|
||||
description: " actively scan and maintain internet-wide assets' data. enhance research
|
||||
and analyse changes around DNS for better insights."
|
||||
description: " actively scan and maintain internet-wide assets' data. enhance research\
|
||||
\ and analyse changes around DNS for better insights."
|
||||
url: https://chaos.projectdiscovery.io
|
||||
category: tool
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
lang:
|
||||
platform: [linux, macos, windows]
|
||||
lang:
|
||||
tags: []
|
||||
|
@ -5,10 +5,6 @@ description: Cyclops is a web browser with XSS detection feature, it is chromium
|
||||
url: https://github.com/v8blink/Chromium-based-XSS-Taint-Tracking
|
||||
category: tool
|
||||
type: Scanner
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
lang:
|
||||
tags:
|
||||
- xss
|
||||
platform: [linux, macos, windows]
|
||||
lang:
|
||||
tags: [xss]
|
||||
|
@ -4,10 +4,6 @@ description: An external brain that remembers anything, anytime, anywhere.
|
||||
url: https://github.com/Slackadays/Clipboard
|
||||
category: tool
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: C++
|
||||
tags:
|
||||
- clipboard
|
||||
tags: [clipboard]
|
||||
|
@ -4,10 +4,6 @@ description: 'Cross Origin Resource Sharing MisConfiguration Scanner '
|
||||
url: https://github.com/Shivangx01b/CorsMe
|
||||
category: tool
|
||||
type: Scanner
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Go
|
||||
tags:
|
||||
- cors
|
||||
tags: [cors]
|
||||
|
@ -4,10 +4,6 @@ description: 'CORS Misconfiguration Scanner '
|
||||
url: https://github.com/s0md3v/Corsy
|
||||
category: tool
|
||||
type: Scanner
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags:
|
||||
- cors
|
||||
tags: [cors]
|
||||
|
@ -4,10 +4,6 @@ description: CrackQL is a GraphQL password brute-force and fuzzing utility.
|
||||
url: https://github.com/nicholasaleks/CrackQL
|
||||
category: tool
|
||||
type: Fuzzer
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags:
|
||||
- graphql
|
||||
tags: [graphql]
|
||||
|
@ -5,9 +5,6 @@ description: 'The Cyber Swiss Army Knife - a web app for encryption, encoding, c
|
||||
url: https://github.com/gchq/CyberChef
|
||||
category: tool
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: JavaScript
|
||||
tags: []
|
||||
|
@ -1,14 +1,9 @@
|
||||
---
|
||||
name: DNSDumpster
|
||||
description: " Online dns recon & research, find & lookup dns records"
|
||||
description: ' Online dns recon & research, find & lookup dns records'
|
||||
url: https://dnsdumpster.com
|
||||
category: tool
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
lang:
|
||||
tags:
|
||||
- dns
|
||||
- online
|
||||
platform: [linux, macos, windows]
|
||||
lang:
|
||||
tags: [dns, online]
|
||||
|
@ -6,10 +6,6 @@ description: 'DOMPurify - a DOM-only, super-fast, uber-tolerant XSS sanitizer fo
|
||||
url: https://github.com/cure53/DOMPurify
|
||||
category: tool
|
||||
type: Scanner
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: JavaScript
|
||||
tags:
|
||||
- xss
|
||||
tags: [xss]
|
||||
|
@ -4,10 +4,6 @@ description: Damn Small SQLi Scanner
|
||||
url: https://github.com/stamparm/DSSS
|
||||
category: tool
|
||||
type: Scanner
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags:
|
||||
- sqli
|
||||
tags: [sqli]
|
||||
|
@ -4,12 +4,6 @@ description: Dark mode to any site
|
||||
url: https://github.com/darkreader/darkreader
|
||||
category: browser-addon
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- firefox
|
||||
- chrome
|
||||
platform: [linux, macos, windows, firefox, chrome]
|
||||
lang: TypeScript
|
||||
tags:
|
||||
- darkmode
|
||||
tags: [darkmode]
|
||||
|
@ -4,10 +4,6 @@ description: Dark mode to any site
|
||||
url: https://apps.apple.com/us/app/dark-reader-for-safari/id1438243180
|
||||
category: browser-addon
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- safari
|
||||
lang:
|
||||
platform: [linux, macos, windows, safari]
|
||||
lang:
|
||||
tags: []
|
||||
|
@ -4,10 +4,6 @@ description: Improved decoder for Burp Suite
|
||||
url: https://github.com/nccgroup/Decoder-Improved
|
||||
category: tool-addon
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- burpsuite
|
||||
platform: [linux, macos, windows, burpsuite]
|
||||
lang: Java
|
||||
tags: []
|
||||
|
@ -4,10 +4,6 @@ description: Tool for introspection of SSL\TLS sessions
|
||||
url: https://github.com/spoofzu/DeepViolet
|
||||
category: tool
|
||||
type: Scanner
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Java
|
||||
tags:
|
||||
- ssl
|
||||
tags: [ssl]
|
||||
|
@ -5,10 +5,6 @@ description: DirDar is a tool that searches for (403-Forbidden) directories to b
|
||||
url: https://github.com/M4DM0e/DirDar
|
||||
category: tool
|
||||
type: Scanner
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Go
|
||||
tags:
|
||||
- 403
|
||||
tags: [403]
|
||||
|
@ -4,9 +4,6 @@ description: An extension for checking if .git is exposed in visited websites
|
||||
url: https://github.com/davtur19/DotGit
|
||||
category: browser-addon
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: JavaScript
|
||||
tags: []
|
||||
|
@ -1,14 +1,10 @@
|
||||
---
|
||||
name: Dr. Watson
|
||||
description: Dr. Watson is a simple Burp Suite extension that helps find assets, keys, subdomains, IP addresses, and other useful information
|
||||
description: Dr. Watson is a simple Burp Suite extension that helps find assets, keys,
|
||||
subdomains, IP addresses, and other useful information
|
||||
url: https://github.com/prodigysml/Dr.-Watson
|
||||
category: tool-addon
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- burpsuite
|
||||
platform: [linux, macos, windows, burpsuite]
|
||||
lang: Python
|
||||
tags:
|
||||
- param
|
||||
- subdomains
|
||||
tags: [param, subdomains]
|
||||
|
@ -1,11 +1,10 @@
|
||||
---
|
||||
name: Echo Mirage
|
||||
description: A generic network proxy that uses DLL injection to capture and alter TCP traffic.
|
||||
description: A generic network proxy that uses DLL injection to capture and alter
|
||||
TCP traffic.
|
||||
url: https://sourceforge.net/projects/echomirage.oldbutgold.p/
|
||||
category: tool
|
||||
type: Proxy
|
||||
platform:
|
||||
- windows
|
||||
lang:
|
||||
tags:
|
||||
- mitmproxy
|
||||
platform: [windows]
|
||||
lang:
|
||||
tags: [mitmproxy]
|
||||
|
@ -5,10 +5,6 @@ description: EditThisCookie is the famous Google Chrome/Chromium extension for e
|
||||
url: https://github.com/ETCExtensions/Edit-This-Cookie
|
||||
category: browser-addon
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: JavaScript
|
||||
tags:
|
||||
- cookie
|
||||
tags: [cookie]
|
||||
|
@ -5,10 +5,6 @@ description: Send notifications on different channels such as Slack, Telegram, D
|
||||
url: https://github.com/BountyStrike/Emissary
|
||||
category: tool
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Go
|
||||
tags:
|
||||
- notify
|
||||
tags: [notify]
|
||||
|
@ -4,9 +4,6 @@ description: 'Making Favicon.ico based Recon Great again ! '
|
||||
url: https://github.com/devanshbatham/FavFreak
|
||||
category: tool
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags: []
|
||||
|
@ -4,10 +4,6 @@ description: Find exploits in local and online databases instantly
|
||||
url: https://github.com/1N3/Findsploit
|
||||
category: tool
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Shell
|
||||
tags:
|
||||
- exploit
|
||||
tags: [exploit]
|
||||
|
@ -1,13 +1,10 @@
|
||||
---
|
||||
name: Firefox Multi-Account Containers
|
||||
description: Firefox Multi-Account Containers lets you keep parts of your online life separated into color-coded tabs
|
||||
description: Firefox Multi-Account Containers lets you keep parts of your online life
|
||||
separated into color-coded tabs
|
||||
url: https://github.com/mozilla/multi-account-containers
|
||||
category: browser-addon
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- firefox
|
||||
platform: [linux, macos, windows, firefox]
|
||||
lang: JavaScript
|
||||
tags: []
|
||||
|
@ -4,10 +4,6 @@ description: Minimalized Test Cache Poisoning
|
||||
url: https://github.com/tismayil/fockcache
|
||||
category: tool
|
||||
type: Scanner
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Go
|
||||
tags:
|
||||
- cache-vuln
|
||||
tags: [cache-vuln]
|
||||
|
@ -1,14 +1,11 @@
|
||||
---
|
||||
name: GAP
|
||||
description: This is an evolution of the original getAllParams extension for Burp. Not only does it find more potential parameters for you to investigate, but it also finds potential links to try these parameters on.
|
||||
description: This is an evolution of the original getAllParams extension for Burp.
|
||||
Not only does it find more potential parameters for you to investigate, but it also
|
||||
finds potential links to try these parameters on.
|
||||
url: https://github.com/xnl-h4ck3r/GAP-Burp-Extension
|
||||
category: tool-addon
|
||||
type: Fuzzer
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- burpsuite
|
||||
platform: [linux, macos, windows, burpsuite]
|
||||
lang: Python
|
||||
tags:
|
||||
- param
|
||||
tags: [param]
|
||||
|
@ -1,13 +1,10 @@
|
||||
---
|
||||
name: GadgetProbe
|
||||
description: Probe endpoints consuming Java serialized objects to identify classes, libraries, and library versions on remote Java classpaths.
|
||||
description: Probe endpoints consuming Java serialized objects to identify classes,
|
||||
libraries, and library versions on remote Java classpaths.
|
||||
url: https://github.com/BishopFox/GadgetProbe
|
||||
category: tool
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Java
|
||||
tags:
|
||||
- deserialize
|
||||
tags: [deserialize]
|
||||
|
@ -5,9 +5,6 @@ description: 'GF Paterns For (ssrf,RCE,Lfi,sqli,ssti,idor,url redirection,debug_
|
||||
url: https://github.com/1ndianl33t/Gf-Patterns
|
||||
category: tool
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
lang:
|
||||
tags:
|
||||
platform: [linux, macos, windows]
|
||||
lang:
|
||||
tags:
|
||||
|
@ -4,9 +4,6 @@ description: 'Tool for advanced mining for content on Github '
|
||||
url: https://github.com/UnkL4b/GitMiner
|
||||
category: tool
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags: []
|
||||
|
@ -4,10 +4,6 @@ description: A CLI-based HTTP intercept and replay proxy
|
||||
url: https://github.com/denandz/glorp
|
||||
category: tool
|
||||
type: Proxy
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Go
|
||||
tags:
|
||||
- mitmproxy
|
||||
tags: [mitmproxy]
|
||||
|
@ -4,9 +4,6 @@ description: Application Security Automation
|
||||
url: https://github.com/OWASP/glue
|
||||
category: tool
|
||||
type: Env
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Ruby
|
||||
tags: []
|
||||
tags: []
|
||||
|
@ -5,10 +5,6 @@ description: 'This tool generates gopher link for exploiting SSRF and gaining RC
|
||||
url: https://github.com/tarunkant/Gopherus
|
||||
category: tool
|
||||
type: Exploit
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags:
|
||||
- ssrf
|
||||
tags: [ssrf]
|
||||
|
@ -5,10 +5,6 @@ description: GraphQLmap is a scripting engine to interact with a graphql endpoin
|
||||
url: https://github.com/swisskyrepo/GraphQLmap
|
||||
category: tool
|
||||
type: Fuzzer
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags:
|
||||
- graphql
|
||||
tags: [graphql]
|
||||
|
@ -5,9 +5,6 @@ description: HTTP Request Smuggling demonstration Perl script, for variants 1, 2
|
||||
url: https://github.com/SafeBreach-Labs/HRS
|
||||
category: tool
|
||||
type: Scanner
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Perl
|
||||
tags: []
|
||||
|
@ -1,13 +1,10 @@
|
||||
---
|
||||
name: HTTPSignatures
|
||||
description: A Burp Suite extension implementing the Signing HTTP Messages draft-ietf-httpbis-message-signatures-01 draft.
|
||||
description: A Burp Suite extension implementing the Signing HTTP Messages draft-ietf-httpbis-message-signatures-01
|
||||
draft.
|
||||
url: https://github.com/nccgroup/HTTPSignatures
|
||||
category: tool-addon
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- burpsuite
|
||||
platform: [linux, macos, windows, burpsuite]
|
||||
lang: Java
|
||||
tags: []
|
||||
|
@ -1,14 +1,9 @@
|
||||
---
|
||||
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
|
||||
platform: [linux, macos, windows, zap, burpsuite]
|
||||
lang: Kotlin
|
||||
tags:
|
||||
- param
|
||||
tags: [param]
|
||||
|
@ -1,12 +1,9 @@
|
||||
---
|
||||
name: Hack-Tools
|
||||
description: "The all-in-one Red Team extension for Web Pentester \U0001F6E0"
|
||||
description: The all-in-one Red Team extension for Web Pentester 🛠
|
||||
url: https://github.com/LasCC/Hack-Tools
|
||||
category: browser-addon
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: TypeScript
|
||||
tags: []
|
||||
|
@ -4,10 +4,6 @@ description: Recon tool for discovering hostnames using OSINT techniques.
|
||||
url: https://github.com/SpiderLabs/HostHunter
|
||||
category: tool
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags:
|
||||
- osint
|
||||
tags: [osint]
|
||||
|
@ -1,12 +1,10 @@
|
||||
---
|
||||
name: Hunt3r
|
||||
description: 'Made your bugbounty subdomains reconnaissance easier with Hunt3r the web application reconnaissance framework'
|
||||
description: Made your bugbounty subdomains reconnaissance easier with Hunt3r the
|
||||
web application reconnaissance framework
|
||||
url: https://github.com/EasyRecon/Hunt3r
|
||||
category: tool
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Ruby
|
||||
tags: []
|
||||
|
@ -4,9 +4,6 @@ description: All In One, Fast, Easy Recon Tool
|
||||
url: https://github.com/aufzayed/HydraRecon
|
||||
category: tool
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags: []
|
||||
|
@ -4,10 +4,6 @@ description:
|
||||
url: https://github.com/1N3/IntruderPayloads
|
||||
category: tool
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- burpsuite
|
||||
platform: [linux, macos, windows, burpsuite]
|
||||
lang: BlitzBasic
|
||||
tags: []
|
||||
|
@ -4,10 +4,6 @@ description: 'Automation for javascript recon in bug bounty. '
|
||||
url: https://github.com/KathanP19/JSFScan.sh
|
||||
category: tool
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Shell
|
||||
tags:
|
||||
- js-analysis
|
||||
tags: [js-analysis]
|
||||
|
@ -4,9 +4,6 @@ description: 'Totally Automatic LFI Exploiter (+ Reverse Shell) and Scanner '
|
||||
url: https://github.com/D35m0nd142/LFISuite
|
||||
category: tool
|
||||
type: Scanner
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags: []
|
||||
|
@ -4,10 +4,6 @@ description: Subdomain finder
|
||||
url: https://github.com/gfek/Lepus
|
||||
category: tool
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags:
|
||||
- subdomains
|
||||
tags: [subdomains]
|
||||
|
@ -4,10 +4,6 @@ description: 'A python script that finds endpoints in JavaScript files '
|
||||
url: https://github.com/GerbenJavado/LinkFinder
|
||||
category: tool
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags:
|
||||
- js-analysis
|
||||
tags: [js-analysis]
|
||||
|
@ -4,11 +4,6 @@ description: Proxy Switch in Firefox and Chrome
|
||||
url: https://proxy-offline-browser.com/ProxySwitch/
|
||||
category: browser-addon
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- firefox
|
||||
- chrome
|
||||
platform: [linux, macos, windows, firefox, chrome]
|
||||
lang: JavaScript
|
||||
tags: []
|
||||
|
@ -5,9 +5,6 @@ description: 'Automated NoSQL database enumeration and web application exploitat
|
||||
url: https://github.com/codingo/NoSQLMap
|
||||
category: tool
|
||||
type: Scanner
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags: []
|
||||
|
@ -4,9 +4,6 @@ description: 'OneForAll是一款功能强大的子域收集工具 '
|
||||
url: https://github.com/shmilylty/OneForAll
|
||||
category: tool
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags: []
|
||||
|
@ -4,9 +4,6 @@ description: A Fuzzer for OpenRedirect issues
|
||||
url: https://github.com/devanshbatham/OpenRedireX
|
||||
category: tool
|
||||
type: Scanner
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags: []
|
||||
|
@ -4,9 +4,6 @@ description: Open Redirection Analyzer
|
||||
url: https://github.com/r0075h3ll/Oralyzer
|
||||
category: tool
|
||||
type: Scanner
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags: []
|
||||
|
@ -5,9 +5,6 @@ description: 'Fully automated offensive security framework for reconnaissance an
|
||||
url: https://github.com/j3ssie/Osmedeus
|
||||
category: tool
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Go
|
||||
tags: []
|
||||
|
@ -4,9 +4,6 @@ description: Client Side Prototype Pollution Scanner
|
||||
url: https://github.com/msrkp/PPScan
|
||||
category: tool
|
||||
type: Scanner
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: JavaScript
|
||||
tags: []
|
||||
|
@ -4,11 +4,6 @@ description: This tool for brute discover GET and POST parameters.
|
||||
url: https://github.com/Bo0oM/ParamPamPam
|
||||
category: tool
|
||||
type: Fuzzer
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags:
|
||||
- param
|
||||
- cache-vuln
|
||||
tags: [param, cache-vuln]
|
||||
|
@ -4,10 +4,6 @@ description: 'Mining parameters from dark corners of Web Archives '
|
||||
url: https://github.com/devanshbatham/ParamSpider
|
||||
category: tool
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags:
|
||||
- param
|
||||
tags: [param]
|
||||
|
@ -4,10 +4,6 @@ description: 'Heuristic Vulnerable Parameter Scanner '
|
||||
url: https://github.com/s0md3v/Parth
|
||||
category: tool
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags:
|
||||
- param
|
||||
tags: [param]
|
||||
|
@ -5,9 +5,6 @@ description: 'A list of useful payloads and bypass for Web Application Security
|
||||
url: https://github.com/swisskyrepo/PayloadsAllTheThings
|
||||
category: tool
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags: []
|
||||
|
@ -4,10 +4,6 @@ description: hahwul's online tools
|
||||
url: https://www.hahwul.com/phoenix/
|
||||
category: tool
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: JavaScript
|
||||
tags:
|
||||
- online
|
||||
tags: [online]
|
||||
|
@ -4,11 +4,6 @@ description: 'Incredibly fast crawler designed for OSINT. '
|
||||
url: https://github.com/s0md3v/Photon
|
||||
category: tool
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags:
|
||||
- osint
|
||||
- crawl
|
||||
tags: [osint, crawl]
|
||||
|
@ -1,12 +1,9 @@
|
||||
---
|
||||
name: PoC-in-GitHub
|
||||
description: "\U0001F4E1 PoC auto collect from GitHub. Be careful malware."
|
||||
description: 📡 PoC auto collect from GitHub. Be careful malware.
|
||||
url: https://github.com/nomi-sec/PoC-in-GitHub
|
||||
category: tool
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
lang:
|
||||
platform: [linux, macos, windows]
|
||||
lang:
|
||||
tags: []
|
||||
|
@ -4,11 +4,6 @@ description: Firefox/Burp extension that provide usefull tools for your security
|
||||
url: https://github.com/yeswehack/PwnFox
|
||||
category: browser-addon
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
- firefox
|
||||
- burpsuite
|
||||
platform: [linux, macos, windows, firefox, burpsuite]
|
||||
lang: JavaScript
|
||||
tags: []
|
||||
|
@ -1,13 +1,10 @@
|
||||
---
|
||||
name: REcollapse
|
||||
description: REcollapse is a helper tool for black-box regex fuzzing to bypass validations and discover normalizations in web applications
|
||||
description: REcollapse is a helper tool for black-box regex fuzzing to bypass validations
|
||||
and discover normalizations in web applications
|
||||
url: https://github.com/0xacb/recollapse
|
||||
category: tool
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags:
|
||||
- fuzz
|
||||
tags: [fuzz]
|
||||
|
@ -1,13 +1,9 @@
|
||||
---
|
||||
name: Redcloud
|
||||
description: 'Automated Red Team Infrastructure deployement using Docker'
|
||||
description: Automated Red Team Infrastructure deployement using Docker
|
||||
url: https://github.com/khast3x/Redcloud
|
||||
category: tool
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags:
|
||||
- infra
|
||||
tags: [infra]
|
||||
|
@ -1,15 +1,10 @@
|
||||
---
|
||||
name: Ronin
|
||||
description: Ronin is a free and Open Source Ruby toolkit for security research and development.
|
||||
description: Ronin is a free and Open Source Ruby toolkit for security research and
|
||||
development.
|
||||
url: https://github.com/ronin-rb/ronin
|
||||
category: tool
|
||||
type: Utils
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Ruby
|
||||
tags:
|
||||
- payload
|
||||
- http
|
||||
- pentest
|
||||
tags: [payload, http, pentest]
|
||||
|
@ -4,10 +4,6 @@ description: 'Faster Nmap Scanning with Rust '
|
||||
url: https://github.com/brandonskerritt/RustScan
|
||||
category: tool
|
||||
type: Recon
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Rust
|
||||
tags:
|
||||
- portscan
|
||||
tags: [portscan]
|
||||
|
@ -4,10 +4,6 @@ description: 'Scan for open AWS S3 buckets and dump the contents '
|
||||
url: https://github.com/sa7mon/S3Scanner
|
||||
category: tool
|
||||
type: Scanner
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags:
|
||||
- s3
|
||||
tags: [s3]
|
||||
|
@ -4,10 +4,6 @@ description: Hunting For Secrets Uploaded To Public S3 Buckets
|
||||
url: https://github.com/Eilonh/s3crets_scanner
|
||||
category: tool
|
||||
type: Scanner
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags:
|
||||
- s3
|
||||
tags: [s3]
|
||||
|
@ -4,9 +4,6 @@ description: Sqlninja is a tool targeted to exploit SQL Injection vulnerabilitie
|
||||
url: https://gitlab.com/kalilinux/packages/sqlninja
|
||||
category: tool
|
||||
type: Exploit
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
platform: [linux, macos]
|
||||
lang: Perl
|
||||
tags:
|
||||
- sqli
|
||||
tags: [sqli]
|
||||
|
@ -1,12 +1,10 @@
|
||||
---
|
||||
name: SSRFire
|
||||
description: An automated SSRF finder. Just give the domain name and your server and chill
|
||||
description: An automated SSRF finder. Just give the domain name and your server and
|
||||
chill
|
||||
url: https://github.com/ksharinarayanan/SSRFire
|
||||
category: tool
|
||||
type: Fuzzer
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
platform: [linux, macos]
|
||||
lang: Shell
|
||||
tags:
|
||||
- ssrf
|
||||
tags: [ssrf]
|
||||
|
@ -4,10 +4,6 @@ description: 'Automatic SSRF fuzzer and exploitation tool '
|
||||
url: https://github.com/swisskyrepo/SSRFmap
|
||||
category: tool
|
||||
type: Fuzzer
|
||||
platform:
|
||||
- linux
|
||||
- macos
|
||||
- windows
|
||||
platform: [linux, macos, windows]
|
||||
lang: Python
|
||||
tags:
|
||||
- ssrf
|
||||
tags: [ssrf]
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user