简单破解Windows系统管理员密码
摘要:首先关机,然后挂载系统盘 进到\Windows\System32目录 例如 cd /D F:\Windows\system32 然后通过下面代码替换【讲述人】 takeown.exe /F narrator.exe icacls.exe narrator.exe /grant administrat
阅读全文
posted @
2023-10-25 18:07
项希盛
阅读(190)
推荐(0) 编辑
SqlServer中获取数据库中每个表的行数
摘要:SqlServer中获取数据库中每个表的行数 CREATE TABLE #RowCounts(NumberOfRows BIGINT,TableName VARCHAR(128)) EXEC sp_MSForEachTable 'INSERT INTO #RowCounts SELECT COUNT
阅读全文
posted @
2023-10-11 09:41
项希盛
阅读(154)
推荐(0) 编辑
Node.js实现websocket服务器,转换UDP数据
摘要:Node.js实现websocket服务器,转换UDP数据 const dgram = require('dgram'); function udp_server() { const server = dgram.createSocket('udp4'); server.on('error', (e
阅读全文
posted @
2023-10-11 05:56
项希盛
阅读(104)
推荐(0) 编辑
C#实现抓包,并过滤UDP
摘要:C#实现抓包,并过滤UDP using PacketDotNet; using SharpPcap; using SharpPcap.LibPcap; using System; using System.Linq; using System.Net.Sockets; using System.Te
阅读全文
posted @
2023-10-11 05:56
项希盛
阅读(607)
推荐(0) 编辑