Vault7: CIA Hacking Tools Revealed
Navigation: » Latest version
TODO: new bow tie
- Globbing, grab every database in the system instead of being specific with which database ie. /data/data/*/databases/*.db
- ANSWER: Listing just the databases
ls -alR /data/data/*/databases/ | grep db
- ANSWER: Listing the databases with its full path
ls -alR /data/data/*/databases/ | grep -E "db|:$"
- ANSWER: Listing just the databases
- Make sure command #1 can fail
- ANSWER: still failing :/