I get cookie "encrypted_value" from chrome cookies file, and decode, but one of string variable, it appears unexpected changes when I use it.
If you output direct:
echo "$SEID"
output is:
aa312d7a2a15ab67a16f39495dbc22bf9930dafaf70b3eddbd955b0fb39bd7ef661af6ac15d0d98fbbc179c9d6e85901b56c2c4efd9a40df013060d7
when I did this:
echo "$SEID;"
but output changed, you should see the penultimate eighth character changed from zero to semicolon!!!
aa312d7a2a15ab67a16f39495dbc22bf9930dafaf70b3eddbd955b0fb39bd7ef661af6ac15d0d98fbbc179c9d6e85901b56c2c4efd9a40df;13060d7
my value come from this script:
SEID=$(get_cookies_from_chrome "xxxx.com" "SEID")
get_cookies_from_chrome
is this:
#!/usr/local/bin/python3
#coding=utf-8
import os
import sys
import sqlite3
import keyring
from Crypto.Cipher import AES
from Crypto.Protocol.KDF import PBKDF2
my_pass = keyring.get_password('Chrome Safe Storage', 'Chrome')
my_pass = my_pass.encode('utf8')
iterations = 1003
cookie_file = os.path.expanduser('~/Library/Application Support/Google/Chrome/Default/Cookies')
salt = b'saltysalt'
length = 16
iv = b' ' * length
class ChromeCookies:
@staticmethod
def aes_decrypt(token):
key = PBKDF2(my_pass, salt, length, iterations)
cipher = AES.new(key, AES.MODE_CBC, IV=iv)
dec_token = cipher.decrypt(token)
return dec_token
@staticmethod
def query_cookies(host_key, name):
with sqlite3.connect(cookie_file) as conn:
sql = 'select encrypted_value from cookies where host_key="%s" and name = "%s"' % (host_key, name)
result = conn.execute(sql).fetchall()
return result
@staticmethod
def get_value(host_key, name):
result = ChromeCookies.query_cookies(host_key, name)
if len(result) != 0:
return ChromeCookies.aes_decrypt(result[0][0][3:]).decode('utf-8')
else:
return None
if __name__ == '__main__':
print(ChromeCookies.get_value(sys.argv[1], sys.argv[2]))