RAW cookie data -> console command
Program Usage:
- Execute python script
iam@kcrong:~/project_path/project_name$ python3 cookie2command.py
Cookie: a=1;b=2;c=3 # <-- this is user input (output of document.cookie)
------------------------------------
document.cookie="a=1";document.cookie="b=2";document.cookie="c=3"
-
Copy
document.cookie="a=1";document.cookie="b=2";document.cookie="c=3"
-
Paste at Browser Console (I tested at google-chrome)
-
Cookie Changed!
See My Cookie :
Copy & Paste this
javascript:alert(document.cookie)
at URL