You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm working on this .py to modify and use it for other application (ida.exe), but the cookie does not pass. so I need to debug as much as simple method because I'm not python developer.
What is data['Cookies'] structure? How I can use it as semicolon separated string?
such as:
lang=1; __auc=ee93572e1756eba4fd19030b82d; _ga=GA1.2.1558898317.1603880505; _gid=GA1.2.118992954.1603880505;
The text was updated successfully, but these errors were encountered:
It breaks down cookies to Netscape cookies format. It's the javascript in the addon that does it, the py just breaks down and export to a text what the javascript addon fed it.
function parseCookies(cookies_arr) {
cookies = '';
for (var i in cookies_arr) {
cookies += cookies_arr[i].domain + '\t';
cookies += (cookies_arr[i].httpOnly ? "FALSE" : "TRUE") + '\t';
cookies += cookies_arr[i].path + '\t';
cookies += (cookies_arr[i].secure ? "TRUE" : "FALSE") + '\t';
cookies += Math.round(cookies_arr[i].expirationDate) + '\t';
cookies += cookies_arr[i].name + '\t';
cookies += cookies_arr[i].value;
cookies += '\n';
}
message.Cookies = cookies;
sendMessageToHost(message);
}
Thank you for your reply.
I don't have google account and I'm not interested to enable extension debug mode on my chromium-edge browser.
Can you deploy a version with cookies as semicolon separated string for IDA application please?
I'm working on this .py to modify and use it for other application (ida.exe), but the cookie does not pass. so I need to debug as much as simple method because I'm not python developer.
What is data['Cookies'] structure? How I can use it as semicolon separated string?
such as:
lang=1; __auc=ee93572e1756eba4fd19030b82d; _ga=GA1.2.1558898317.1603880505; _gid=GA1.2.118992954.1603880505;
The text was updated successfully, but these errors were encountered: