* updated big brother to allow multicast and LAN
This commit is contained in:
parent
2732b2feea
commit
92c4109572
2 changed files with 9 additions and 3 deletions
|
@ -22,6 +22,12 @@ class TestBigBrother(unittest.TestCase):
|
|||
bigbrother.enable_ministries()
|
||||
with self.assertRaises(onionrexceptions.NetworkLeak):
|
||||
requests.get('https://example.com')
|
||||
with self.assertRaises(onionrexceptions.NetworkLeak):
|
||||
requests.get('https://1.1.1.1/')
|
||||
try:
|
||||
requests.get('http://192.168.1.1/')
|
||||
except requests.exceptions.ConnectionError:
|
||||
pass
|
||||
|
||||
|
||||
unittest.main()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue