- // ==UserScript==
- // @name JS Cookie Monitor/Debugger Hook
- // @namespace https://github.com/CC11001100/js-cookie-monitor-debugger-hook
- // @version 0.9
- // @description 用于监控js对cookie的修改,或者在cookie符合给定条件时进入断点
- // @document https://github.com/CC11001100/js-cookie-monitor-debugger-hook
- // @author CC11001100
- // @match *://*/*
- // @run-at document-start
- // @grant none
- // ==/UserScript==
-
- (() => {
-
- // 使用文档: https://github.com/CC11001100/js-cookie-monitor-debugger-hook
-
- // @since v0.6 断点规则发生了向后不兼容变化,详情请查阅文档
- const debuggerRules = [];
- // example:
- // const debuggerRules = ["foo", /foo_\d+/];
-
- // 设置事件断点是否开启,一般保持默认即可
- const enableEventDebugger = {
- "add": true,
- "update": true,
- "delete": true,
- "read": true,
- }
-
- // 在控制台打印日志时字体大小,根据自己喜好调整
- // 众所周知,12px是宇宙通用大小
- const consoleLogFontSize = 12;
-
- // 使用document.cookie更新cookie,但是cookie新的值和原来的值一样,此时要不要忽略这个事件
- const ignoreUpdateButNotChanged = false;
-
- // 此处实现的反复hook,保证页面流程能够继续往下走下去
- (function addCookieHook() {
- Object.defineProperty(document, "cookie", {
- get: () => {
- delete document.cookie;
- const currentDocumentCookie = document.cookie;
- addCookieHook();
- return currentDocumentCookie;
- },
- set: newValue => {
- cc11001100_onSetCookie(newValue);
- delete document.cookie;
- document.cookie = newValue;
- addCookieHook();
- },
- configurable: true
- });
- })();
-
- /**
- * 这个方法的前缀起到命名空间的作用,等下调用栈追溯赋值cookie的代码时需要用这个名字作为终结标志
- *
- * @param newValue
- */
- function cc11001100_onSetCookie(newValue) {
- const cookiePair = parseSetCookie(newValue);
- const currentCookieMap = getCurrentCookieMap();
-
- // 如果过期时间为当前时间之前,则为删除,有可能没设置?虽然目前为止没碰到这样的...
- if (cookiePair.expires !== null && new Date().getTime() >= cookiePair.expires) {
- onDeleteCookie(newValue, cookiePair.name, cookiePair.value || (currentCookieMap.get(cookiePair.name) || {}).value);
- return;
- }
-
- // 如果之前已经存在,则是修改
- if (currentCookieMap.has(cookiePair.name)) {
- onUpdateCookie(newValue, cookiePair.name, currentCookieMap.get(cookiePair.name).value, cookiePair.value);
- return;
- }
-
- // 否则则为添加
- onAddCookie(newValue, cookiePair.name, cookiePair.value);
- }
-
- function onReadCookie(cookieOriginalValue, cookieName, cookieValue) {
-
- }
-
- function onDeleteCookie(cookieOriginalValue, cookieName, cookieValue) {
- const valueStyle = `color: black; background: #E50000; font-size: ${consoleLogFontSize}px; font-weight: bold;`;
- const normalStyle = `color: black; background: #FF6766; font-size: ${consoleLogFontSize}px;`;
-
- const message = [
-
- normalStyle,
- now(),
-
- normalStyle,
- "JS Cookie Monitor: ",
-
- normalStyle,
- "delete cookie, cookieName = ",
-
- valueStyle,
- `${cookieName}`,
-
- ...(() => {
- if (!cookieValue) {
- return [];
- }
- return [
- normalStyle,
- ", value = ",
-
- valueStyle,
- `${cookieValue}`,
- ];
- })(),
-
- normalStyle,
- `, code location = ${getCodeLocation()}`
- ];
- console.log(genFormatArray(message), ...message);
-
- testDebuggerRules(cookieOriginalValue, "delete", cookieName, cookieValue);
- }
-
- function onUpdateCookie(cookieOriginalValue, cookieName, oldCookieValue, newCookieValue) {
-
- const cookieValueChanged = oldCookieValue !== newCookieValue;
-
- if (ignoreUpdateButNotChanged && !cookieValueChanged) {
- return;
- }
-
- const valueStyle = `color: black; background: #FE9900; font-size: ${consoleLogFontSize}px; font-weight: bold;`;
- const normalStyle = `color: black; background: #FFCC00; font-size: ${consoleLogFontSize}px;`;
-
- const message = [
-
- normalStyle,
- now(),
-
- normalStyle,
- "JS Cookie Monitor: ",
-
- normalStyle,
- "update cookie, cookieName = ",
-
- valueStyle,
- `${cookieName}`,
-
- ...(() => {
- if (cookieValueChanged) {
- return [
- normalStyle,
- `, oldValue = `,
-
- valueStyle,
- `${oldCookieValue}`,
-
- normalStyle,
- `, newValue = `,
-
- valueStyle,
- `${newCookieValue}`
- ]
- } else {
- return [
- normalStyle,
- `, value = `,
-
- valueStyle,
- `${newCookieValue}`,
- ];
- }
- })(),
-
- normalStyle,
- `, valueChanged = `,
-
- valueStyle,
- `${cookieValueChanged}`,
-
- normalStyle,
- `, code location = ${getCodeLocation()}`
- ];
- console.log(genFormatArray(message), ...message);
-
- testDebuggerRules(cookieOriginalValue, "update", cookieName, newCookieValue, cookieValueChanged);
- }
-
- function onAddCookie(cookieOriginalValue, cookieName, cookieValue) {
- const valueStyle = `color: black; background: #669934; font-size: ${consoleLogFontSize}px; font-weight: bold;`;
- const normalStyle = `color: black; background: #65CC66; font-size: ${consoleLogFontSize}px;`;
-
- const message = [
-
- normalStyle,
- now(),
-
- normalStyle,
- "JS Cookie Monitor: ",
-
- normalStyle,
- "add cookie, cookieName = ",
-
- valueStyle,
- `${cookieName}`,
-
- normalStyle,
- ", cookieValue = ",
-
- valueStyle,
- `${cookieValue}`,
-
- normalStyle,
- `, code location = ${getCodeLocation()}`
- ];
- console.log(genFormatArray(message), ...message);
-
- testDebuggerRules(cookieOriginalValue, "add", cookieName, cookieValue);
- }
-
- function now() {
- // 东八区专属...
- return "[" + new Date(new Date().getTime() + 1000 * 60 * 60 * 8).toJSON().replace("T", " ").replace("Z", "") + "] ";
- }
-
- function genFormatArray(messageAndStyleArray) {
- const formatArray = [];
- for (let i = 0, end = messageAndStyleArray.length / 2; i < end; i++) {
- formatArray.push("%c%s");
- }
- return formatArray.join("");
- }
-
- // 解析当前代码的位置,以便能够直接定位到事件触发的代码位置
- function getCodeLocation() {
- const callstack = new Error().stack.split("\n");
- while (callstack.length && callstack[0].indexOf("cc11001100") === -1) {
- callstack.shift();
- }
- callstack.shift();
- callstack.shift();
-
- return callstack[0].trim();
- }
-
- /**
- * 将本次设置cookie的字符串解析为容易处理的形式
- *
- * @param cookieString
- * @returns {CookiePair}
- */
- function parseSetCookie(cookieString) {
- // uuid_tt_dd=10_37476713480-1609821005397-659114; Expires=Thu, 01 Jan 1025 00:00:00 GMT; Path=/; Domain=.csdn.net;
- const cookieStringSplit = cookieString.split(";");
- const {key, value} = splitKeyValue(cookieStringSplit.length && cookieStringSplit[0])
- const map = new Map();
- for (let i = 1; i < cookieStringSplit.length; i++) {
- let {key, value} = splitKeyValue(cookieStringSplit[i]);
- map.set(key.toLowerCase(), value);
- }
- // 当不设置expires的时候关闭浏览器就过期
- const expires = map.get("expires");
- return new CookiePair(key, value, expires ? new Date(expires).getTime() : null)
- }
-
- /**
- * 把按照等号=拼接的key、value字符串切分开
- * @param s
- * @returns {{value: string, key: string}}
- */
- function splitKeyValue(s) {
- let key = "", value = "";
- const keyValueArray = (s || "").split("=");
-
- if (keyValueArray.length) {
- key = decodeURIComponent(keyValueArray[0].trim());
- }
-
- if (keyValueArray.length > 1) {
- value = decodeURIComponent(keyValueArray.slice(1).join("=").trim());
- }
-
- return {
- key,
- value
- }
- }
-
- /**
- * 获取当前所有已经设置的cookie
- *
- * @returns {Map<string, CookiePair>}
- */
- function getCurrentCookieMap() {
- const cookieMap = new Map();
- if (!document.cookie) {
- return cookieMap;
- }
- document.cookie.split(";").forEach(x => {
- const {key, value} = splitKeyValue(x);
- cookieMap.set(key, new CookiePair(key, value));
- });
- return cookieMap;
- }
-
- class DebuggerRule {
-
- constructor(eventName, cookieNameFilter, cookieValueFilter) {
- this.eventName = eventName;
- this.cookieNameFilter = cookieNameFilter;
- this.cookieValueFilter = cookieValueFilter;
- }
-
- test(eventName, cookieName, cookieValue) {
- return this.testByEventName(eventName) && (this.testByCookieNameFilter(cookieName) || this.testByCookieValueFilter(cookieValue));
- }
-
- testByEventName(eventName) {
- // 如果此类型的事件断点没有开启,则直接返回
- if (!enableEventDebugger[eventName]) {
- return false;
- }
- // 事件不设置则匹配任何事件
- if (!this.eventName) {
- return true;
- }
- return this.eventName === eventName;
- }
-
- testByCookieNameFilter(cookieName) {
- if (!cookieName || !this.cookieNameFilter) {
- return false;
- }
- if (typeof this.cookieNameFilter === "string") {
- return this.cookieNameFilter === cookieName;
- }
- if (this.cookieNameFilter instanceof RegExp) {
- return this.cookieNameFilter.test(cookieName);
- }
- return false;
- }
-
- testByCookieValueFilter(cookieValue) {
- if (!cookieValue || !this.cookieValueFilter) {
- return false;
- }
- if (typeof this.cookieValueFilter === "string") {
- return this.cookieValueFilter === cookieValue;
- }
- if (this.cookieValueFilter instanceof RegExp) {
- return this.cookieValueFilter.test(cookieValue);
- }
- return false;
- }
-
- }
-
- // 将规则整理为标准规则
- // 解析起来并不复杂,但是有点过于灵活,要介绍清楚打的字要远超代码,所以我文档里就随便介绍下完事有缘人会自己读代码的...
- (function standardizingRules() {
-
- // 用于收集规则配置错误,在解析完所有规则之后一次把事情说完
- const ruleConfigErrorMessage = [];
-
- const newRules = [];
- while (debuggerRules.length) {
- const rule = debuggerRules.pop();
-
- // 如果是字符串或者正则
- if (typeof rule === "string" || rule instanceof RegExp) {
- newRules.push(new DebuggerRule(null, rule, null));
- continue;
- }
-
- // 如果是字典对象,则似乎有点麻烦
- for (let key in rule) {
- let events = null;
- let cookieNameFilter = null;
- let cookieValueFilter = null;
- if (key === "events") {
- events = rule["events"] || "add | delete | update";
- cookieNameFilter = rule["name"]
- cookieValueFilter = rule["value"];
- } else if (key !== "name" && key !== "value") {
- events = key;
- cookieNameFilter = rule[key];
- cookieValueFilter = rule["value"];
- } else {
- // name & value ignore
- continue;
- }
- // cookie的名字是必须配置的
- if (!cookieNameFilter) {
- const errorMessage = `必须为此条规则 ${JSON.stringify(rule)} 配置一个Cookie Name匹配条件`;
- ruleConfigErrorMessage.push(errorMessage);
- continue;
- }
- events.split("|").forEach(eventName => {
- eventName = eventName.trim();
- if (eventName !== "add" && eventName !== "delete" && eventName !== "update") {
- const errorMessage = `此条规则 ${JSON.stringify(rule)} 的Cookie事件名字配置错误,必须为 add、delete、update 三种之一或者|分隔的组合,您配置的是 ${eventName},仅忽略此无效事件`;
- ruleConfigErrorMessage.push(errorMessage);
- return;
- }
- newRules.push(new DebuggerRule(eventName, cookieNameFilter, cookieValueFilter));
- })
- }
- }
-
- // 配置错误的规则会被忽略,其它规则照常生效
- if (ruleConfigErrorMessage.length) {
- // 错误打印字号要大1.5倍,不信你注意不到
- const errorMessageStyle = `color: black; background: #FF2121; font-size: ${Math.round(consoleLogFontSize * 1.5)}px; font-weight: bold;`;
- let errorMessage = now() + "JS Cookie Monitor: 以下Cookie断点规则配置错误,已忽略: \n ";
- for (let i = 0; i < ruleConfigErrorMessage.length; i++) {
- errorMessage += `${i + 1}. ${ruleConfigErrorMessage[i]}\n`;
- }
- console.log("%c%s", errorMessageStyle, errorMessage);
- }
-
- // 是否需要合并重复规则呢?
- // 还是不了,而且静态合并对于正则没办法,用户应该知道自己在做什么
-
- for (let rule of newRules) {
- debuggerRules.push(rule);
- }
- })();
-
- /**
- * 当断点停在这里时查看这个方法各个参数的值能够大致了解断点情况
- *
- * 鼠标移动到变量上查看变量的值
- *
- * @param setCookieOriginalValue 目标网站使用document.cookie时赋值的原始值是什么,这个值没有 URL decode,
- * 如果要分析它请拷贝其值到外面分析,这里只是提供一种可能性
- * @param eventName 本次是发生了什么事件,add增加新cookie、update更新cookie的值、delete表示cookie被删除
- * @param cookieName 本脚本对setCookieOriginalValue解析出的cookie名字,会被URL decode
- * @param cookieValue 本脚本对setCookieOriginalValue解析出的cookie值,会被URL decode
- * @param cookieValueChanged 只在update事件时有值,用于帮助快速确定本次update有没有修改cookie的值
- */
- function testDebuggerRules(setCookieOriginalValue, eventName, cookieName, cookieValue, cookieValueChanged) {
- for (let rule of debuggerRules) {
- // rule当前的值表示被什么断点规则匹配到了,可以把鼠标移动到rule变量上查看
- if (rule.test(eventName, cookieName, cookieValue)) {
- debugger;
- }
- }
- }
-
- /**
- * 用于在本脚本内部表示一条cookie以方便程序处理
- * 这里只取了有用的信息,忽略了域名及路径,也许需要加上这两个限制?但现在这个脚本已经够臃肿了...
- */
- class CookiePair {
-
- /**
- *
- * @param name Cookie的名字
- * @param value Cookie的值
- * @param expires Cookie的过期时间
- */
- constructor(name, value, expires) {
- this.name = name;
- this.value = value;
- this.expires = expires;
- }
-
- }
-
- }
-
- )();