4.8 KiB
PCAPdroid exposes an API for other apps to configure and control the packet capture. This can be used to easily enable packet capture in your app, provided that the PCAPdroid app is also installed into the device.
The API
The CaptureCtrl.java activity is the one exposed to allow you to control the PCAPdroid capture via Intents.
The activity can be easily invoked from the cli by running:
adb shell am start -e action [ACTION] -e [SETTINGS] -n com.emanuelef.remote_capture/.activities.CaptureCtrl
where ACTION is one of:
start: starts the capturestop: stops the capture
The capture parameters are specified via Intent extras, which are discussed below. A common task is to capture the traffic of a specific app to analyze it into your app. This can be easily accomplished by running PCAPdroid in the UDP Exporter mode:
adb shell am start -e action start -e pcap_dump_mode udp_exporter -e collector_ip_address 127.0.0.1 -e collector_port 5123 -e app_filter org.mozilla.firefox -n com.emanuelef.remote_capture/.activities.CaptureCtrl
then your app can listen for UDP packets on port 5123 to handle the Firefox network packets.
Another interesting option is to enable the pcapdroid_trailer to be able to get the app UID/name into your app.
The Intent above can also be triggered programmatically from your app:
class YourActivity extends Activity {
private final ActivityResultLauncher<Intent> captureLauncher =
registerForActivityResult(new StartActivityForResult(), this::handleCaptureResult);
void startCapture() {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setClassName("com.emanuelef.remote_capture", "com.emanuelef.remote_capture.activities.CaptureCtrl");
intent.putExtra("action", "start");
intent.putExtra("pcap_dump_mode", "udp_exporter");
intent.putExtra("collector_ip_address", "127.0.0.1");
intent.putExtra("collector_port", "5123");
intent.putExtra("app_filter", "org.mozilla.firefox");
captureLauncher.launch(intent);
}
void handleCaptureResult(final ActivityResult result) {
if(result.getResultCode() == RESULT_OK) {
// command executed successfully
}
}
}
The result code tells if the command succeded or not.
User Consent
To prevent malicious apps from monitoring/hijacking the device traffic, PCAPdroid will ask for user consent every time a capture is started. If the user denies consent, then the request fails. Consent is also asked when a stop request is received from a different app from the one which started it.
Please note that AFAIK Android does not provide a consistent way to determine the source of an Intent.
This is only available via getCallingPackage when the caller app uses startActivityForResult (or the equivalent ActivityResultLauncher). So it's adviced to always invoke the API via startActivityForResult.
Capture Settings
As shown above, the capture settings can be specified by using intent extras. The updated list of all the supported parameters is available in CaptureSettings.java.
| Parameter | Type | Value |
|---|---|---|
| dump_mode | string | none | http_server | udp_exporter | pcap_file |
| app_filter | string | the package name of the app to capture |
| collector_address | string | the IP address of the collector in udp_exporter mode |
| collector_port | int | the UDP port of the collector in udp_exporter mode |
| http_server_port | int | the HTTP server port in http_server mode |
| socks5_enabled | bool | true to enable the SOCKS5 proxy |
| socks5_proxy_address | string | the IP address of the SOCKS5 proxy |
| socks5_proxy_port | int | the TCP port of the SOCKS5 proxy |
| ipv6_enabled | bool | true to enable IPv6 support in non-root mode |
| root_capture | bool | true to capture packets in root mode, false to use the VPNService |
| pcapdroid_trailer | bool | true to enable the PCAPdroid trailer |