node.js编写反向代理转发https
摘要:node.js编写反向代理转发https const crypto = require("crypto"); const md5 = function (str) { const md5 = crypto.createHash('md5'); md5.update(str); return md5.
阅读全文
posted @
2022-12-30 22:23
项希盛
阅读(456)
推荐(0) 编辑
bat批处理解决用户临时文件会话问题
摘要:复制下面代码保存成bat然后运行即可 @echo off reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList" /f "*.bak" /k>profile-bak.txt for /f "skip=1 de
阅读全文
posted @
2022-12-19 20:27
项希盛
阅读(42)
推荐(0) 编辑
Node.JS编写的DNS分发器
摘要:Node.JS编写的DNS分发器 const dgram = require('dgram'); //获取本地时间字符串 function getDateStr() { return (new Date()).toLocaleString(); } function checkDomainOne(s
阅读全文
posted @
2022-12-04 20:38
项希盛
阅读(65)
推荐(0) 编辑