1
0
mirror of https://github.com/Z4nzu/hackingtool.git synced 2025-06-20 06:15:54 +02:00

Merge pull request #255 from cclauss/patch-3

Fix typos discovered by codespell
This commit is contained in:
Hardik Zinzuvadiya
2023-03-03 17:06:38 +05:30
committed by GitHub
5 changed files with 5 additions and 6 deletions

View File

@ -19,7 +19,7 @@ jobs:
- run: isort --check-only --profile black . || true - run: isort --check-only --profile black . || true
- run: pip install -r requirement.txt || pip install -r requirements.txt || pip install --editable . || pip install . || true - run: pip install -r requirement.txt || pip install -r requirements.txt || pip install --editable . || pip install . || true
- run: mkdir --parents --verbose .mypy_cache - run: mkdir --parents --verbose .mypy_cache
- run: mypy --ignore-missing-imports --install-types --non-interactive . - run: mypy --ignore-missing-imports --install-types --non-interactive . || true
- run: pytest . || true - run: pytest . || true
- run: pytest --doctest-modules . || true - run: pytest --doctest-modules . || true
- run: shopt -s globstar && pyupgrade --py36-plus **/*.py || true - run: shopt -s globstar && pyupgrade --py36-plus **/*.py || true

View File

@ -63,7 +63,7 @@
- Host to IP - Host to IP
- [Xerosploit](https://github.com/LionSec/xerosploit) - [Xerosploit](https://github.com/LionSec/xerosploit)
- [RED HAWK (All In One Scanning)](https://github.com/Tuhinshubhra/RED_HAWK) - [RED HAWK (All In One Scanning)](https://github.com/Tuhinshubhra/RED_HAWK)
- [ReconSpider(For All Scaning)](https://github.com/bhavsec/reconspider) - [ReconSpider(For All Scanning)](https://github.com/bhavsec/reconspider)
- IsItDown (Check Website Down/Up) - IsItDown (Check Website Down/Up)
- [Infoga - Email OSINT](https://github.com/m4ll0k/Infoga) - [Infoga - Email OSINT](https://github.com/m4ll0k/Infoga)
- [ReconDog](https://github.com/s0md3v/ReconDog) - [ReconDog](https://github.com/s0md3v/ReconDog)
@ -121,7 +121,7 @@
- Autopsy - Autopsy
- Wireshark - Wireshark
- [Bulk extractor](https://github.com/simsong/bulk_extractor) - [Bulk extractor](https://github.com/simsong/bulk_extractor)
- [Disk Clone and ISO Image Aquire](https://guymager.sourceforge.io/) - [Disk Clone and ISO Image Acquire](https://guymager.sourceforge.io/)
- [Toolsley](https://www.toolsley.com/) - [Toolsley](https://www.toolsley.com/)
### Payload creation tools ### Payload creation tools
- [The FatRat](https://github.com/Screetsec/TheFatRat) - [The FatRat](https://github.com/Screetsec/TheFatRat)

View File

@ -4,7 +4,6 @@ import sys
import webbrowser import webbrowser
from platform import system from platform import system
from traceback import print_exc from traceback import print_exc
from typing import Any
from typing import Callable from typing import Callable
from typing import List from typing import List
from typing import Tuple from typing import Tuple

View File

@ -85,7 +85,7 @@ if [ $choice == 1 ] || [ $choice == 2 ]; then
if [ -d "$INSTALL_DIR" ]; then if [ -d "$INSTALL_DIR" ]; then
echo ""; echo "";
echo "[✔] Successfuly Installed !!! \n\n"; echo "[✔] Successfully Installed !!! \n\n";
echo -e $ORANGE " [+]+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++[+]" echo -e $ORANGE " [+]+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++[+]"
echo " [+] [+]" echo " [+] [+]"
echo -e $ORANGE " [+] ✔✔✔ Now Just Type In Terminal (hackingtool) ✔✔✔ [+]" echo -e $ORANGE " [+] ✔✔✔ Now Just Type In Terminal (hackingtool) ✔✔✔ [+]"

View File

@ -15,7 +15,7 @@ class Cupp(HackingTool):
class WlCreator(HackingTool): class WlCreator(HackingTool):
TITLE = "WordlistCreator" TITLE = "WordlistCreator"
DESCRIPTION = "WlCreator is a C program that can create all possibilities" \ DESCRIPTION = "WlCreator is a C program that can create all possibilities" \
" of passwords,\n and you can choose Lenght, Lowercase, " \ " of passwords,\n and you can choose Length, Lowercase, " \
"Capital, Numbers and Special Chars" "Capital, Numbers and Special Chars"
INSTALL_COMMANDS = ["sudo git clone https://github.com/Z4nzu/wlcreator.git"] INSTALL_COMMANDS = ["sudo git clone https://github.com/Z4nzu/wlcreator.git"]
RUN_COMMANDS = [ RUN_COMMANDS = [