Skip to content

Commit

Permalink
minor adjustments to the fix provided by 0xhakeem
Browse files Browse the repository at this point in the history
  • Loading branch information
monkeywave committed Jan 13, 2025
1 parent 4edbd35 commit 5f12a09
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
</p>

# friTap
![version](https://img.shields.io/badge/version-1.2.6.6-blue) [![PyPI version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=py&r=r&ts=1683906897&type=6e&v=1.2.6.6&x2=0)](https://badge.fury.io/py/friTap)
![version](https://img.shields.io/badge/version-1.2.6.8-blue) [![PyPI version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=py&r=r&ts=1683906897&type=6e&v=1.2.6.8&x2=0)](https://badge.fury.io/py/friTap)

friTap is a powerful tool designed to assist researchers in analyzing network traffic encapsulated in SSL/TLS. With its ability to automate key extraction, friTap is especially valuable when dealing with malware analysis or investigating privacy issues in applications. By simplifying the process of decrypting and inspecting encrypted traffic, friTap empowers researchers to uncover critical insights with ease.

Expand Down
2 changes: 1 addition & 1 deletion friTap/about.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# -*- coding: utf-8 -*-

__author__ = "Daniel Baier, Francois Egner, Max Ufer"
__version__ = "1.2.6.6"
__version__ = "1.2.6.8"
debug = False # are we running in debug mode?
4 changes: 2 additions & 2 deletions friTap/android.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def send_ctrlC_over_adb(self):
pids_str = " ".join(pids)
self.run_adb_command_as_root(f"kill -INT {pids_str}")
if self.print_debug_infos:
print(f"[+] Killed processes with PID: {pids_str}")
print(f"[*] Killed processes with PID: {pids_str}")
else:
if self.print_debug_infos:
print("[-] No running tcpdump processes found")
Expand All @@ -180,7 +180,7 @@ def send_kill_tcpdump_over_adb(self):
pids_str = " ".join(pids)
self.run_adb_command_as_root(f"kill -9 {pids_str}")
if self.print_debug_infos:
print(f"[+] Killed processes with PID: {pids_str}")
print(f"[*] Killed processes with PID: {pids_str}")
else:
if self.print_debug_infos:
print("[-] No running tcpdump processes found")
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "friTap",
"version": "1.2.6.6",
"version": "1.2.6.8",
"description": "Frida agent for logging SSL traffic as plaintext and extracting SSL keys",
"private": true,
"main": "agent/ssl_log.ts",
Expand Down

0 comments on commit 5f12a09

Please sign in to comment.