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