Given that your key has expired.
$ gpg --list-keys
$ gpg --edit-key KEYID
Use the expire command to set a new expire date:
In order to capture https traffic, some setting up is required in order to allow tshark to decrypt the traffic.
A pre-master secret key will be used in order to do this.
Basically, we need to get the browser to log a SSL key log file. This can be done by following the steps here: https://www.comparitech.com/net-admin/decrypt-ssl-with-wireshark/.
In summary, the steps are:
export SSLKEYLOGFILE=~/.ssl-key.log
#!/bin/bash | |
set -e | |
# Step-by-Step Installation Guide | |
# Step 0: Remove existing NVIDIA drivers and CUDA installations | |
sudo yum erase -y nvidia cuda | |
# Step 1: Update the system and install dependencies |
#!/bin/bash | |
# Function to display usage information | |
usage() { | |
echo "Usage: $0 /path/to/input.mp4 [ /path/to/output_directory ]" | |
exit 1 | |
} | |
# Check if at least one argument (input file) is provided | |
if [ $# -lt 1 ]; then |