Exemplo n.º 1
0
 def test_privileges_LIST(self):
     methods = NmapScanMethods()
     assert not methods.require_root('-sL')
Exemplo n.º 2
0
 def test_privileges_TCP_NULL(self):
     methods = NmapScanMethods()
     assert methods.require_root('-sN')
Exemplo n.º 3
0
 def test_privileges_UDP(self):
     methods = NmapScanMethods()
     assert methods.require_root('-sU')
Exemplo n.º 4
0
 def test_privileges_SCTP_COOKIE(self):
     methods = NmapScanMethods()
     assert methods.require_root('-sZ')
Exemplo n.º 5
0
 def test_privileges_TCP(self):
     methods = NmapScanMethods()
     assert not methods.require_root('')
Exemplo n.º 6
0
 def test_privileges_SCTP_INIT(self):
     methods = NmapScanMethods()
     assert methods.require_root('-sY')
Exemplo n.º 7
0
 def test_privileges_MAIMON(self):
     methods = NmapScanMethods()
     assert methods.require_root('-sM')
Exemplo n.º 8
0
 def test_privileges_WINDOW(self):
     methods = NmapScanMethods()
     assert methods.require_root('-sW')
Exemplo n.º 9
0
 def test_privileges_CONNECT(self):
     methods = NmapScanMethods()
     assert not methods.require_root('-sT')
Exemplo n.º 10
0
 def test_privileges_PING(self):
     methods = NmapScanMethods()
     assert not methods.require_root('-sn')