menu 夹击妹抖
底部图片
标签 技术栈 下的文章
message
2025-03-19 19:19:00

js插入css样式,有效屏蔽显示在网页源代码,文件名伪装插入jsurl行,拆分css混淆加密放到别的js行,链接层套娃。
const style = document.createElement('style');
style.textContent = `

`;
document.head.appendChild(style);

const style = new CSSStyleSheet();
style.replaceSync(`

`);
document.adoptedStyleSheets = [...document.adoptedStyleSheets, style];

css编辑器
2025-03-02 |0 条评论
备用链接备用链接github
message
2025-03-01 15:56:00

清理缓存文件目录

~/Library/Caches

终端执行命令清理,前往文件夹记录。

plutil -replace GoToField -string '' ~/Library/Preferences/com.apple.finder.plist && plutil -replace GoToFieldHistory -json '[]' ~/Library/Preferences/com.apple.finder.plist && killall Finder
加载中... 到底了啦
加载更多