Skip to content

Commit

Permalink
[FIX] #Fixed Typos by codespell
Browse files Browse the repository at this point in the history
  • Loading branch information
Z4nzu committed Mar 4, 2023
1 parent 1e64996 commit 2c5cbb3
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion tools/forensic_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def cli_mode(self):


class Guymager(HackingTool):
TITLE = "Disk Clone and ISO Image Aquire"
TITLE = "Disk Clone and ISO Image Acquire"
DESCRIPTION = "Guymager is a free forensic imager for media acquisition."
INSTALL_COMMANDS = ["sudo apt install guymager"]
RUN_COMMANDS = ["sudo guymager"]
Expand Down
6 changes: 3 additions & 3 deletions tools/information_gathering_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class RedHawk(HackingTool):


class ReconSpider(HackingTool):
TITLE = "ReconSpider(For All Scaning)"
TITLE = "ReconSpider(For All Scanning)"
DESCRIPTION = "ReconSpider is most Advanced Open Source Intelligence (OSINT)" \
" Framework for scanning IP Address, Emails, \n" \
"Websites, Organizations and find out information from" \
Expand Down Expand Up @@ -114,7 +114,7 @@ def open(self):

class Infoga(HackingTool):
TITLE = "Infoga - Email OSINT"
DESCRIPTION = "Infoga is a tool gathering email accounts informations\n" \
DESCRIPTION = "Infoga is a tool gathering email accounts information\n" \
"(ip, hostname, country,...) from different public source"
INSTALL_COMMANDS = [
"git clone https://github.com/m4ll0k/Infoga.git",
Expand Down Expand Up @@ -165,7 +165,7 @@ def __init__(self):

class Shodan(HackingTool):
TITLE = "Find Info Using Shodan"
DESCRIPTION = "Get ports, vulnerabilities, informations, banners,..etc \n " \
DESCRIPTION = "Get ports, vulnerabilities, information, banners,..etc \n " \
"for any IP with Shodan (no apikey! no rate limit!)\n" \
"[X] Don't use this tool because your ip will be blocked by Shodan!"
INSTALL_COMMANDS = ["git clone https://github.com/m4ll0k/Shodanfy.py.git"]
Expand Down
2 changes: 1 addition & 1 deletion tools/others/socialmedia_finder.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class FindUser(HackingTool):
class Sherlock(HackingTool):
TITLE = "Sherlock"
DESCRIPTION = "Hunt down social media accounts by username across social networks \n " \
"For More Usege \n" \
"For More Usage \n" \
"\t >>python3 sherlock --help"
INSTALL_COMMANDS = [
"git clone https://github.com/sherlock-project/sherlock.git",
Expand Down
2 changes: 1 addition & 1 deletion tools/payload_creator.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class Venom(HackingTool):
TITLE = "Venom Shellcode Generator"
DESCRIPTION = "venom 1.0.11 (malicious_server) was build to take " \
"advantage of \n apache2 webserver to deliver payloads " \
"(LAN) using a fake webpage writen in html"
"(LAN) using a fake webpage written in html"
INSTALL_COMMANDS = [
"sudo git clone https://github.com/r00t-3xp10it/venom.git",
"sudo chmod -R 775 venom*/ && cd venom*/ && cd aux && sudo bash setup.sh",
Expand Down
4 changes: 2 additions & 2 deletions tools/phising_attack.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class AdvPhishing(HackingTool):
class Setoolkit(HackingTool):
TITLE = "Setoolkit"
DESCRIPTION = "The Social-Engineer Toolkit is an open-source penetration\n" \
"testing framework designed for social enginee"
"testing framework designed for social engine"
INSTALL_COMMANDS = [
"git clone https://github.com/trustedsec/social-engineer-toolkit/",
"cd social-engineer-toolkit && sudo python3 setup.py"
Expand Down Expand Up @@ -92,7 +92,7 @@ class Evilginx2(HackingTool):
class ISeeYou(HackingTool):
TITLE = "I-See_You"
DESCRIPTION = "[!] ISeeYou is a tool to find Exact Location of Victom By" \
" User SocialEngineering or Phishing Engagment..\n" \
" User SocialEngineering or Phishing Engagement..\n" \
"[!] Users can expose their local servers to the Internet " \
"and decode the location coordinates by looking at the log file"
INSTALL_COMMANDS = [
Expand Down
2 changes: 1 addition & 1 deletion tools/webattack.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class Dirb(HackingTool):
DESCRIPTION = "DIRB is a Web Content Scanner. It looks for existing " \
"(and/or hidden) Web Objects.\n" \
"It basically works by launching a dictionary based " \
"attack against \n a web server and analizing the response."
"attack against \n a web server and analyzing the response."
INSTALL_COMMANDS = [
"sudo git clone https://gitlab.com/kalilinux/packages/dirb.git",
"cd dirb;sudo bash configure;make"
Expand Down
2 changes: 1 addition & 1 deletion tools/wireless_attack_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def run(self):

class BluePot(HackingTool):
TITLE = "Bluetooth Honeypot GUI Framework"
DESCRIPTION = "You need to have at least 1 bluetooh receiver " \
DESCRIPTION = "You need to have at least 1 bluetooth receiver " \
"(if you have many it will work with those, too).\n" \
"You must install/libbluetooth-dev on " \
"Ubuntu/bluez-libs-devel on Fedora/bluez-devel on openSUSE"
Expand Down
2 changes: 1 addition & 1 deletion tools/xss_attack.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def run(self):

class XSSStrike(HackingTool):
TITLE = "Advanced XSS Detection Suite"
DESCRIPTION = "XSStrike is a python script designed to detect and exploit XSS vulnerabilites."
DESCRIPTION = "XSStrike is a python script designed to detect and exploit XSS vulnerabilities."
INSTALL_COMMANDS = [
"sudo rm -rf XSStrike",
"git clone https://github.com/UltimateHackers/XSStrike.git "
Expand Down

0 comments on commit 2c5cbb3

Please sign in to comment.