18 lines
186 B
Bash
Executable File
18 lines
186 B
Bash
Executable File
#!/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
|
|
|
|
|