Last active
April 7, 2025 06:05
-
-
Save TrueNix/b2b8c802d49cf025c413cf8726b876e2 to your computer and use it in GitHub Desktop.
Revisions
-
TrueNix revised this gist
Apr 7, 2025 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,9 @@ adb shell <<'EOF' su pid=$(netstat -tulpan | grep frida | awk '{print $7}' | cut -d'/' -f1) if [ -n "$pid" ]; then kill -9 $pid fi nohup ./data/local/tmp/frida > /dev/null 2>&1 & exit EOF -
TrueNix created this gist
Apr 7, 2025 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ #!/bin/bash adb shell <<'EOF' su pid=$(netstat -tulpan | grep frida | awk '{print $7}' | cut -d'/' -f1) kill -9 $pid nohup ./data/local/tmp/frida > /dev/null 2>&1 & exit EOF