Skip to content

Commit

Permalink
Merge pull request #95 from opsdisk/dependabot/pip/beautifulsoup4-4.12.3
Browse files Browse the repository at this point in the history
Bump beautifulsoup4 from 4.12.2 to 4.12.3
  • Loading branch information
opsdisk committed Feb 11, 2024
2 parents b6715ab + ebd552c commit fe3c58e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
15 changes: 14 additions & 1 deletion pagodo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -311,20 +313,23 @@ def _split_lines(self, text, width):
)
parser.add_argument(
"-g",
"--google-dorks-file",
dest="google_dorks_file",
action="store",
required=True,
help="File containing Google dorks, 1 per line.",
)
parser.add_argument(
"-d",
"--domain",
dest="domain",
action="store",
required=False,
help="Domain to scope the Google dork searches. Not required.",
)
parser.add_argument(
"-i",
"--minimum-delay-between-dork-searches",
dest="minimum_delay_between_dork_searches_in_seconds",
action="store",
required=False,
Expand All @@ -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,
Expand All @@ -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,
Expand All @@ -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,
Expand All @@ -360,6 +368,7 @@ def _split_lines(self, text, width):
)
parser.add_argument(
"-p",
"--proxies",
dest="proxies",
action="store",
required=False,
Expand All @@ -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",
Expand All @@ -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",
Expand All @@ -398,13 +409,15 @@ def _split_lines(self, text, width):
)
parser.add_argument(
"-v",
"--verbosity",
dest="verbosity",
action="store",
type=int,
default=4,
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",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
beautifulsoup4==4.12.2
beautifulsoup4==4.12.3
requests==2.31.0
yagooglesearch==1.9.0

0 comments on commit fe3c58e

Please sign in to comment.