How to access SQLite Database directly on Frida
Frida에서 SQLite DB에 접근해야 하는 경우,
다음의 스크립트를 활용할 수 있다.
_Script_
1 2 3 4 5 6 7 |
var db, query, row; db = SqliteDatabase.open('/data/local/tmp/frida.db'); query = db.prepare('SELECT * FROM recentFile'); while ((row = query.step()) != null) { console.log(row); } query.reset(); |
_Result_
1 2 3 4 5 |
[ 970, "/root/Documents/0x00-Private/0x99-fridaLaucher/temp.js", "2020-05-20" ] |