Skip to content

Commit

Permalink
remove httpx debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTechromancer committed Dec 23, 2023
1 parent df1956b commit e441ea5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions bbot/modules/httpx.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,7 @@ async def handle_batch(self, *events):

command = [
"httpx",
"-debug",
# "-silent",
"-silent",
"-json",
"-include-response",
"-threads",
Expand Down
2 changes: 1 addition & 1 deletion bbot/modules/postman.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class postman(subdomain_enum):

async def handle_event(self, event):
query = self.make_query(event)
self.verbose(f"Search for any postman workspaces, collections, requests belonging to {query}")
self.verbose(f"Searching for any postman workspaces, collections, requests belonging to {query}")
for url in await self.query(query):
self.emit_event(url, "URL_UNVERIFIED", source=event, tags="httpx-safe")

Expand Down

0 comments on commit e441ea5

Please sign in to comment.