From 603f851be3b153c35aca73822c65cf199ec8ddf2 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sun, 12 Jun 2022 23:09:23 +0200 Subject: [PATCH 1/8] Fix typos discovered by codespell --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b6057ee..ae6caf2 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ - Host to IP - [Xerosploit](https://github.com/LionSec/xerosploit) - [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) - [Infoga - Email OSINT](https://github.com/m4ll0k/Infoga) - [ReconDog](https://github.com/s0md3v/ReconDog) @@ -120,7 +120,7 @@ - Autopsy - Wireshark - [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/) ### Payload creation tools - [The FatRat](https://github.com/Screetsec/TheFatRat) From 3f8c110813c1a8c9edf907155ba31e7dc7005d6a Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Mon, 13 Jun 2022 15:13:51 +0200 Subject: [PATCH 2/8] Update install.sh --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 2d243de..c6fb80a 100644 --- a/install.sh +++ b/install.sh @@ -45,7 +45,7 @@ if [ $choice == 1 ] || [ $choice == 2 ]; then echo -e ${BLUE}"[✔] Loading ... " if [ $choice == 1 ]; then sudo apt-get update && apt-get upgrade - sudo apt-get install python-pip + sudo apt-get install python3-pip elif [ $choice == 2 ]; then # added arch linux support because of feature request #231 sudo pacman -Suy sudo pacman -S python-pip @@ -92,7 +92,7 @@ if [ $choice == 1 ] || [ $choice == 2 ]; then if [ -d "$INSTALL_DIR" ]; then echo ""; - echo "[✔] Successfuly Installed !!! "; + echo "[✔] Successfully Installed !!! "; echo ""; echo ""; echo -e $ORANGE " [+]+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++[+]" From a891b0e8c23c09e763a49f3b6461818bb7a5af83 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 15 Jun 2022 13:07:23 +0200 Subject: [PATCH 3/8] Fix typo discovered by codespell --- tools/wordlist_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/wordlist_generator.py b/tools/wordlist_generator.py index dee3423..cc15775 100644 --- a/tools/wordlist_generator.py +++ b/tools/wordlist_generator.py @@ -15,7 +15,7 @@ class Cupp(HackingTool): class WlCreator(HackingTool): TITLE = "WordlistCreator" 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" INSTALL_COMMANDS = ["sudo git clone https://github.com/Z4nzu/wlcreator.git"] RUN_COMMANDS = [ From 14ef376b57740c9765dd175ad19beb13e30c9169 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sat, 3 Dec 2022 19:08:24 +0100 Subject: [PATCH 4/8] Update core.py --- core.py | 1 - 1 file changed, 1 deletion(-) diff --git a/core.py b/core.py index 3a82f1c..537a716 100644 --- a/core.py +++ b/core.py @@ -4,7 +4,6 @@ import sys import webbrowser from platform import system from traceback import print_exc -from typing import Any from typing import Callable from typing import List from typing import Tuple From ad376b52619b97dbdd3ebdee6f170b1104d9cd87 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sat, 3 Dec 2022 23:26:41 +0100 Subject: [PATCH 5/8] Create __init__.py --- tools/__init__.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 tools/__init__.py diff --git a/tools/__init__.py b/tools/__init__.py new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tools/__init__.py @@ -0,0 +1 @@ + From 151e11532182c0fce6b67f880a8f07746bce5d9d Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sat, 3 Dec 2022 23:27:56 +0100 Subject: [PATCH 6/8] Update __init__.py From 4171ec46ea2e62f433b294b0cfe449c186d647a9 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sat, 3 Dec 2022 23:29:36 +0100 Subject: [PATCH 7/8] Delete __init__.py --- tools/__init__.py | 1 - 1 file changed, 1 deletion(-) delete mode 100644 tools/__init__.py diff --git a/tools/__init__.py b/tools/__init__.py deleted file mode 100644 index 8b13789..0000000 --- a/tools/__init__.py +++ /dev/null @@ -1 +0,0 @@ - From 03db8507d30b923c7defb180fe9e77268080eb1d Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sat, 3 Dec 2022 23:30:32 +0100 Subject: [PATCH 8/8] Update lint_python.yml --- .github/workflows/lint_python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index bdf7288..eee4a73 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -19,7 +19,7 @@ jobs: - 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: 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 --doctest-modules . || true - run: shopt -s globstar && pyupgrade --py36-plus **/*.py || true