Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.
You must be logged in to block users.
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
HEVD
C 2
天问之路
C++ 6
Forked from yeyintminthuhtut/Awesome-Advanced-Windows-Exploitation-References
List of Awesome Advanced Windows Exploitation References
Forked from ExpLife0011/awesome-windows-kernel-security-development
windows kernel security development
Forked from sajjadium/ctf-archives
CTF Archives: Collection of CTF Challenges.
JavaScript 1
Python
ptr=(void *)((int)ptr+24); 可以改成下面,因为int强制类型转换产生截断,最终得到的指针并不正确 ptr = (void *)((char*)ptr+24);
ptr=(void *)((int)ptr+24);
ptr = (void *)((char*)ptr+24);
Seeing something unexpected? Take a look at the GitHub profile guide.