AussieShrimpy Posted December 2, 2017 Share Posted December 2, 2017 I'm testing some exploits (with msfconsole) on my computer, and one is to get all chrome passwords (run post/windows/local/gather/enum_chrome). But when its all dumped in a text file, it says to convert it to SQLite format 3. Once I do, the "password_value" are all these numbers - e.g. 1,0,0,0,208,140,157,223,1,21,209,17,140,122,0,192,79,194,151,235,1,0,0,0,253,205,96,38,96,22,46,70,162,33,196,194,213,148,137,101,0,0,0,0,2,0,0,0,0,0,16,102,0,0,0,1,0,0,32,0,0,0,114,244,122,3,160,21,227,67,94,253,236,241,93,222,192,46,48,180,66,247,219,114,166,25,75,204,236,29,166,251,144,53,0,0,0,0,14,128,0,0,0,2,0,0,32,0,0,0,194,226,197,184,178,20,230,184,150,194,26,41,136,36,137,86,52,34,230,179,59,19,116,192,118,48,96,104,65,145,201,181,16,0,0,0,12,58,88,83,253,13,230,96,59,133,102,249,171,216,197,234,64,0,0,0,75,177,153,45,195,147,172,205,57,249,76,127,190,29,60,77,184,171,107,119,99,141,142,141,202,51,197,252,5,116,160,121,185,222,212,145,1,245,138,184,145,3,81,74,60,13,5,157,77,213 How could I decode this??? Thanks (btw, the password code above, isn't all there, just incase someone tries to decode it) Quote Link to comment Share on other sites More sharing options...
0phoi5 Posted December 12, 2017 Share Posted December 12, 2017 (edited) https://itstillworks.com/convert-sqlite-text-10064804.html " Load a SQLite database and enter the sqlite3 environment by typing the following text at the command prompt: $ sqlite3 mydb.db Replace "mydb.db" with the name of your database. A database with the specified name will be created if none already exists. Convert a value to the TEXT data type with the "CAST" expression by typing the following command at the command prompt: $ sqlite3 my_db.db INSERT INTO my_table VALUES(CAST(97 AS TEXT)) Replace "my_table" with the name of your table. In the code, the number 97 is inserted into the table as a TEXT value. Exit the sqlite3 environment by typing ".quit", ".q" or ".exit." and pressing the "Enter" key. " Edited December 12, 2017 by haze1434 Quote Link to comment Share on other sites More sharing options...
digip Posted December 13, 2017 Share Posted December 13, 2017 Give this a try - http://blog.packetheader.net/2011/07/using-metasploit-meterpreter-scripts.html Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.