Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between active scan and passive scan?

What is the difference between mWifiManager.startScanActive() and mWifiManager.startScan().
What is the difference between active scan and passive scan?

like image 744
Judy Avatar asked May 11 '11 02:05

Judy


People also ask

What is a passive scan?

Passive scanning is a method of vulnerability detection that relies on information gleaned from network data that is captured from a target computer without direct interaction.

What is active scan and passive scan in burp?

Burp Scanner can automatically do vulnerability assessment of web applications. We can conduct an active scan, which involves sending more data to the server, or passive scanning, which is basically looking for vulnerabilities passing through the Proxy tool.

What is active scan?

Active scanning attempts to find potential vulnerabilities by using known attacks against the selected targets. Active scanning is an attack on those targets. You should NOT use it on web applications that you do not own.

What is active and passive scan in Zap?

Passive scanning does not change the requests and responses in any way, and is therefore safe to use. Active Scan: Attempts to find potential vulnerabilities by using known attacks against the selected targets. You must perform active scan only if you have permission to test the application.


1 Answers

Passive scanning listens to beacons sent by the access points. That means waiting for the beacon to be sent (usually a few seconds).

An active scanning will emit probes to those APs immediately.

like image 96
Aleadam Avatar answered Oct 04 '22 03:10

Aleadam