[?] Enter the Search Query: site:XXX.com
[?] Choose the Search Engine (Google/Bing): google
/dorkScanner/dorkScanner.py:27: DeprecationWarning: Call to deprecated method findAll. (Replaced by find_all) -- Deprecated since version 4.0.0.
links = soup.findAll("div", { "class" : "yuRUbf" })
----------------------------------------------------------------------
Searching for: site:XXX.com in 1 page(s) of google with 2 processes
----------------------------------------------------------------------
Bug is caused by findAll method that is deprecated. I fixed this issue simply by replacing findAll to find_all as warning suggested
Bug is caused by
findAllmethod that is deprecated. I fixed this issue simply by replacingfindAlltofind_allas warning suggested