p1ngul1n0 / blackbird

An OSINT tool to search for accounts by username and email in social networks.

Home Page:https://p1ngul1n0.gitbook.io/blackbird/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to enable debug mode?

shaxiaozz opened this issue · comments

How to enable debug mode?
image

And will the http proxy (http://127.0.0.1:8080) be used when the search is initiated?

Hi!

This output is from the Flask Lib, to enable the debug mode you can modify the code in "webserver.py" and add the param "debug=True" to line 28.

About the HTTP Proxy, currently there isn't a argument to use a Proxy with the search in Blackbird, but it is a planned feature.

Thank you very much for your reply !
I tried adding debug=True parameter in "webserver.py", but after re-run it still shows "*Debug mode: off"
image
image

You should add the debug param like this:

app.run('0.0.0.0', debug=True)

Thanks, Best Regards