Mapping The Cursor Movement from a Bluetooth Network Capture Using Numpy and Matplotlib
Description We need to Map the movement of the cursor to recieve the hidden message written on by the user…….We have a Bluetooth Network Capture as a challenge and we need to follow it’s movement to get the message
Tools Required: TShark Numpy Matplotlib Code import os import matplotlib.pyplot as plt import numpy as np count = 0 plot_x = [] plot_y = [] X = [] Y = [] condition = [] x_pos = 0 y_pos = 0 output1= os.
2023-10-03