1. <i id='lyl4O'><tr id='lyl4O'><dt id='lyl4O'><q id='lyl4O'><span id='lyl4O'><b id='lyl4O'><form id='lyl4O'><ins id='lyl4O'></ins><ul id='lyl4O'></ul><sub id='lyl4O'></sub></form><legend id='lyl4O'></legend><bdo id='lyl4O'><pre id='lyl4O'><center id='lyl4O'></center></pre></bdo></b><th id='lyl4O'></th></span></q></dt></tr></i><div id='lyl4O'><tfoot id='lyl4O'></tfoot><dl id='lyl4O'><fieldset id='lyl4O'></fieldset></dl></div>

        <legend id='lyl4O'><style id='lyl4O'><dir id='lyl4O'><q id='lyl4O'></q></dir></style></legend>

      2. <tfoot id='lyl4O'></tfoot>
          <bdo id='lyl4O'></bdo><ul id='lyl4O'></ul>

        <small id='lyl4O'></small><noframes id='lyl4O'>

        Chrome 中的加密 cookie

        Encrypted cookies in Chrome(Chrome 中的加密 cookie)

        <small id='K7gKs'></small><noframes id='K7gKs'>

      3. <i id='K7gKs'><tr id='K7gKs'><dt id='K7gKs'><q id='K7gKs'><span id='K7gKs'><b id='K7gKs'><form id='K7gKs'><ins id='K7gKs'></ins><ul id='K7gKs'></ul><sub id='K7gKs'></sub></form><legend id='K7gKs'></legend><bdo id='K7gKs'><pre id='K7gKs'><center id='K7gKs'></center></pre></bdo></b><th id='K7gKs'></th></span></q></dt></tr></i><div id='K7gKs'><tfoot id='K7gKs'></tfoot><dl id='K7gKs'><fieldset id='K7gKs'></fieldset></dl></div>
      4. <tfoot id='K7gKs'></tfoot>

          <legend id='K7gKs'><style id='K7gKs'><dir id='K7gKs'><q id='K7gKs'></q></dir></style></legend>
                <tbody id='K7gKs'></tbody>

                <bdo id='K7gKs'></bdo><ul id='K7gKs'></ul>
                  本文介绍了Chrome 中的加密 cookie的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我目前正在开发一个 C# 表单应用程序,它需要访问我计算机上的特定 cookie,我可以做得很好.问题来了:

                  I am currently working on a C# forms application that needs to access a specific cookie on my computer, which I can do perfectly fine. Here's the issue:

                  Google 将 cookie 存储在 SQLite 中,我已经下载了 Sqlite 数据库浏览器来帮助我查看这些值.令我惊讶的是,大约一半的 cookie 值显示为空(包括我需要的那个),尽管它们显然不是.

                  Google stores cookies in SQLite, and I've downloaded Sqlite database browser to help me look at these values. What surprises me is that about half of the cookie values shows as empty (including the one I need), even though they are obviously not.

                  db 文件位于:

                  C:Users\%username%AppDataLocalGoogleChromeUser DataDefaultCookies
                  

                  在 Chrome 上,我有一个名为编辑此 Cookie"的插件,它允许我直接修改我所在网站上的 cookie.这个插件可以读取这些 cookie,并且 Web 浏览器可以在不同请求需要时通过 HTTP 解析值,所以它们肯定存在——仍然,SQLite 浏览器和我的自定义代码都得出特定值字段为空的结论.

                  On Chrome I have an addon called "Edit This Cookie" which allows me to directly modify cookies on the website I'm on. This addon can read these cookies, and the web browser can parse values through HTTP when needed for different requests, so they are definitely there - still, the SQLite browser, and my custom code both come to the conclusion that the particular value field is empty.

                  这是为什么?是什么以某种方式阻止某些应用程序读取该字段?

                  Why is that? What is it that somehow prevents the field from being read by certain applications?

                  推荐答案

                  好吧,如果有人感兴趣,我经过大量试验、错误和谷歌搜索后找到了解决这个问题的方法.

                  Alright, so in case anyone is interested, I found a solution to this problem after alot of trial, error and googling.

                  Google Chrome cookie 数据库有 2 列用于存储值:value"和encrypted_value",后者在存储的 cookie 被要求加密时使用 - 通常是某些机密信息和长时间会话密钥的情况.

                  Google Chrome cookies DB has 2 columns for storing values: "value" and "encrypted_value", the latter being used when the cookie stored was requested to be encrypted - often the case with certain confidential information and long-time session keys.

                  弄清楚这一点后,我需要找到一种方法来访问这个键,存储为一个 Blob 值.我找到了几个关于如何做到这一点的指南,但最终支付的是:http://www.codeproject.com/Questions/56109/Reading-BLOB-in-Sqlite-using-C-NET-CF-PPC

                  After figuring this out, I then needed to find a way to access this key, stored as a Blob value. I found several guides on how to do this, but the one that ended up paying of was: http://www.codeproject.com/Questions/56109/Reading-BLOB-in-Sqlite-using-C-NET-CF-PPC

                  仅仅读取值是不够的,因为它是加密的.- 谷歌浏览器使用三重 DES 加密和当前用户密码作为 Windows 机器上的种子.为了在 C# 中解密它,应该使用 Windows 数据保护 API (DPAPI),有一些关于如何使用它的指南.

                  Simply reading the value is not enough, as it is encrypted. - Google Chrome uses triple DES encryption with the current users password as seed on windows machines. In order to decrypt this in C#, one should use Windows Data Protection API (DPAPI), there are a few guides out there on how to make use of it.

                  这篇关于Chrome 中的加密 cookie的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  SQLite loop statements?(SQLite 循环语句?)
                  Can I use parameters for the table name in sqlite3?(我可以在 sqlite3 中使用表名的参数吗?)
                  SQL - Inserting a row and returning primary key(SQL - 插入一行并返回主键)
                  How to get the number of rows of the selected result from sqlite3?(如何从sqlite3中获取所选结果的行数?)
                  Python : How to insert a dictionary to a sqlite database?(Python:如何将字典插入到 sqlite 数据库中?)
                  What are the advantages of VistaDB(VistaDB有什么优势)

                    <tfoot id='0BXRG'></tfoot>
                    <legend id='0BXRG'><style id='0BXRG'><dir id='0BXRG'><q id='0BXRG'></q></dir></style></legend>

                      <i id='0BXRG'><tr id='0BXRG'><dt id='0BXRG'><q id='0BXRG'><span id='0BXRG'><b id='0BXRG'><form id='0BXRG'><ins id='0BXRG'></ins><ul id='0BXRG'></ul><sub id='0BXRG'></sub></form><legend id='0BXRG'></legend><bdo id='0BXRG'><pre id='0BXRG'><center id='0BXRG'></center></pre></bdo></b><th id='0BXRG'></th></span></q></dt></tr></i><div id='0BXRG'><tfoot id='0BXRG'></tfoot><dl id='0BXRG'><fieldset id='0BXRG'></fieldset></dl></div>
                      • <bdo id='0BXRG'></bdo><ul id='0BXRG'></ul>
                            <tbody id='0BXRG'></tbody>

                          <small id='0BXRG'></small><noframes id='0BXRG'>