You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
186 B
17 lines
186 B
#!/bin/bash
|
|
#
|
|
|
|
|
|
printf "Installing frida tools and python venv..\n\n"
|
|
|
|
sudo apt install python3-venv
|
|
|
|
pip install frida-tools
|
|
|
|
|
|
|
|
printf "\nChecking frida version..\n"
|
|
|
|
frida --version
|
|
|
|
|