2022-08-15 10:39:39 -04:00
|
|
|
|
require 'erb'
|
2022-08-16 12:11:14 -04:00
|
|
|
|
require 'yaml'
|
|
|
|
|
|
2022-08-17 10:05:58 -04:00
|
|
|
|
def generate_badge array
|
|
|
|
|
badge = ""
|
|
|
|
|
array.each { |t|
|
|
|
|
|
case t
|
|
|
|
|
when 'linux'
|
2022-08-17 10:15:58 -04:00
|
|
|
|
badge = badge + "![linux](./images/linux.png)"
|
2022-08-17 10:05:58 -04:00
|
|
|
|
when 'windows'
|
2022-08-17 10:15:58 -04:00
|
|
|
|
badge = badge + "![windows](./images/windows.png)"
|
2022-08-17 10:05:58 -04:00
|
|
|
|
when 'macos'
|
2022-08-17 10:15:58 -04:00
|
|
|
|
badge = badge + "![macos](./images/apple.png)"
|
2022-08-17 10:05:58 -04:00
|
|
|
|
when 'firefox'
|
2022-08-17 10:15:58 -04:00
|
|
|
|
badge = badge + "![firefox](./images/firefox.png)"
|
2022-08-17 10:05:58 -04:00
|
|
|
|
when 'safari'
|
2022-08-17 10:15:58 -04:00
|
|
|
|
badge = badge + "![safari](./images/safari.png)"
|
2022-08-17 10:05:58 -04:00
|
|
|
|
when 'chrome'
|
2022-08-17 10:15:58 -04:00
|
|
|
|
badge = badge + "![chrome](./images/chrome.png)"
|
2022-08-17 10:27:51 -04:00
|
|
|
|
when 'burpsuite'
|
|
|
|
|
badge = badge + "![burp](./images/burp.png)"
|
|
|
|
|
when 'zap'
|
|
|
|
|
badge = badge + "![zap](./images/zap.png)"
|
2022-08-17 10:05:58 -04:00
|
|
|
|
end
|
|
|
|
|
}
|
|
|
|
|
return badge
|
2022-08-16 12:11:14 -04:00
|
|
|
|
end
|
2022-08-15 10:39:39 -04:00
|
|
|
|
|
2022-08-17 12:04:58 -04:00
|
|
|
|
def generate_tags array
|
|
|
|
|
tags = ""
|
|
|
|
|
array.each { |t|
|
|
|
|
|
tags = tags + "`#{t}` "
|
|
|
|
|
}
|
|
|
|
|
return tags
|
|
|
|
|
end
|
|
|
|
|
|
2022-08-15 10:39:39 -04:00
|
|
|
|
template = %q{
|
|
|
|
|
<h1 align="center">
|
|
|
|
|
<br>
|
|
|
|
|
<a href=""><img src="https://user-images.githubusercontent.com/13212227/104400969-9f3d9280-5596-11eb-80f4-864effae95fc.png" alt="" width="500px;"></a>
|
|
|
|
|
<br>
|
|
|
|
|
<img src="https://img.shields.io/github/last-commit/hahwul/WebHackersWeapons?style=flat">
|
|
|
|
|
<img src="https://img.shields.io/badge/PRs-welcome-cyan">
|
2022-08-20 23:47:58 -04:00
|
|
|
|
<img src="https://github.com/hahwul/WebHackersWeapons/actions/workflows/deploy.yml/badge.svg">
|
2022-08-15 10:39:39 -04:00
|
|
|
|
<a href="https://twitter.com/intent/follow?screen_name=hahwul"><img src="https://img.shields.io/twitter/follow/hahwul?style=flat&logo=twitter"></a>
|
|
|
|
|
</h1>
|
2022-08-16 07:48:09 -04:00
|
|
|
|
A collection of awesome tools used by Web hackers. Happy hacking , Happy bug-hunting
|
2022-08-15 10:39:39 -04:00
|
|
|
|
|
|
|
|
|
## Family project
|
|
|
|
|
[![WebHackersWeapons](https://img.shields.io/github/stars/hahwul/WebHackersWeapons?label=WebHackersWeapons)](https://github.com/hahwul/WebHackersWeapons)
|
|
|
|
|
[![MobileHackersWeapons](https://img.shields.io/github/stars/hahwul/MobileHackersWeapons?label=MobileHackersWeapons)](https://github.com/hahwul/MobileHackersWeapons)
|
|
|
|
|
|
|
|
|
|
## Table of Contents
|
|
|
|
|
- [Weapons](#weapons)
|
2022-08-17 10:30:21 -04:00
|
|
|
|
- [Tools](#tools)
|
|
|
|
|
- [Bookmarklets](#bookmarklets)
|
|
|
|
|
- [Browser Addons](#browser-addons)
|
|
|
|
|
- [Burp and ZAP Addons](#burpsuite-and-zap-addons)
|
|
|
|
|
- [Contribute](CONTRIBUTING.md)
|
2022-08-15 10:39:39 -04:00
|
|
|
|
- [Thanks to contributor](#thanks-to-contributor)
|
|
|
|
|
|
2022-08-16 07:48:09 -04:00
|
|
|
|
## Weapons
|
2022-08-19 01:33:44 -04:00
|
|
|
|
*Attributes*
|
|
|
|
|
| | Attributes |
|
|
|
|
|
|-------|---------------------------------------------------|
|
2022-08-19 03:26:26 -04:00
|
|
|
|
| Types | `Army-Knife` `Recon` `Fuzzer` `Scanner` `Exploit` `Utils` `Etc`|
|
2022-08-19 01:33:44 -04:00
|
|
|
|
| Tags | <%= tags.uniq.join ' ' %> |
|
|
|
|
|
| Langs | <%= langs.uniq.join ' ' %> |
|
2022-08-17 10:48:01 -04:00
|
|
|
|
|
2022-08-16 07:48:09 -04:00
|
|
|
|
### Tools
|
|
|
|
|
<%= tools %>
|
2022-08-15 10:39:39 -04:00
|
|
|
|
|
2022-08-16 07:48:09 -04:00
|
|
|
|
### Bookmarklets
|
|
|
|
|
<%= bookmarklets %>
|
|
|
|
|
|
|
|
|
|
### Browser Addons
|
|
|
|
|
<%= browser_addons %>
|
|
|
|
|
|
|
|
|
|
### Burpsuite and ZAP Addons
|
2022-08-16 12:11:14 -04:00
|
|
|
|
<%= tool_addons %>
|
2022-08-15 10:39:39 -04:00
|
|
|
|
|
|
|
|
|
## Thanks to (Contributor)
|
2022-08-19 10:55:56 -04:00
|
|
|
|
WHW's open-source project and made it with ❤️ if you want contribute this project, please see [CONTRIBUTING.md](https://github.com/hahwul/WebHackersWeapons/blob/main/CONTRIBUTING.md) and Pull-Request with cool your contents.
|
|
|
|
|
|
|
|
|
|
[![](/images/CONTRIBUTORS.svg)](https://github.com/hahwul/WebHackersWeapons/graphs/contributors)
|
2022-08-15 10:39:39 -04:00
|
|
|
|
|
|
|
|
|
}.gsub(/^ /, '')
|
2022-08-16 12:11:14 -04:00
|
|
|
|
|
2022-08-19 01:33:44 -04:00
|
|
|
|
tags = []
|
|
|
|
|
langs = []
|
|
|
|
|
head = "| Type | Name | Description | Star | Tags | Badges |\n"
|
|
|
|
|
head = head + "| --- | --- | --- | --- | --- | --- |"
|
2022-08-16 12:11:14 -04:00
|
|
|
|
tools = head + "\n"
|
|
|
|
|
bookmarklets = head + "\n"
|
|
|
|
|
browser_addons = head + "\n"
|
|
|
|
|
tool_addons = head + "\n"
|
|
|
|
|
|
2022-08-19 01:33:44 -04:00
|
|
|
|
weapons = []
|
|
|
|
|
weapons_obj = {
|
2022-08-19 03:26:26 -04:00
|
|
|
|
"army-knife" => [],
|
2022-08-19 01:33:44 -04:00
|
|
|
|
"recon"=> [],
|
|
|
|
|
"fuzzer"=> [],
|
|
|
|
|
"scanner"=> [],
|
|
|
|
|
"exploit"=> [],
|
|
|
|
|
"utils"=> [],
|
|
|
|
|
"etc"=> []
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-16 12:11:14 -04:00
|
|
|
|
Dir.entries("./weapons/").each do | name |
|
2022-08-17 10:33:50 -04:00
|
|
|
|
if name != '.' && name != '..'
|
|
|
|
|
begin
|
|
|
|
|
data = YAML.load(File.open("./weapons/#{name}"))
|
2022-08-19 01:33:44 -04:00
|
|
|
|
if data['type'] != "" && data['type'] != nil
|
|
|
|
|
weapons_obj[data['type'].downcase].push data
|
2022-08-17 10:33:50 -04:00
|
|
|
|
else
|
2022-08-19 01:33:44 -04:00
|
|
|
|
weapons_obj['etc'].push data
|
2022-08-17 10:33:50 -04:00
|
|
|
|
end
|
|
|
|
|
rescue => e
|
|
|
|
|
puts e
|
2022-08-16 12:11:14 -04:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2022-08-19 01:33:44 -04:00
|
|
|
|
weapons_obj.each do |key,value|
|
|
|
|
|
weapons.concat value
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
weapons.each do | data |
|
|
|
|
|
begin
|
|
|
|
|
name = data['name']
|
|
|
|
|
temp_tags = []
|
|
|
|
|
data['tags'].each do |t|
|
|
|
|
|
temp_tags.push "`#{t}`"
|
|
|
|
|
end
|
|
|
|
|
tags.concat temp_tags
|
|
|
|
|
lang_badge = ""
|
|
|
|
|
if data['lang'].length > 0 && data['lang'] != "null"
|
|
|
|
|
langs.push "`#{data['lang']}`"
|
|
|
|
|
lang_badge = "![](./images/#{data['lang'].downcase}.png)"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
popularity = ""
|
|
|
|
|
|
|
|
|
|
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]}?label=%20)"
|
|
|
|
|
end
|
|
|
|
|
badge = generate_badge(data['platform'])
|
|
|
|
|
line = "|#{data['type']}|#{name}|#{data['description']}|#{popularity}|#{temp_tags.join ' '}|#{badge}#{lang_badge}|"
|
|
|
|
|
case data['category'].downcase
|
|
|
|
|
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
|
2022-08-15 10:39:39 -04:00
|
|
|
|
|
|
|
|
|
markdown = ERB.new(template, trim_mode: "%<>")
|
2022-08-17 10:15:01 -04:00
|
|
|
|
#puts markdown.result
|
|
|
|
|
File.write './README.md', markdown.result
|