Jump to content

What Password Code is this?


AussieShrimpy

Recommended Posts

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)

Link to comment
Share on other sites

  • 2 weeks later...

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 by haze1434
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...