Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump requests from 2.31.0 to 2.32.2 #102

Merged
merged 2 commits into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions ghdb_scraper.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
#!/usr/bin/env python

# Standard Python libraries.
import argparse
import json
import urllib3


# Third party Python libraries.
from bs4 import BeautifulSoup
import requests


# Custom Python libraries.


__version__ = "1.1.0"
__version__ = "1.1.1"


"""
Dork dictionary example:
Expand Down Expand Up @@ -162,13 +164,11 @@ def retrieve_google_dorks(
print(f"[*] Total Google dorks retrieved: {total_dorks}")

# Package up a nice dictionary to return.
# fmt: off
ghdb_dict = {
"total_dorks": total_dorks,
"extracted_dorks": extracted_dorks,
"category_dict": category_dict,
}
# fmt: on

return ghdb_dict

Expand Down
2 changes: 1 addition & 1 deletion pagodo.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# Custom Python libraries.


__version__ = "2.6.2"
__version__ = "2.6.3"


class Pagodo:
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.3
requests==2.31.0
requests==2.32.2
yagooglesearch==1.10.0
Loading