Files
lantern-vpn/README.md
2020-05-01 09:14:45 +08:00

36 lines
1.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
**侵权请联系:** youlianboshi@gmail.com
非常感谢蓝灯官方提供VPN服务蓝灯破解版解压密码:youlianboshi
**油脸博士的订阅频道**
https://t.me/MTPdaili
__破解PC蓝灯核心代码__
```
HOOKDEF(ULONG, WINAPI, GetAdaptersAddresses,
__in ULONG Family,
__in ULONG Flags,
__reserved PVOID Reserved,
__out_bcount_opt(*SizePointer) PIP_ADAPTER_ADDRESSES AdapterAddresses,
__inout PULONG SizePointer
)
{
srand( (unsigned)time( NULL ) );
ULONG ret = Real_GetAdaptersAddresses(Family, Flags, Reserved, AdapterAddresses, SizePointer);
while(AdapterAddresses){
if (AdapterAddresses->PhysicalAddressLength >=5 ){
AdapterAddresses->PhysicalAddress[0] += rand();
AdapterAddresses->PhysicalAddress[1] += rand();
AdapterAddresses->PhysicalAddress[2] += rand();
AdapterAddresses->PhysicalAddress[3] += rand();
AdapterAddresses->PhysicalAddress[4] += rand();
}
AdapterAddresses = AdapterAddresses->Next;
}
return ret;
}
```