WebHackersWeapons/scripts/erb.rb

172 lines
5.3 KiB
Ruby
Raw Normal View History

require 'erb'
2022-08-16 16:11:14 +00:00
require 'yaml'
2022-08-17 14:05:58 +00:00
def generate_badge array
badge = ""
array.each { |t|
case t
when 'linux'
2022-08-17 14:15:58 +00:00
badge = badge + "![linux](./images/linux.png)"
2022-08-17 14:05:58 +00:00
when 'windows'
2022-08-17 14:15:58 +00:00
badge = badge + "![windows](./images/windows.png)"
2022-08-17 14:05:58 +00:00
when 'macos'
2022-08-17 14:15:58 +00:00
badge = badge + "![macos](./images/apple.png)"
2022-08-17 14:05:58 +00:00
when 'firefox'
2022-08-17 14:15:58 +00:00
badge = badge + "![firefox](./images/firefox.png)"
2022-08-17 14:05:58 +00:00
when 'safari'
2022-08-17 14:15:58 +00:00
badge = badge + "![safari](./images/safari.png)"
2022-08-17 14:05:58 +00:00
when 'chrome'
2022-08-17 14:15:58 +00:00
badge = badge + "![chrome](./images/chrome.png)"
2022-08-17 14:27:51 +00:00
when 'burpsuite'
badge = badge + "![burp](./images/burp.png)"
when 'zap'
badge = badge + "![zap](./images/zap.png)"
2022-08-17 14:05:58 +00:00
end
}
return badge
2022-08-16 16:11:14 +00:00
end
2022-08-17 16:04:58 +00:00
def generate_tags array
tags = ""
array.each { |t|
tags = tags + "`#{t}` "
}
return tags
end
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">
<img src="https://github.com/hahwul/WebHackersWeapons/workflows/Build/badge.svg">
<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 11:48:09 +00:00
A collection of awesome tools used by Web hackers. Happy hacking , Happy bug-hunting
## 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 14:30:21 +00:00
- [Tools](#tools)
- [Bookmarklets](#bookmarklets)
- [Browser Addons](#browser-addons)
- [Burp and ZAP Addons](#burpsuite-and-zap-addons)
- [Contribute](CONTRIBUTING.md)
- [Thanks to contributor](#thanks-to-contributor)
2022-08-16 11:48:09 +00:00
## Weapons
2022-08-19 05:33:44 +00:00
*Attributes*
| | Attributes |
|-------|---------------------------------------------------|
2022-08-19 07:26:26 +00:00
| Types | `Army-Knife` `Recon` `Fuzzer` `Scanner` `Exploit` `Utils` `Etc`|
2022-08-19 05:33:44 +00:00
| Tags | <%= tags.uniq.join ' ' %> |
| Langs | <%= langs.uniq.join ' ' %> |
2022-08-17 14:48:01 +00:00
2022-08-16 11:48:09 +00:00
### Tools
<%= tools %>
2022-08-16 11:48:09 +00:00
### Bookmarklets
<%= bookmarklets %>
### Browser Addons
<%= browser_addons %>
### Burpsuite and ZAP Addons
2022-08-16 16:11:14 +00:00
<%= tool_addons %>
## Thanks to (Contributor)
2022-08-19 14:55:56 +00: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)
}.gsub(/^ /, '')
2022-08-16 16:11:14 +00:00
2022-08-19 05:33:44 +00:00
tags = []
langs = []
head = "| Type | Name | Description | Star | Tags | Badges |\n"
head = head + "| --- | --- | --- | --- | --- | --- |"
2022-08-16 16:11:14 +00:00
tools = head + "\n"
bookmarklets = head + "\n"
browser_addons = head + "\n"
tool_addons = head + "\n"
2022-08-19 05:33:44 +00:00
weapons = []
weapons_obj = {
2022-08-19 07:26:26 +00:00
"army-knife" => [],
2022-08-19 05:33:44 +00:00
"recon"=> [],
"fuzzer"=> [],
"scanner"=> [],
"exploit"=> [],
"utils"=> [],
"etc"=> []
}
2022-08-16 16:11:14 +00:00
Dir.entries("./weapons/").each do | name |
2022-08-17 14:33:50 +00:00
if name != '.' && name != '..'
begin
data = YAML.load(File.open("./weapons/#{name}"))
2022-08-19 05:33:44 +00:00
if data['type'] != "" && data['type'] != nil
weapons_obj[data['type'].downcase].push data
2022-08-17 14:33:50 +00:00
else
2022-08-19 05:33:44 +00:00
weapons_obj['etc'].push data
2022-08-17 14:33:50 +00:00
end
rescue => e
puts e
2022-08-16 16:11:14 +00:00
end
end
end
2022-08-19 05:33:44 +00: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
markdown = ERB.new(template, trim_mode: "%<>")
2022-08-17 14:15:01 +00:00
#puts markdown.result
File.write './README.md', markdown.result