随笔 - 192  文章 - 0  评论 - 14  阅读 - 24万
10 2023 档案
简单破解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) 推荐(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) 推荐(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) 推荐(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) 推荐(0) 编辑

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示