brotab empty response problem
Today, I’m sharing a quick BugFix for the BroTab addon. This post offers a solution that resolves you may have encountered. Brotab error Empty return for bt list command
1 2 3 4 |
bt list # Gives just empty output no error echo $? 0 |
But actually In this case socket is not open
1 2 3 |
netstat -tulpn | grep python # find port curl 'http://localhost:4628/get_browser' curl: (7) Failed to connect to localhost port 4628 after 0 ms: Connection refused |
Solution Install werkzeug
1 |
pip install werkzeug==2.2.2 # my pip by default uses --user |
Restart Firefox Port control and it […]