Skip to content

Commit

Permalink
Merge pull request #102 from opsdisk/dependabot/pip/requests-2.32.2
Browse files Browse the repository at this point in the history
Bump requests from 2.31.0 to 2.32.2
  • Loading branch information
opsdisk authored May 24, 2024
2 parents 7b81d4b + 6e8c515 commit e99e7b1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
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

0 comments on commit e99e7b1

Please sign in to comment.