Skip to content

Instantly share code, notes, and snippets.

@Gameye98
Created December 13, 2017 07:46
Show Gist options
  • Save Gameye98/09ca856531263cc10b2ca655ecbba649 to your computer and use it in GitHub Desktop.
Save Gameye98/09ca856531263cc10b2ca655ecbba649 to your computer and use it in GitHub Desktop.
Quick Find file on your Android Device
#!/system/bin/sh
# QuickFind v1.0
# Author: DedSecTL/DTL
# Date: 10-12-2017 (19:23)
# Blog: http://droidsec9798-com.mwapblog.com
# Github: https://github.com/Gameye98
# BlackHole Security Team
## Colors
white='\033[1;37m'
normal='\033[0m'
blue='\033[1;34m'
##
clear
echo "$blue _____ $white _ _ $blue _____ $white _ _ $normal"
echo "$blue| |$white _ _ |_| ___ | |_ $blue| __|$white|_| ___ _| |$normal"
echo "$blue| | |$white| | || || _|| '_|$blue| __|$white| || || . |$normal"
echo "$blue|__ _|$white|___||_||___||_,_|$blue|__| $white|_||_|_||___|$normal"
echo "$blue |__|$white $blue $white $normal"
echo "$white You're the$blue Lazy$white one ... Thats why you run the$blue tool$normal"
echo -n $white"\nEnter Filename$blue ("$white"ex: example.txt$blue):$white "
read filename
echo $white"Filename$blue =>$white $filename$normal"
echo
echo "$blue["$white"SDCARD/$blue]$normal"
cd /storage/emulated/0; find | grep $filename
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment