C# Code for Downloading Stock Symbols z
摘要:http://www.jarloo.com/download-stock-symbols/If your using C# you can easily get the XML data using LINQ:?1234567891011string url = "http://www.batstr...
阅读全文
posted @
2014-06-03 18:22
武胜-阿伟
阅读(709)
推荐(0) 编辑
Reading or Writing to Another Processes Memory in C# z
摘要:http://www.jarloo.com/reading-and-writing-to-memory/Declarations[Flags]public enum ProcessAccessFlags : uint{ All = 0x001F0FFF, Terminate = 0x00...
阅读全文
posted @
2014-06-03 18:08
武胜-阿伟
阅读(482)
推荐(1) 编辑
C# Read/Write another Process' Memory z
摘要:http://www.codeproject.com/Articles/670373/Csharp-Read-Write-another-Process-MemoryThis article aims to show you how to read/write a process' memory u...
阅读全文
posted @
2014-06-03 18:01
武胜-阿伟
阅读(632)
推荐(0) 编辑
程序破解之 API HOOK技术 z
摘要:API HOOK,就是截获API调用的技术,在程序对一个API调用之前先执行你的函数,然后根据你的需要可以执行缺省的API调用或者进行其他处理,假设如果想截获一个进程对网络的访问,一般是几个socket API : recv,recvfrom, send, sendto等等,当然你可以用网络抓包工具...
阅读全文
posted @
2014-06-03 17:06
武胜-阿伟
阅读(8301)
推荐(1) 编辑