diff --git a/README.md b/README.md index 62d5373..cd33521 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ python3 -m pip install --upgrade build python3 -m build -python3 -m pip install dist/google_chad-5.6-py3-none-any.whl +python3 -m pip install dist/google_chad-5.7-py3-none-any.whl ``` ## Shortest Possible @@ -247,7 +247,7 @@ Additionally, to avoid hitting e.g. [Instagram's](https://www.instagram.com) rat ## Usage ```fundamental -Chad v5.6 ( github.com/ivan-sincek/chad ) +Chad v5.7 ( github.com/ivan-sincek/chad ) Usage: chad -q queries [-s site ] [-x proxies ] [-o out ] Example: chad -q queries.txt [-s *.example.com] [-x proxies.txt] [-o results.json] @@ -314,7 +314,7 @@ DEBUG ``` ```fundamental -Chad Extractor v5.6 ( github.com/ivan-sincek/chad ) +Chad Extractor v5.7 ( github.com/ivan-sincek/chad ) Usage: chad-extractor -t template -res results -o out [-th threads] [-r retries] [-w wait] Example: chad-extractor -t template.json -res chad_results -o results_report.json [-th 10 ] [-r 5 ] [-w 10 ] diff --git a/pyproject.toml b/pyproject.toml index 29db388..38819a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "google-chad" -version = "5.6" +version = "5.7" authors = [{ name = "Ivan Sincek" }] description = "Not another Google Dorking tool." readme = "README.md" @@ -14,7 +14,7 @@ classifiers = [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent" ] -dependencies = ["argparse>=1.4.0", "asyncio>=3.4.3", "colorama>=0.4.6", "datetime>=5.0", "nagooglesearch>=6.9", "playwright>=1.40.0", "regex>=2022.4.24", "requests>=2.27.1", "termcolor>=1.1.0"] +dependencies = ["asyncio>=3.4.3", "colorama>=0.4.6", "datetime>=5.0", "nagooglesearch>=6.9", "playwright>=1.40.0", "regex>=2022.4.24", "requests>=2.27.1", "termcolor>=1.1.0"] [project.urls] "Homepage" = "https://github.com/ivan-sincek/chad" diff --git a/src/chad/chad.py b/src/chad/chad.py index c5c07f0..4828e4a 100644 --- a/src/chad/chad.py +++ b/src/chad/chad.py @@ -343,7 +343,7 @@ def show(self): class MyArgParser(argparse.ArgumentParser): def print_help(self): - print("Chad v5.6 ( github.com/ivan-sincek/chad )") + print("Chad v5.7 ( github.com/ivan-sincek/chad )") print("") print("Usage: chad -q queries [-s site ] [-x proxies ] [-o out ]") print("Example: chad -q queries.txt [-s *.example.com] [-x proxies.txt] [-o results.json]") @@ -562,7 +562,7 @@ def main(): if validate.run(): print("###########################################################################") print("# #") - print("# Chad v5.6 #") + print("# Chad v5.7 #") print("# by Ivan Sincek #") print("# #") print("# Search Google Dorks like Chad. #") diff --git a/src/chad_extractor/chad_extractor.py b/src/chad_extractor/chad_extractor.py index 31b36f5..0bf8938 100644 --- a/src/chad_extractor/chad_extractor.py +++ b/src/chad_extractor/chad_extractor.py @@ -581,7 +581,7 @@ def __get_report(self, plaintext = False, main = True): class MyArgParser(argparse.ArgumentParser): def print_help(self): - print("Chad Extractor v5.6 ( github.com/ivan-sincek/chad )") + print("Chad Extractor v5.7 ( github.com/ivan-sincek/chad )") print("") print("Usage: chad-extractor -t template -res results -o out [-th threads] [-r retries] [-w wait]") print("Example: chad-extractor -t template.json -res chad_results -o results_report.json [-th 10 ] [-r 5 ] [-w 10 ]") @@ -804,7 +804,7 @@ def main(): if validate.run(): print("###########################################################################") print("# #") - print("# Chad Extractor v5.6 #") + print("# Chad Extractor v5.7 #") print("# by Ivan Sincek #") print("# #") print("# Extract and validate data from Chad results. #")