Skip to content

Commit

Permalink
Temporary enable full payload when decrypting files
Browse files Browse the repository at this point in the history
This is needed to properly show the decrypted status and data

See #351
  • Loading branch information
emanuele-f committed Dec 28, 2024
1 parent 11f5376 commit fc0504f
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -736,6 +736,11 @@ private void doStartCaptureService(String input_pcap_path) {

CaptureSettings settings = new CaptureSettings(this, mPrefs);
settings.input_pcap_path = input_pcap_path;

// to properly show decrypted PCAP files, full payload must be enabled
if (PCAPdroid.getInstance().isDecryptingPcap())
settings.full_payload = true;

mCapHelper.startCapture(settings);
}

Expand Down

0 comments on commit fc0504f

Please sign in to comment.