mirror of
https://github.com/hahwul/WebHackersWeapons.git
synced 2024-12-17 19:54:24 -05:00
update
This commit is contained in:
parent
aea24edd4c
commit
8693b155c7
@ -1,4 +1,9 @@
|
||||
require 'erb'
|
||||
require 'yaml'
|
||||
|
||||
def generate_badge
|
||||
|
||||
end
|
||||
|
||||
template = %q{
|
||||
<h1 align="center">
|
||||
@ -36,17 +41,53 @@ A collection of awesome tools used by Web hackers. Happy hacking , Happy bug-hun
|
||||
<%= browser_addons %>
|
||||
|
||||
### Burpsuite and ZAP Addons
|
||||
<%= burpzap_addons %>
|
||||
<%= tool_addons %>
|
||||
|
||||
## Thanks to (Contributor)
|
||||
I would like to thank everyone who helped with this project 👍😎
|
||||
![](/images/CONTRIBUTORS.svg)
|
||||
|
||||
}.gsub(/^ /, '')
|
||||
tools = 4414
|
||||
bookmarklets = 111
|
||||
browser_addons = 111
|
||||
burpzap_addons = 111
|
||||
|
||||
head = "| Type | Name | Description | Badges | Popularity |\n"
|
||||
head = head + "| --- | --- | --- | --- | --- |"
|
||||
tools = head + "\n"
|
||||
bookmarklets = head + "\n"
|
||||
browser_addons = head + "\n"
|
||||
tool_addons = head + "\n"
|
||||
|
||||
Dir.entries("./weapons/").each do | name |
|
||||
begin
|
||||
data = YAML.load(File.open("./weapons/#{name}"))
|
||||
name = data['name']
|
||||
popularity = "x"
|
||||
|
||||
if data['url'].length > 0
|
||||
name = "[#{name}](#{data['url']})"
|
||||
end
|
||||
|
||||
if data['url'].include? "github.com"
|
||||
split_result = data['url'].split "//github.com/"
|
||||
popularity = "![](https://img.shields.io/github/stars/#{split_result[1]})"
|
||||
end
|
||||
badge = generate_badge
|
||||
line = "|#{data['types']}|#{name}|#{data['description']}|#{badge}|#{popularity}|"
|
||||
case data['category']
|
||||
when 'tool'
|
||||
tools = tools + line + "\n"
|
||||
when 'tool-addon'
|
||||
tool_addons = tool_addons + line + "\n"
|
||||
when 'browser-addon'
|
||||
browser_addons = browser_addons + line + "\n"
|
||||
when 'bookmarklet'
|
||||
bookmarklets = bookmarklets + line + "\n"
|
||||
else
|
||||
puts name
|
||||
end
|
||||
rescue => e
|
||||
puts e
|
||||
end
|
||||
end
|
||||
|
||||
markdown = ERB.new(template, trim_mode: "%<>")
|
||||
puts markdown.result
|
@ -40,8 +40,14 @@ def get_browser str
|
||||
return lst
|
||||
end
|
||||
|
||||
def get_urls str
|
||||
return URI.extract(str).uniq
|
||||
def get_url str
|
||||
urls = URI.extract(str).uniq
|
||||
urls.each do |url|
|
||||
if !url.include? "img.shields.io"
|
||||
return url.gsub(")","")
|
||||
end
|
||||
end
|
||||
return ""
|
||||
end
|
||||
|
||||
def get_lang url
|
||||
@ -60,7 +66,7 @@ def migrate jsonfile, category
|
||||
new_obj = {}
|
||||
new_obj['name'] = name
|
||||
new_obj['description'] = obj['Description']
|
||||
new_obj['urls'] = get_urls obj['Data']
|
||||
new_obj['url'] = get_url obj['Data']
|
||||
new_obj['category'] = category
|
||||
new_obj['types'] = []
|
||||
if obj['Install'] != nil
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: 230-OOB
|
||||
description: An Out-of-Band XXE server for retrieving file contents over FTP.
|
||||
urls:
|
||||
- https://github.com/lc/230-OOB)
|
||||
- https://img.shields.io/github/stars/lc/230-OOB)
|
||||
- https://img.shields.io/github/languages/top/lc/230-OOB)
|
||||
url: https://github.com/lc/230-OOB
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -2,10 +2,7 @@
|
||||
name: 3klCon
|
||||
description: Automation Recon tool which works with Large & Medium scopes. It performs
|
||||
more than 20 tasks and gets back all the results in separated files.
|
||||
urls:
|
||||
- https://github.com/eslam3kl/3klCon)
|
||||
- https://img.shields.io/github/stars/eslam3kl/3klCon)
|
||||
- https://img.shields.io/github/languages/top/eslam3kl/3klCon)
|
||||
url: https://github.com/eslam3kl/3klCon
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: AWSBucketDump
|
||||
description: Security Tool to Look For Interesting Files in S3 Buckets
|
||||
urls:
|
||||
- https://github.com/jordanpotti/AWSBucketDump)
|
||||
- https://img.shields.io/github/stars/jordanpotti/AWSBucketDump)
|
||||
- https://img.shields.io/github/languages/top/jordanpotti/AWSBucketDump)
|
||||
url: https://github.com/jordanpotti/AWSBucketDump
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: Amass
|
||||
description: 'In-depth Attack Surface Mapping and Asset Discovery '
|
||||
urls:
|
||||
- https://github.com/OWASP/Amass)
|
||||
- https://img.shields.io/github/stars/OWASP/Amass)
|
||||
- https://img.shields.io/github/languages/top/OWASP/Amass)
|
||||
url: https://github.com/OWASP/Amass
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: Arjun
|
||||
description: 'HTTP parameter discovery suite. '
|
||||
urls:
|
||||
- https://github.com/s0md3v/Arjun)
|
||||
- https://img.shields.io/github/stars/s0md3v/Arjun)
|
||||
- https://img.shields.io/github/languages/top/s0md3v/Arjun)
|
||||
url: https://github.com/s0md3v/Arjun
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: Assetnote Wordlists
|
||||
description: Automated & Manual Wordlists provided by Assetnote
|
||||
urls:
|
||||
- https://github.com/assetnote/wordlists)
|
||||
- https://img.shields.io/github/stars/assetnote/wordlists)
|
||||
- https://img.shields.io/github/languages/top/assetnote/wordlists)
|
||||
url: https://github.com/assetnote/wordlists
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: Atlas
|
||||
description: 'Quick SQLMap Tamper Suggester '
|
||||
urls:
|
||||
- https://github.com/m4ll0k/Atlas)
|
||||
- https://img.shields.io/github/stars/m4ll0k/Atlas)
|
||||
- https://img.shields.io/github/languages/top/m4ll0k/Atlas)
|
||||
url: https://github.com/m4ll0k/Atlas
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: AuthMatrix
|
||||
description:
|
||||
urls:
|
||||
- https://github.com/SecurityInnovation/AuthMatrix)
|
||||
- https://img.shields.io/github/stars/SecurityInnovation/AuthMatrix)
|
||||
- https://img.shields.io/github/languages/top/SecurityInnovation/AuthMatrix)
|
||||
url: https://github.com/SecurityInnovation/AuthMatrix
|
||||
category: tool-addon
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: Autorize
|
||||
description:
|
||||
urls:
|
||||
- https://github.com/Quitten/Autorize)
|
||||
- https://img.shields.io/github/stars/Quitten/Autorize)
|
||||
- https://img.shields.io/github/languages/top/Quitten/Autorize)
|
||||
url: https://github.com/Quitten/Autorize
|
||||
category: tool-addon
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: Blacklist3r
|
||||
description: 'project-blacklist3r '
|
||||
urls:
|
||||
- https://github.com/NotSoSecure/Blacklist3r)
|
||||
- https://img.shields.io/github/stars/NotSoSecure/Blacklist3r)
|
||||
- https://img.shields.io/github/languages/top/NotSoSecure/Blacklist3r)
|
||||
url: https://github.com/NotSoSecure/Blacklist3r
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: BruteX
|
||||
description: Automatically brute force all services running on a target.
|
||||
urls:
|
||||
- https://github.com/1N3/BruteX)
|
||||
- https://img.shields.io/github/stars/1N3/BruteX)
|
||||
- https://img.shields.io/github/languages/top/1N3/BruteX)
|
||||
url: https://github.com/1N3/BruteX
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: Bug-Bounty-Toolz
|
||||
description: 'BBT - Bug Bounty Tools '
|
||||
urls:
|
||||
- https://github.com/m4ll0k/Bug-Bounty-Toolz)
|
||||
- https://img.shields.io/github/stars/m4ll0k/Bug-Bounty-Toolz)
|
||||
- https://img.shields.io/github/languages/top/m4ll0k/Bug-Bounty-Toolz)
|
||||
url: https://github.com/m4ll0k/Bug-Bounty-Toolz
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: BurpBounty
|
||||
description:
|
||||
urls:
|
||||
- https://github.com/wagiro/BurpBounty)
|
||||
- https://img.shields.io/github/stars/wagiro/BurpBounty)
|
||||
- https://img.shields.io/github/languages/top/wagiro/BurpBounty)
|
||||
url: https://github.com/wagiro/BurpBounty
|
||||
category: tool-addon
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: BurpCustomizer
|
||||
description: Because just a dark theme wasn't enough!
|
||||
urls:
|
||||
- https://github.com/CoreyD97/BurpCustomizer)
|
||||
- https://img.shields.io/github/stars/CoreyD97/BurpCustomizer)
|
||||
- https://img.shields.io/github/languages/top/CoreyD97/BurpCustomizer)
|
||||
url: https://github.com/CoreyD97/BurpCustomizer
|
||||
category: tool-addon
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: BurpJSLinkFinder
|
||||
description:
|
||||
urls:
|
||||
- https://github.com/InitRoot/BurpJSLinkFinder)
|
||||
- https://img.shields.io/github/stars/InitRoot/BurpJSLinkFinder)
|
||||
- https://img.shields.io/github/languages/top/InitRoot/BurpJSLinkFinder)
|
||||
url: https://github.com/InitRoot/BurpJSLinkFinder
|
||||
category: tool-addon
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: BurpSuite-Secret_Finder
|
||||
description:
|
||||
urls:
|
||||
- https://github.com/m4ll0k/BurpSuite-Secret_Finder)
|
||||
- https://img.shields.io/github/stars/m4ll0k/BurpSuite-Secret_Finder)
|
||||
- https://img.shields.io/github/languages/top/m4ll0k/BurpSuite-Secret_Finder)
|
||||
url: https://github.com/m4ll0k/BurpSuite-Secret_Finder
|
||||
category: tool-addon
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,9 +1,7 @@
|
||||
---
|
||||
name: BurpSuite
|
||||
description: the BurpSuite Project
|
||||
urls:
|
||||
- https://portswigger.net/burp)
|
||||
- https://img.shields.io/static/v1?label=&message=it's%20not%20github&color=gray)
|
||||
url: https://portswigger.net/burp
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: BurpSuiteHTTPSmuggler
|
||||
description:
|
||||
urls:
|
||||
- https://github.com/nccgroup/BurpSuiteHTTPSmuggler)
|
||||
- https://img.shields.io/github/stars/nccgroup/BurpSuiteHTTPSmuggler)
|
||||
- https://img.shields.io/github/languages/top/nccgroup/BurpSuiteHTTPSmuggler)
|
||||
url: https://github.com/nccgroup/BurpSuiteHTTPSmuggler
|
||||
category: tool-addon
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: BurpSuiteLoggerPlusPlus
|
||||
description:
|
||||
urls:
|
||||
- https://github.com/nccgroup/BurpSuiteLoggerPlusPlus)
|
||||
- https://img.shields.io/github/stars/nccgroup/BurpSuiteLoggerPlusPlus)
|
||||
- https://img.shields.io/github/languages/top/nccgroup/BurpSuiteLoggerPlusPlus)
|
||||
url: https://github.com/nccgroup/BurpSuiteLoggerPlusPlus
|
||||
category: tool-addon
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,9 +1,7 @@
|
||||
---
|
||||
name: CSP Evaluator
|
||||
description: " Online CSP Evaluator from google|![](https://img.shields.io/static/v1?label=&message=it%27s%20not%20github&color=gray) "
|
||||
urls:
|
||||
- https://csp-evaluator.withgoogle.com
|
||||
- https://img.shields.io/static/v1?label=&message=it%27s%20not%20github&color=gray)
|
||||
url: https://csp-evaluator.withgoogle.com
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -2,10 +2,7 @@
|
||||
name: CT_subdomains
|
||||
description: 'An hourly updated list of subdomains gathered from certificate transparency
|
||||
logs '
|
||||
urls:
|
||||
- https://github.com/internetwache/CT_subdomains)
|
||||
- https://img.shields.io/github/stars/internetwache/CT_subdomains)
|
||||
- https://img.shields.io/github/languages/top/internetwache/CT_subdomains)
|
||||
url: https://github.com/internetwache/CT_subdomains
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -2,9 +2,7 @@
|
||||
name: Chaos Web
|
||||
description: " actively scan and maintain internet-wide assets' data. enhance research
|
||||
and analyse changes around DNS for better insights.|![](https://img.shields.io/static/v1?label=&message=it%27s%20not%20github&color=gray)|![](https://img.shields.io/static/v1?label=&message=it%27s%20not%20github&color=gray)"
|
||||
urls:
|
||||
- https://chaos.projectdiscovery.io
|
||||
- https://img.shields.io/static/v1?label=&message=it%27s%20not%20github&color=gray)
|
||||
url: https://chaos.projectdiscovery.io
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -2,10 +2,7 @@
|
||||
name: Chromium-based-XSS-Taint-Tracking
|
||||
description: Cyclops is a web browser with XSS detection feature, it is chromium-based
|
||||
xss detection that used to find the flows from a source to a sink.
|
||||
urls:
|
||||
- https://github.com/v8blink/Chromium-based-XSS-Taint-Tracking)
|
||||
- https://img.shields.io/github/stars/v8blink/Chromium-based-XSS-Taint-Tracking)
|
||||
- https://img.shields.io/github/languages/top/v8blink/Chromium-based-XSS-Taint-Tracking)
|
||||
url: https://github.com/v8blink/Chromium-based-XSS-Taint-Tracking
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: CorsMe
|
||||
description: 'Cross Origin Resource Sharing MisConfiguration Scanner '
|
||||
urls:
|
||||
- https://github.com/Shivangx01b/CorsMe)
|
||||
- https://img.shields.io/github/stars/Shivangx01b/CorsMe)
|
||||
- https://img.shields.io/github/languages/top/Shivangx01b/CorsMe)
|
||||
url: https://github.com/Shivangx01b/CorsMe
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: Corsy
|
||||
description: 'CORS Misconfiguration Scanner '
|
||||
urls:
|
||||
- https://github.com/s0md3v/Corsy)
|
||||
- https://img.shields.io/github/stars/s0md3v/Corsy)
|
||||
- https://img.shields.io/github/languages/top/s0md3v/Corsy)
|
||||
url: https://github.com/s0md3v/Corsy
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -2,10 +2,7 @@
|
||||
name: CyberChef
|
||||
description: 'The Cyber Swiss Army Knife - a web app for encryption, encoding, compression
|
||||
and data analysis '
|
||||
urls:
|
||||
- https://github.com/gchq/CyberChef)
|
||||
- https://img.shields.io/github/stars/gchq/CyberChef)
|
||||
- https://img.shields.io/github/languages/top/gchq/CyberChef)
|
||||
url: https://github.com/gchq/CyberChef
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,9 +1,7 @@
|
||||
---
|
||||
name: DNSDumpster
|
||||
description: " Online dns recon & research, find & lookup dns records|![](https://img.shields.io/static/v1?label=&message=it%27s%20not%20github&color=gray) "
|
||||
urls:
|
||||
- https://dnsdumpster.com
|
||||
- https://img.shields.io/static/v1?label=&message=it%27s%20not%20github&color=gray)
|
||||
url: https://dnsdumpster.com
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -3,11 +3,7 @@ name: DOMPurify
|
||||
description: 'DOMPurify - a DOM-only, super-fast, uber-tolerant XSS sanitizer for
|
||||
HTML, MathML and SVG. DOMPurify works with a secure default, but offers a lot of
|
||||
configurability and hooks. Demo:'
|
||||
urls:
|
||||
- https://github.com/cure53/DOMPurify)
|
||||
- 'Demo:'
|
||||
- https://img.shields.io/github/stars/cure53/DOMPurify)
|
||||
- https://img.shields.io/github/languages/top/cure53/DOMPurify)
|
||||
url: https://github.com/cure53/DOMPurify
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: DSSS
|
||||
description: Damn Small SQLi Scanner
|
||||
urls:
|
||||
- https://github.com/stamparm/DSSS)
|
||||
- https://img.shields.io/github/stars/stamparm/DSSS)
|
||||
- https://img.shields.io/github/languages/top/stamparm/DSSS)
|
||||
url: https://github.com/stamparm/DSSS
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,9 +1,7 @@
|
||||
---
|
||||
name: Dark Reader
|
||||
description: Dark mode to any site
|
||||
urls:
|
||||
- https://chrome.google.com/webstore/detail/dark-reader/eimadpbcbfnmbkopoojfekhnkhdbieeh)
|
||||
- https://img.shields.io/static/v1?label=&message=it's%20not%20github&color=gray)
|
||||
url: https://chrome.google.com/webstore/detail/dark-reader/eimadpbcbfnmbkopoojfekhnkhdbieeh
|
||||
category: browser-addon
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,9 +1,7 @@
|
||||
---
|
||||
name: Dark Reader for Safari
|
||||
description: Dark mode to any site
|
||||
urls:
|
||||
- https://apps.apple.com/us/app/dark-reader-for-safari/id1438243180)
|
||||
- https://img.shields.io/static/v1?label=&message=it's%20not%20github&color=gray)
|
||||
url: https://apps.apple.com/us/app/dark-reader-for-safari/id1438243180
|
||||
category: browser-addon
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: DeepViolet
|
||||
description: Tool for introspection of SSL\TLS sessions
|
||||
urls:
|
||||
- https://github.com/spoofzu/DeepViolet)
|
||||
- https://img.shields.io/github/stars/spoofzu/DeepViolet)
|
||||
- https://img.shields.io/github/languages/top/spoofzu/DeepViolet)
|
||||
url: https://github.com/spoofzu/DeepViolet
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -2,10 +2,7 @@
|
||||
name: DirDar
|
||||
description: DirDar is a tool that searches for (403-Forbidden) directories to break
|
||||
it and get dir listing on it
|
||||
urls:
|
||||
- https://github.com/M4DM0e/DirDar)
|
||||
- https://img.shields.io/github/stars/M4DM0e/DirDar)
|
||||
- https://img.shields.io/github/languages/top/M4DM0e/DirDar)
|
||||
url: https://github.com/M4DM0e/DirDar
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: DotGit
|
||||
description: An extension for checking if .git is exposed in visited websites
|
||||
urls:
|
||||
- https://github.com/davtur19/DotGit)
|
||||
- https://img.shields.io/github/stars/davtur19/DotGit)
|
||||
- https://img.shields.io/github/languages/top/davtur19/DotGit)
|
||||
url: https://github.com/davtur19/DotGit
|
||||
category: browser-addon
|
||||
types: []
|
||||
platform:
|
||||
|
@ -2,10 +2,7 @@
|
||||
name: Edit-This-Cookie
|
||||
description: EditThisCookie is the famous Google Chrome/Chromium extension for editing
|
||||
cookies
|
||||
urls:
|
||||
- https://github.com/ETCExtensions/Edit-This-Cookie)
|
||||
- https://img.shields.io/github/stars/ETCExtensions/Edit-This-Cookie)
|
||||
- https://img.shields.io/github/languages/top/ETCExtensions/Edit-This-Cookie)
|
||||
url: https://github.com/ETCExtensions/Edit-This-Cookie
|
||||
category: browser-addon
|
||||
types: []
|
||||
platform:
|
||||
|
@ -2,10 +2,7 @@
|
||||
name: Emissary
|
||||
description: Send notifications on different channels such as Slack, Telegram, Discord
|
||||
etc.
|
||||
urls:
|
||||
- https://github.com/BountyStrike/Emissary)
|
||||
- https://img.shields.io/github/stars/BountyStrike/Emissary)
|
||||
- https://img.shields.io/github/languages/top/BountyStrike/Emissary)
|
||||
url: https://github.com/BountyStrike/Emissary
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: FavFreak
|
||||
description: 'Making Favicon.ico based Recon Great again ! '
|
||||
urls:
|
||||
- https://github.com/devanshbatham/FavFreak)
|
||||
- https://img.shields.io/github/stars/devanshbatham/FavFreak)
|
||||
- https://img.shields.io/github/languages/top/devanshbatham/FavFreak)
|
||||
url: https://github.com/devanshbatham/FavFreak
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: Findsploit
|
||||
description: Find exploits in local and online databases instantly
|
||||
urls:
|
||||
- https://github.com/1N3/Findsploit)
|
||||
- https://img.shields.io/github/stars/1N3/Findsploit)
|
||||
- https://img.shields.io/github/languages/top/1N3/Findsploit)
|
||||
url: https://github.com/1N3/Findsploit
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -2,10 +2,7 @@
|
||||
name: Gf-Patterns
|
||||
description: 'GF Paterns For (ssrf,RCE,Lfi,sqli,ssti,idor,url redirection,debug_logic)
|
||||
parameters grep '
|
||||
urls:
|
||||
- https://github.com/1ndianl33t/Gf-Patterns)
|
||||
- https://img.shields.io/github/stars/1ndianl33t/Gf-Patterns)
|
||||
- https://img.shields.io/github/languages/top/1ndianl33t/Gf-Patterns)
|
||||
url: https://github.com/1ndianl33t/Gf-Patterns
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: GitMiner
|
||||
description: 'Tool for advanced mining for content on Github '
|
||||
urls:
|
||||
- https://github.com/UnkL4b/GitMiner)
|
||||
- https://img.shields.io/github/stars/UnkL4b/GitMiner)
|
||||
- https://img.shields.io/github/languages/top/UnkL4b/GitMiner)
|
||||
url: https://github.com/UnkL4b/GitMiner
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -2,10 +2,7 @@
|
||||
name: Gopherus
|
||||
description: 'This tool generates gopher link for exploiting SSRF and gaining RCE
|
||||
in various servers '
|
||||
urls:
|
||||
- https://github.com/tarunkant/Gopherus)
|
||||
- https://img.shields.io/github/stars/tarunkant/Gopherus)
|
||||
- https://img.shields.io/github/languages/top/tarunkant/Gopherus)
|
||||
url: https://github.com/tarunkant/Gopherus
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -2,10 +2,7 @@
|
||||
name: GraphQLmap
|
||||
description: 'GraphQLmap is a scripting engine to interact with a graphql endpoint
|
||||
for pentesting purposes. '
|
||||
urls:
|
||||
- https://github.com/swisskyrepo/GraphQLmap)
|
||||
- https://img.shields.io/github/stars/swisskyrepo/GraphQLmap)
|
||||
- https://img.shields.io/github/languages/top/swisskyrepo/GraphQLmap)
|
||||
url: https://github.com/swisskyrepo/GraphQLmap
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -2,10 +2,7 @@
|
||||
name: HRS
|
||||
description: HTTP Request Smuggling demonstration Perl script, for variants 1, 2 and
|
||||
5 in my BlackHat US 2020 paper HTTP Request Smuggling in 2020.
|
||||
urls:
|
||||
- https://github.com/SafeBreach-Labs/HRS)
|
||||
- https://img.shields.io/github/stars/SafeBreach-Labs/HRS)
|
||||
- https://img.shields.io/github/languages/top/SafeBreach-Labs/HRS)
|
||||
url: https://github.com/SafeBreach-Labs/HRS
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: HUNT
|
||||
description:
|
||||
urls:
|
||||
- https://github.com/bugcrowd/HUNT)
|
||||
- https://img.shields.io/github/stars/bugcrowd/HUNT)
|
||||
- https://img.shields.io/github/languages/top/bugcrowd/HUNT)
|
||||
url: https://github.com/bugcrowd/HUNT
|
||||
category: tool-addon
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: Hack-Tools
|
||||
description: "The all-in-one Red Team extension for Web Pentester \U0001F6E0"
|
||||
urls:
|
||||
- https://github.com/LasCC/Hack-Tools)
|
||||
- https://img.shields.io/github/stars/LasCC/Hack-Tools)
|
||||
- https://img.shields.io/github/languages/top/LasCC/Hack-Tools)
|
||||
url: https://github.com/LasCC/Hack-Tools
|
||||
category: browser-addon
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: HydraRecon
|
||||
description: All In One, Fast, Easy Recon Tool
|
||||
urls:
|
||||
- https://github.com/aufzayed/HydraRecon)
|
||||
- https://img.shields.io/github/stars/aufzayed/HydraRecon)
|
||||
- https://img.shields.io/github/languages/top/aufzayed/HydraRecon)
|
||||
url: https://github.com/aufzayed/HydraRecon
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: IntruderPayloads
|
||||
description:
|
||||
urls:
|
||||
- https://github.com/1N3/IntruderPayloads)
|
||||
- https://img.shields.io/github/stars/1N3/IntruderPayloads)
|
||||
- https://img.shields.io/github/languages/top/1N3/IntruderPayloads)
|
||||
url: https://github.com/1N3/IntruderPayloads
|
||||
category: tool-addon
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: JSFScan.sh
|
||||
description: 'Automation for javascript recon in bug bounty. '
|
||||
urls:
|
||||
- https://github.com/KathanP19/JSFScan.sh)
|
||||
- https://img.shields.io/github/stars/KathanP19/JSFScan.sh)
|
||||
- https://img.shields.io/github/languages/top/KathanP19/JSFScan.sh)
|
||||
url: https://github.com/KathanP19/JSFScan.sh
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: LFISuite
|
||||
description: 'Totally Automatic LFI Exploiter (+ Reverse Shell) and Scanner '
|
||||
urls:
|
||||
- https://github.com/D35m0nd142/LFISuite)
|
||||
- https://img.shields.io/github/stars/D35m0nd142/LFISuite)
|
||||
- https://img.shields.io/github/languages/top/D35m0nd142/LFISuite)
|
||||
url: https://github.com/D35m0nd142/LFISuite
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: LinkFinder
|
||||
description: 'A python script that finds endpoints in JavaScript files '
|
||||
urls:
|
||||
- https://github.com/GerbenJavado/LinkFinder)
|
||||
- https://img.shields.io/github/stars/GerbenJavado/LinkFinder)
|
||||
- https://img.shields.io/github/languages/top/GerbenJavado/LinkFinder)
|
||||
url: https://github.com/GerbenJavado/LinkFinder
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,9 +1,7 @@
|
||||
---
|
||||
name: MM3 ProxySwitch
|
||||
description: Proxy Switch in Firefox and Chrome
|
||||
urls:
|
||||
- https://proxy-offline-browser.com/ProxySwitch/)
|
||||
- https://img.shields.io/static/v1?label=&message=it's%20not%20github&color=gray)
|
||||
url: https://proxy-offline-browser.com/ProxySwitch/
|
||||
category: browser-addon
|
||||
types: []
|
||||
platform:
|
||||
|
@ -2,10 +2,7 @@
|
||||
name: NoSQLMap
|
||||
description: 'Automated NoSQL database enumeration and web application exploitation
|
||||
tool. '
|
||||
urls:
|
||||
- https://github.com/codingo/NoSQLMap)
|
||||
- https://img.shields.io/github/stars/codingo/NoSQLMap)
|
||||
- https://img.shields.io/github/languages/top/codingo/NoSQLMap)
|
||||
url: https://github.com/codingo/NoSQLMap
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: OneForAll
|
||||
description: 'OneForAll是一款功能强大的子域收集工具 '
|
||||
urls:
|
||||
- https://github.com/shmilylty/OneForAll)
|
||||
- https://img.shields.io/github/stars/shmilylty/OneForAll)
|
||||
- https://img.shields.io/github/languages/top/shmilylty/OneForAll)
|
||||
url: https://github.com/shmilylty/OneForAll
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: OpenRedireX
|
||||
description: A Fuzzer for OpenRedirect issues
|
||||
urls:
|
||||
- https://github.com/devanshbatham/OpenRedireX)
|
||||
- https://img.shields.io/github/stars/devanshbatham/OpenRedireX)
|
||||
- https://img.shields.io/github/languages/top/devanshbatham/OpenRedireX)
|
||||
url: https://github.com/devanshbatham/OpenRedireX
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -2,10 +2,7 @@
|
||||
name: Osmedeus
|
||||
description: 'Fully automated offensive security framework for reconnaissance and
|
||||
vulnerability scanning '
|
||||
urls:
|
||||
- https://github.com/j3ssie/Osmedeus)
|
||||
- https://img.shields.io/github/stars/j3ssie/Osmedeus)
|
||||
- https://img.shields.io/github/languages/top/j3ssie/Osmedeus)
|
||||
url: https://github.com/j3ssie/Osmedeus
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: PPScan
|
||||
description: Client Side Prototype Pollution Scanner
|
||||
urls:
|
||||
- https://github.com/msrkp/PPScan)
|
||||
- https://img.shields.io/github/stars/msrkp/PPScan)
|
||||
- https://img.shields.io/github/languages/top/msrkp/PPScan)
|
||||
url: https://github.com/msrkp/PPScan
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: ParamSpider
|
||||
description: 'Mining parameters from dark corners of Web Archives '
|
||||
urls:
|
||||
- https://github.com/devanshbatham/ParamSpider)
|
||||
- https://img.shields.io/github/stars/devanshbatham/ParamSpider)
|
||||
- https://img.shields.io/github/languages/top/devanshbatham/ParamSpider)
|
||||
url: https://github.com/devanshbatham/ParamSpider
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: Parth
|
||||
description: 'Heuristic Vulnerable Parameter Scanner '
|
||||
urls:
|
||||
- https://github.com/s0md3v/Parth)
|
||||
- https://img.shields.io/github/stars/s0md3v/Parth)
|
||||
- https://img.shields.io/github/languages/top/s0md3v/Parth)
|
||||
url: https://github.com/s0md3v/Parth
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -2,10 +2,7 @@
|
||||
name: PayloadsAllTheThings
|
||||
description: 'A list of useful payloads and bypass for Web Application Security and
|
||||
Pentest/CTF '
|
||||
urls:
|
||||
- https://github.com/swisskyrepo/PayloadsAllTheThings)
|
||||
- https://img.shields.io/github/stars/swisskyrepo/PayloadsAllTheThings)
|
||||
- https://img.shields.io/github/languages/top/swisskyrepo/PayloadsAllTheThings)
|
||||
url: https://github.com/swisskyrepo/PayloadsAllTheThings
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,9 +1,7 @@
|
||||
---
|
||||
name: Phoenix
|
||||
description: " hahwul's online tools|![](https://img.shields.io/static/v1?label=&message=it%27s%20not%20github&color=gray) "
|
||||
urls:
|
||||
- https://www.hahwul.com/p/phoenix.html)
|
||||
- https://img.shields.io/static/v1?label=&message=it%27s%20not%20github&color=gray)
|
||||
url: https://www.hahwul.com/p/phoenix.html
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: Photon
|
||||
description: 'Incredibly fast crawler designed for OSINT. '
|
||||
urls:
|
||||
- https://github.com/s0md3v/Photon)
|
||||
- https://img.shields.io/github/stars/s0md3v/Photon)
|
||||
- https://img.shields.io/github/languages/top/s0md3v/Photon)
|
||||
url: https://github.com/s0md3v/Photon
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: PoC-in-GitHub
|
||||
description: "\U0001F4E1 PoC auto collect from GitHub. Be careful malware."
|
||||
urls:
|
||||
- https://github.com/nomi-sec/PoC-in-GitHub)
|
||||
- https://img.shields.io/github/stars/nomi-sec/PoC-in-GitHub)
|
||||
- https://img.shields.io/github/languages/top/nomi-sec/PoC-in-GitHub)
|
||||
url: https://github.com/nomi-sec/PoC-in-GitHub
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: RustScan
|
||||
description: 'Faster Nmap Scanning with Rust '
|
||||
urls:
|
||||
- https://github.com/brandonskerritt/RustScan)
|
||||
- https://img.shields.io/github/stars/brandonskerritt/RustScan)
|
||||
- https://img.shields.io/github/languages/top/brandonskerritt/RustScan)
|
||||
url: https://github.com/brandonskerritt/RustScan
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: S3Scanner
|
||||
description: 'Scan for open AWS S3 buckets and dump the contents '
|
||||
urls:
|
||||
- https://github.com/sa7mon/S3Scanner)
|
||||
- https://img.shields.io/github/stars/sa7mon/S3Scanner)
|
||||
- https://img.shields.io/github/languages/top/sa7mon/S3Scanner)
|
||||
url: https://github.com/sa7mon/S3Scanner
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,9 +1,7 @@
|
||||
---
|
||||
name: SQLNinja
|
||||
description: " SQL Injection scanner|![](https://img.shields.io/static/v1?label=&message=it%27s%20not%20github&color=gray) "
|
||||
urls:
|
||||
- https://gitlab.com/kalilinux/packages/sqlninja)
|
||||
- https://img.shields.io/static/v1?label=&message=it%27s%20not%20github&color=gray)
|
||||
url: https://gitlab.com/kalilinux/packages/sqlninja
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,9 +1,7 @@
|
||||
---
|
||||
name: SQL Ninja
|
||||
description: SQL Injection scanner
|
||||
urls:
|
||||
- https://gitlab.com/kalilinux/packages/sqlninja)
|
||||
- https://img.shields.io/static/v1?label=&message=it's%20not%20github&color=gray)
|
||||
url: https://gitlab.com/kalilinux/packages/sqlninja
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: SSRFmap
|
||||
description: 'Automatic SSRF fuzzer and exploitation tool '
|
||||
urls:
|
||||
- https://github.com/swisskyrepo/SSRFmap)
|
||||
- https://img.shields.io/github/stars/swisskyrepo/SSRFmap)
|
||||
- https://img.shields.io/github/languages/top/swisskyrepo/SSRFmap)
|
||||
url: https://github.com/swisskyrepo/SSRFmap
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: STEWS
|
||||
description: A Security Tool for Enumerating WebSockets
|
||||
urls:
|
||||
- https://github.com/PalindromeLabs/STEWS)
|
||||
- https://img.shields.io/github/stars/PalindromeLabs/STEWS)
|
||||
- https://img.shields.io/github/languages/top/PalindromeLabs/STEWS)
|
||||
url: https://github.com/PalindromeLabs/STEWS
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -4,10 +4,7 @@ description: 'SecLists is the security tester''s companion. It''s a collection o
|
||||
multiple types of lists used during security assessments, collected in one place.
|
||||
List types include usernames, passwords, URLs, sensitive data patterns, fuzzing
|
||||
payloads, web shells, and many more. '
|
||||
urls:
|
||||
- https://github.com/danielmiessler/SecLists)
|
||||
- https://img.shields.io/github/stars/danielmiessler/SecLists)
|
||||
- https://img.shields.io/github/languages/top/danielmiessler/SecLists)
|
||||
url: https://github.com/danielmiessler/SecLists
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -2,10 +2,7 @@
|
||||
name: SecretFinder
|
||||
description: 'SecretFinder - A python script for find sensitive data (apikeys, accesstoken,jwt,..)
|
||||
and search anything on javascript files '
|
||||
urls:
|
||||
- https://github.com/m4ll0k/SecretFinder)
|
||||
- https://img.shields.io/github/stars/m4ll0k/SecretFinder)
|
||||
- https://img.shields.io/github/languages/top/m4ll0k/SecretFinder)
|
||||
url: https://github.com/m4ll0k/SecretFinder
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,9 +1,7 @@
|
||||
---
|
||||
name: SecurityTrails
|
||||
description: " Online dns / subdomain / recon tool|![](https://img.shields.io/static/v1?label=&message=it%27s%20not%20github&color=gray) "
|
||||
urls:
|
||||
- https://securitytrails.com
|
||||
- https://img.shields.io/static/v1?label=&message=it%27s%20not%20github&color=gray)
|
||||
url: https://securitytrails.com
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,9 +1,7 @@
|
||||
---
|
||||
name: SequenceDiagram
|
||||
description: " Online tool for creating UML sequence diagrams|![](https://img.shields.io/static/v1?label=&message=it%27s%20not%20github&color=gray) "
|
||||
urls:
|
||||
- https://sequencediagram.org
|
||||
- https://img.shields.io/static/v1?label=&message=it%27s%20not%20github&color=gray)
|
||||
url: https://sequencediagram.org
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,9 +1,7 @@
|
||||
---
|
||||
name: Shodan
|
||||
description: " World's first search engine for Internet-connected devices|![](https://img.shields.io/static/v1?label=&message=it%27s%20not%20github&color=gray) "
|
||||
urls:
|
||||
- https://www.shodan.io/)
|
||||
- https://img.shields.io/static/v1?label=&message=it%27s%20not%20github&color=gray)
|
||||
url: https://www.shodan.io/
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: Silver
|
||||
description: 'Mass scan IPs for vulnerable services '
|
||||
urls:
|
||||
- https://github.com/s0md3v/Silver)
|
||||
- https://img.shields.io/github/stars/s0md3v/Silver)
|
||||
- https://img.shields.io/github/languages/top/s0md3v/Silver)
|
||||
url: https://github.com/s0md3v/Silver
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: Sn1per
|
||||
description: 'Automated pentest framework for offensive security experts '
|
||||
urls:
|
||||
- https://github.com/1N3/Sn1per)
|
||||
- https://img.shields.io/github/stars/1N3/Sn1per)
|
||||
- https://img.shields.io/github/languages/top/1N3/Sn1per)
|
||||
url: https://github.com/1N3/Sn1per
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: Stepper
|
||||
description:
|
||||
urls:
|
||||
- https://github.com/CoreyD97/Stepper)
|
||||
- https://img.shields.io/github/stars/CoreyD97/Stepper)
|
||||
- https://img.shields.io/github/languages/top/CoreyD97/Stepper)
|
||||
url: https://github.com/CoreyD97/Stepper
|
||||
category: tool-addon
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: Striker
|
||||
description: 'Striker is an offensive information and vulnerability scanner. '
|
||||
urls:
|
||||
- https://github.com/s0md3v/Striker)
|
||||
- https://img.shields.io/github/stars/s0md3v/Striker)
|
||||
- https://img.shields.io/github/languages/top/s0md3v/Striker)
|
||||
url: https://github.com/s0md3v/Striker
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: SubOver
|
||||
description: A Powerful Subdomain Takeover Tool
|
||||
urls:
|
||||
- https://github.com/Ice3man543/SubOver)
|
||||
- https://img.shields.io/github/stars/Ice3man543/SubOver)
|
||||
- https://img.shields.io/github/languages/top/Ice3man543/SubOver)
|
||||
url: https://github.com/Ice3man543/SubOver
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: Sublist3r
|
||||
description: 'Fast subdomains enumeration tool for penetration testers '
|
||||
urls:
|
||||
- https://github.com/aboul3la/Sublist3r)
|
||||
- https://img.shields.io/github/stars/aboul3la/Sublist3r)
|
||||
- https://img.shields.io/github/languages/top/aboul3la/Sublist3r)
|
||||
url: https://github.com/aboul3la/Sublist3r
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: Taipan
|
||||
description: Web application vulnerability scanner
|
||||
urls:
|
||||
- https://github.com/enkomio/Taipan)
|
||||
- https://img.shields.io/github/stars/enkomio/Taipan)
|
||||
- https://img.shields.io/github/languages/top/enkomio/Taipan)
|
||||
url: https://github.com/enkomio/Taipan
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: TukTuk
|
||||
description: 'Tool for catching and logging different types of requests. '
|
||||
urls:
|
||||
- https://github.com/ArturSS7/TukTuk)
|
||||
- https://img.shields.io/github/stars/ArturSS7/TukTuk)
|
||||
- https://img.shields.io/github/languages/top/ArturSS7/TukTuk)
|
||||
url: https://github.com/ArturSS7/TukTuk
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,9 +1,7 @@
|
||||
---
|
||||
name: User-Agent Switcher
|
||||
description: quick and easy way to switch between user-agents.
|
||||
urls:
|
||||
- https://chrome.google.com/webstore/detail/user-agent-switcher/clddifkhlkcojbojppdojfeeikdkgiae)
|
||||
- https://img.shields.io/static/v1?label=&message=it's%20not%20github&color=gray)
|
||||
url: https://chrome.google.com/webstore/detail/user-agent-switcher/clddifkhlkcojbojppdojfeeikdkgiae
|
||||
category: browser-addon
|
||||
types: []
|
||||
platform:
|
||||
|
@ -3,10 +3,7 @@ name: VHostScan
|
||||
description: 'A virtual host scanner that performs reverse lookups, can be used with
|
||||
pivot tools, detect catch-all scenarios, work around wildcards, aliases and dynamic
|
||||
default pages. '
|
||||
urls:
|
||||
- https://github.com/codingo/VHostScan)
|
||||
- https://img.shields.io/github/stars/codingo/VHostScan)
|
||||
- https://img.shields.io/github/languages/top/codingo/VHostScan)
|
||||
url: https://github.com/codingo/VHostScan
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,9 +1,7 @@
|
||||
---
|
||||
name: Wayback Machine
|
||||
description: History of website
|
||||
urls:
|
||||
- https://apps.apple.com/us/app/wayback-machine/id1472432422)
|
||||
- https://img.shields.io/static/v1?label=&message=it's%20not%20github&color=gray)
|
||||
url: https://apps.apple.com/us/app/wayback-machine/id1472432422
|
||||
category: browser-addon
|
||||
types: []
|
||||
platform:
|
||||
|
@ -2,11 +2,7 @@
|
||||
name: Web-Cache-Vulnerability-Scanner
|
||||
description: Web Cache Vulnerability Scanner is a Go-based CLI tool for testing for
|
||||
web cache poisoning. It is developed by Hackmanit GmbH (http://hackmanit.de/).
|
||||
urls:
|
||||
- https://github.com/Hackmanit/Web-Cache-Vulnerability-Scanner)
|
||||
- http://hackmanit.de/).
|
||||
- https://img.shields.io/github/stars/Hackmanit/Web-Cache-Vulnerability-Scanner)
|
||||
- https://img.shields.io/github/languages/top/Hackmanit/Web-Cache-Vulnerability-Scanner)
|
||||
url: https://github.com/Hackmanit/Web-Cache-Vulnerability-Scanner
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: XSRFProbe
|
||||
description: The Prime Cross Site Request Forgery (CSRF) Audit and Exploitation Toolkit.
|
||||
urls:
|
||||
- https://github.com/0xInfection/XSRFProbe)
|
||||
- https://img.shields.io/github/stars/0xInfection/XSRFProbe)
|
||||
- https://img.shields.io/github/languages/top/0xInfection/XSRFProbe)
|
||||
url: https://github.com/0xInfection/XSRFProbe
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: XSStrike
|
||||
description: 'Most advanced XSS scanner. '
|
||||
urls:
|
||||
- https://github.com/s0md3v/XSStrike)
|
||||
- https://img.shields.io/github/stars/s0md3v/XSStrike)
|
||||
- https://img.shields.io/github/languages/top/s0md3v/XSStrike)
|
||||
url: https://github.com/s0md3v/XSStrike
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: XSpear
|
||||
description: 'Powerfull XSS Scanning and Parameter analysis tool&gem '
|
||||
urls:
|
||||
- https://github.com/hahwul/XSpear)
|
||||
- https://img.shields.io/github/stars/hahwul/XSpear)
|
||||
- https://img.shields.io/github/languages/top/hahwul/XSpear)
|
||||
url: https://github.com/hahwul/XSpear
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -2,10 +2,7 @@
|
||||
name: XXEinjector
|
||||
description: Tool for automatic exploitation of XXE vulnerability using direct and
|
||||
different out of band methods.
|
||||
urls:
|
||||
- https://github.com/enjoiz/XXEinjector)
|
||||
- https://img.shields.io/github/stars/enjoiz/XXEinjector)
|
||||
- https://img.shields.io/github/languages/top/enjoiz/XXEinjector)
|
||||
url: https://github.com/enjoiz/XXEinjector
|
||||
category: tool
|
||||
types: []
|
||||
platform: []
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: a2sv
|
||||
description: 'Auto Scanning to SSL Vulnerability '
|
||||
urls:
|
||||
- https://github.com/hahwul/a2sv)
|
||||
- https://img.shields.io/github/stars/hahwul/a2sv)
|
||||
- https://img.shields.io/github/languages/top/hahwul/a2sv)
|
||||
url: https://github.com/hahwul/a2sv
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -2,10 +2,7 @@
|
||||
name: altdns
|
||||
description: 'Generates permutations, alterations and mutations of subdomains and
|
||||
then resolves them '
|
||||
urls:
|
||||
- https://github.com/infosec-au/altdns)
|
||||
- https://img.shields.io/github/stars/infosec-au/altdns)
|
||||
- https://img.shields.io/github/languages/top/infosec-au/altdns)
|
||||
url: https://github.com/infosec-au/altdns
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: anew
|
||||
description: A tool for adding new lines to files, skipping duplicates
|
||||
urls:
|
||||
- https://github.com/tomnomnom/anew)
|
||||
- https://img.shields.io/github/stars/tomnomnom/anew)
|
||||
- https://img.shields.io/github/languages/top/tomnomnom/anew)
|
||||
url: https://github.com/tomnomnom/anew
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: apkleaks
|
||||
description: 'Scanning APK file for URIs, endpoints & secrets. '
|
||||
urls:
|
||||
- https://github.com/dwisiswant0/apkleaks)
|
||||
- https://img.shields.io/github/stars/dwisiswant0/apkleaks)
|
||||
- https://img.shields.io/github/languages/top/dwisiswant0/apkleaks)
|
||||
url: https://github.com/dwisiswant0/apkleaks
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: aquatone
|
||||
description: 'A Tool for Domain Flyovers '
|
||||
urls:
|
||||
- https://github.com/michenriksen/aquatone)
|
||||
- https://img.shields.io/github/stars/michenriksen/aquatone)
|
||||
- https://img.shields.io/github/languages/top/michenriksen/aquatone)
|
||||
url: https://github.com/michenriksen/aquatone
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: arachni
|
||||
description: 'Web Application Security Scanner Framework '
|
||||
urls:
|
||||
- https://github.com/Arachni/arachni)
|
||||
- https://img.shields.io/github/stars/Arachni/arachni)
|
||||
- https://img.shields.io/github/languages/top/Arachni/arachni)
|
||||
url: https://github.com/Arachni/arachni
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: assetfinder
|
||||
description: 'Find domains and subdomains related to a given domain '
|
||||
urls:
|
||||
- https://github.com/tomnomnom/assetfinder)
|
||||
- https://img.shields.io/github/stars/tomnomnom/assetfinder)
|
||||
- https://img.shields.io/github/languages/top/tomnomnom/assetfinder)
|
||||
url: https://github.com/tomnomnom/assetfinder
|
||||
category: tool
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: attack-surface-detector-zap
|
||||
description:
|
||||
urls:
|
||||
- https://github.com/secdec/attack-surface-detector-zap)
|
||||
- https://img.shields.io/github/stars/secdec/attack-surface-detector-zap)
|
||||
- https://img.shields.io/github/languages/top/secdec/attack-surface-detector-zap)
|
||||
url: https://github.com/secdec/attack-surface-detector-zap
|
||||
category: tool-addon
|
||||
types: []
|
||||
platform:
|
||||
|
@ -1,10 +1,7 @@
|
||||
---
|
||||
name: auto-repeater
|
||||
description:
|
||||
urls:
|
||||
- https://github.com/PortSwigger/auto-repeater)
|
||||
- https://img.shields.io/github/stars/PortSwigger/auto-repeater)
|
||||
- https://img.shields.io/github/languages/top/PortSwigger/auto-repeater)
|
||||
url: https://github.com/PortSwigger/auto-repeater
|
||||
category: tool-addon
|
||||
types: []
|
||||
platform:
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user