diff --git a/README.md b/README.md index 3390fa2..a65077d 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@

# 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. diff --git a/friTap/about.py b/friTap/about.py index 461e444..adfd5c7 100644 --- a/friTap/about.py +++ b/friTap/about.py @@ -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? \ No newline at end of file diff --git a/friTap/android.py b/friTap/android.py index b696b96..e5a19c8 100755 --- a/friTap/android.py +++ b/friTap/android.py @@ -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") @@ -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") diff --git a/package.json b/package.json index c81ff1d..b03a63a 100644 --- a/package.json +++ b/package.json @@ -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",