摘要: 先做个注入器 // Injector.cpp #include <windows.h> #include <tlhelp32.h> #include <tchar.h> #include <iostream> BOOL InjectDLL(DWORD dwPID, const wchar_t* dl 阅读全文
posted @ 2025-08-12 11:08 huh&uh 阅读(9) 评论(0) 推荐(0)
摘要: IFEO 劫持,全称是 Image File Execution Options 劫持,是一种经典的 Windows 注册表劫持技术,常用于: 调试器注入(调试器劫持) 替换可执行文件(木马植入/后门) 权限维持(持续存在) 沙箱检测绕过 / 自动启动注入器 原理简介 Windows 注册表中的 I 阅读全文
posted @ 2025-08-11 22:52 huh&uh 阅读(40) 评论(0) 推荐(0)
摘要: IAT(Import Address Table)Hook 是一种 通过修改导入表中的函数地址来实现 API 劫持 的技术,适合针对当前进程的 API 替换,不依赖于 DLL 注入或系统级钩子。 本例目标 劫持 CreateFileW(或 CreateFileA)函数: 拦截调用 输出或修改文件路径 阅读全文
posted @ 2025-08-11 22:38 huh&uh 阅读(82) 评论(0) 推荐(0)
摘要: 一、电机A接线说明 元件TB6612FNG 引脚功能接线说明ESP32GPIO 25PWMA(PWM)控制转速ESP32GPIO 26AIN1控制方向ESP32GPIO 27AIN2控制方向ESP32GPIO 33STBY芯片使能电机 AA01 / A02电机输出接到电机两端(无正负,反转调换)电源 阅读全文
posted @ 2025-08-11 22:02 huh&uh 阅读(84) 评论(0) 推荐(0)
摘要: 模块引脚接线说明ESP32GPIO22→ MAX98357A DINESP32GPIO26→ MAX98357A BCLKESP32GPIO25→ MAX98357A LRC(或 WS)ESP325V→ MAX98357A VIN(推荐使用 5V)ESP32GND→ MAX98357A GNDMAX 阅读全文
posted @ 2025-08-11 21:54 huh&uh 阅读(139) 评论(0) 推荐(0)
摘要: file address: https://files.cnblogs.com/files/blogs/773707/tunctl.zip?t=1699629591&download=true strtol 是 C 语言标准库中的一个函数,用于将字符串转换为长整型数(long)。 long strt 阅读全文
posted @ 2023-11-10 23:16 huh&uh 阅读(63) 评论(0) 推荐(0)
摘要: 点击查看代码 #include <stdio.h> #include <windows.h> struct MyStruct{ int a; char b; float c; }; #define print(str,format,val) printf(""#str"%"#format"\n",( 阅读全文
posted @ 2023-09-18 22:35 huh&uh 阅读(39) 评论(0) 推荐(0)
摘要: # 网络 ## 网络性能指标 ### 速率 比特(bit/s或bps)是计算机中最小的数据量单位。 $$ 1bit=8Byte(字节) 1KB=2^{10}B 1MB=2^{10}KB=2^{20}B 1GB=2^{10}MB=2^{20}KB=2^{30}B 1TB=2^{10}GB=2^{20} 阅读全文
posted @ 2023-09-03 11:57 huh&uh 阅读(112) 评论(0) 推荐(0)
摘要: `java` ``` import java.io.File; import java.util.Scanner; import java.io.IOException; import java.nio.file.Files; import java.nio.file.attribute.DosFi 阅读全文
posted @ 2023-08-29 23:44 huh&uh 阅读(24) 评论(0) 推荐(0)
摘要: #1.维权 `cmd` ``` net user 用户名$ 密码 /add #$在cmd net user不显示但在控制面板账户管理里面显示 net localgroup administrators 用户名$ /add netsh advfirewall firewall add rule nam 阅读全文
posted @ 2023-08-29 23:42 huh&uh 阅读(18) 评论(0) 推荐(0)