Sqlmap: hello , can i have some suggest decode password use sqlmap

Created on 23 Feb 2017  路  7Comments  路  Source: sqlmapproject/sqlmap

Hello

i have get some password , but its encode like that

# e脻>l;\x90\x9e(qNCDbf]_L脟a\x04\x0bTZZ

\x8aW\x8fl毛L\x03Z[esc]\x8e`R*\x87\,L脟a\x04\x0bTZZ
a\x9c[ff]\x04R媒脦\x03,脭JANet谩L脟a\x04\x0bTZZ

can i use sqlmap to decode them ? and please let me know which statements i should use ? thank you so much

support

All 7 comments

That's not a hash, or base64, it's some sort of Unicode. I doubt you'll be able to decrypt it with sqlmap, unless you can force the encoding to something readable

Thank for your reply , Ekuted
so can you give me some suggest with this one ? :

My advice to you, would be to decode the strings one by one and then try to decrypt them.

something like this should be sufficient:

# ~ coding=utf-8 ~ #
import chardet


unknown_string_list = [
    "e脻>l;\x90\x9e(qNCDbf]_L脟a\x04\x0bTZZ",
    "\x8aW\x8fl毛L\x03Z[esc]\x8e`R*\x87\,L脟a\x04\x0bTZZ",
    "a\x9c[ff]\x04R媒脦\x03,脭JANet谩L脟a\x04\x0bTZZ"
]  # Unknown encoded strings


def find_encoding(string):
    """ Find the encoding of a string
    >>> find_encoding("test")
    ascii """
    encoding = chardet.detect(string)
    return encoding["encoding"]


if __name__ == '__main__':
    for s in unknown_string_list:
        print(find_encoding(s))

Thank you so much Ekultek .
you're help me so much ? i want paid for you , for this help
sorry can i have your contact ,like :Skype , facebook ,icq.......?
and , im programmer , i have many skills , i want discusss more than that with you bro

Use --binary-fields in this kind of situations. It will retrieve and display hashes in hexadecimal format

thank you alot stamparm ,
i like your service so much , can i donate to your service ? so can i have your contact like : facebook, skype,icq , if possible bro ?

Was this page helpful?
0 / 5 - 0 ratings

Related issues

WilliJoin picture WilliJoin  路  4Comments

JonhSilver picture JonhSilver  路  4Comments

clouedoc picture clouedoc  路  5Comments

alexintel5 picture alexintel5  路  6Comments

engrhaider22 picture engrhaider22  路  3Comments