From bdd4c52ab726ce5c737421d8eab940d48fe8cff9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 15:26:49 +0000 Subject: [PATCH 1/2] Bump beautifulsoup4 from 4.12.2 to 4.12.3 Bumps [beautifulsoup4](https://www.crummy.com/software/BeautifulSoup/bs4/) from 4.12.2 to 4.12.3. --- updated-dependencies: - dependency-name: beautifulsoup4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 86259e5..017bc87 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -beautifulsoup4==4.12.2 +beautifulsoup4==4.12.3 requests==2.31.0 yagooglesearch==1.9.0 From ebd552c34ef54971ee4a3cbfd8a3484b33d5337c Mon Sep 17 00:00:00 2001 From: opsdisk Date: Sun, 11 Feb 2024 07:59:59 -0600 Subject: [PATCH 2/2] Updated switches, bumped version to 2.6.1 --- pagodo.py | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/pagodo.py b/pagodo.py index 9fe96ff..dece435 100644 --- a/pagodo.py +++ b/pagodo.py @@ -11,13 +11,15 @@ import sys import time + # Third party Python libraries. import yagooglesearch + # Custom Python libraries. -__version__ = "2.6.0" +__version__ = "2.6.1" class Pagodo: @@ -311,6 +313,7 @@ def _split_lines(self, text, width): ) parser.add_argument( "-g", + "--google-dorks-file", dest="google_dorks_file", action="store", required=True, @@ -318,6 +321,7 @@ def _split_lines(self, text, width): ) parser.add_argument( "-d", + "--domain", dest="domain", action="store", required=False, @@ -325,6 +329,7 @@ def _split_lines(self, text, width): ) parser.add_argument( "-i", + "--minimum-delay-between-dork-searches", dest="minimum_delay_between_dork_searches_in_seconds", action="store", required=False, @@ -334,6 +339,7 @@ def _split_lines(self, text, width): ) parser.add_argument( "-x", + "--maximum-delay-between-dork-searches", dest="maximum_delay_between_dork_searches_in_seconds", action="store", required=False, @@ -343,6 +349,7 @@ def _split_lines(self, text, width): ) parser.add_argument( "-l", + "--disable-ssl-verification", dest="disable_verify_ssl", action="store_true", required=False, @@ -351,6 +358,7 @@ def _split_lines(self, text, width): ) parser.add_argument( "-m", + "--max-search-urls-to-return-per-dork", dest="max_search_result_urls_to_return_per_dork", action="store", required=False, @@ -360,6 +368,7 @@ def _split_lines(self, text, width): ) parser.add_argument( "-p", + "--proxies", dest="proxies", action="store", required=False, @@ -374,6 +383,7 @@ def _split_lines(self, text, width): ) parser.add_argument( "-o", + "--json-results-file", nargs="?", metavar="JSON_FILE", dest="save_pagodo_results_to_json_file", @@ -386,6 +396,7 @@ def _split_lines(self, text, width): ) parser.add_argument( "-s", + "--text-results-file", nargs="?", metavar="URL_FILE", dest="save_urls_to_file", @@ -398,6 +409,7 @@ def _split_lines(self, text, width): ) parser.add_argument( "-v", + "--verbosity", dest="verbosity", action="store", type=int, @@ -405,6 +417,7 @@ def _split_lines(self, text, width): help="Verbosity level (0=NOTSET, 1=CRITICAL, 2=ERROR, 3=WARNING, 4=INFO, 5=DEBUG). Default: 4", ) parser.add_argument( + "-z", "--log", dest="specific_log_file_name", action="store",