<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>天马阁 - 其他相关综合</title>
    <link>https://tianmage.com/forum-55-1.html</link>
    <description>Latest 20 threads of 其他相关综合</description>
    <copyright>Copyright(C) 天马阁</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Fri, 15 May 2026 01:26:01 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://tianmage.com/static/image/common/logo_88_31.gif</url>
      <title>天马阁</title>
      <link>https://tianmage.com/</link>
    </image>
    <item>
      <title>分享Win7过DSE和PatchGuard经验</title>
      <link>https://tianmage.com/thread-90265-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>其他相关综合</category>
      <author>风来时狂放</author>
      <pubDate>Mon, 11 Mar 2024 05:37:24 +0000</pubDate>
    </item>
    <item>
      <title>32位内核-通过进程ID获得进程的对应路径</title>
      <link>https://tianmage.com/thread-90259-1-1.html</link>
      <description><![CDATA[////////////////////////////////////////////////
//函数功能：通过进程ID获得进程的对应路径
//参    数：输入：dwProcessId，进程ID
//          输出：ProcessImagePath，进程所在路径，
//          这个变量必须先分配好空间
//返 回 值：NTSTATUS
///////////// ...]]></description>
      <category>其他相关综合</category>
      <author>123456811</author>
      <pubDate>Mon, 11 Mar 2024 05:34:13 +0000</pubDate>
    </item>
    <item>
      <title>win7 遍历DPC源码</title>
      <link>https://tianmage.com/thread-90253-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>其他相关综合</category>
      <author>刘冠华</author>
      <pubDate>Mon, 11 Mar 2024 05:31:39 +0000</pubDate>
    </item>
    <item>
      <title>教你 如何进入VMX（Intel） 实现秒杀过保护</title>
      <link>https://tianmage.com/thread-90247-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>其他相关综合</category>
      <author>飞龙在天</author>
      <pubDate>Mon, 11 Mar 2024 05:29:18 +0000</pubDate>
    </item>
    <item>
      <title>CRC校验方法,用C语言实现源代码</title>
      <link>https://tianmage.com/thread-90241-1-1.html</link>
      <description><![CDATA[CRC(Cyclic Redundancy Check)校验应用较为广泛，以前为了处理简单，在程序中大多数采用LRC(Longitudinal Redundancy Check)校验，LRC校验很好理解，编程实现简单。用了一天时间研究了CRC的C语言实现，理解和掌握了基本原理和C语言编程。结合自己的理解简单写下来。

1 ...]]></description>
      <category>其他相关综合</category>
      <author>井底燕雀傥</author>
      <pubDate>Mon, 11 Mar 2024 05:26:39 +0000</pubDate>
    </item>
    <item>
      <title>驱动程序与应用程序之间共享内存</title>
      <link>https://tianmage.com/thread-90235-1-1.html</link>
      <description><![CDATA[随手写点自己碰到的问题。在写内核模式的驱动程序时，经常需要做的就是驱动程序和应用程序之间的通信。如应层程序和驱动程序之间共享事件来完成同步，事件可以有应用程序来创建然后将其句柄下发到驱动程序中，驱动程序进行引用等操作，就可以实现共享事件了。这里就不说 ...]]></description>
      <category>其他相关综合</category>
      <author>宇宙无限</author>
      <pubDate>Mon, 11 Mar 2024 05:23:53 +0000</pubDate>
    </item>
    <item>
      <title>【突破DNF掉线，提高挂的稳定性】</title>
      <link>https://tianmage.com/thread-90219-1-1.html</link>
      <description><![CDATA[首先我们必须了解检测与反检测：
一.内存探测法 服务器发送个Paket检测游戏内存，然后返回服务器。这对游戏公开的挂威胁大。
反侦测基本思想是拦截Peket,返回伪装Peket。
二.DLL扫描游  戏反外挂系统（Module32First/Module32Next）扫描游戏中的DLL，返回。
反侦测思想 ...]]></description>
      <category>其他相关综合</category>
      <author>123456811</author>
      <pubDate>Wed, 06 Mar 2024 01:26:25 +0000</pubDate>
    </item>
    <item>
      <title>认识与Hook SYSENTER 加源码</title>
      <link>https://tianmage.com/thread-90213-1-1.html</link>
      <description><![CDATA[其实所有的HOOK，都基本是一样道理。就是勾住你的目标函数，实现你自己的功能。只要你掌握了，HOOK的原理。剩下的就是寻找目标函数了。

     今天回忆一下 HOOK SYSENTER。

一：认识SYSENTER

   SYSENTER是一个东西？大家都知道调用门，陷阱门，任务门（这里没有照片 ...]]></description>
      <category>其他相关综合</category>
      <author>刘冠华</author>
      <pubDate>Wed, 06 Mar 2024 01:23:10 +0000</pubDate>
    </item>
    <item>
      <title>Wow64（32位进程）注入DLL到64位进程</title>
      <link>https://tianmage.com/thread-90207-1-1.html</link>
      <description><![CDATA[DLL注入

向其他进程注入DLL通常的做法是通过调用CreateRemoteThread这个API在目标进程内创建一个远程线程，用这个线程来调用LoadLibraryA或LoadLibraryW（下文统称LoadLibrary）以实现让目标进程加载指定的DLL文件。使用CreateRemoteThread创建一个远程线程需要传入一 ...]]></description>
      <category>其他相关综合</category>
      <author>飞龙在天</author>
      <pubDate>Wed, 06 Mar 2024 01:19:42 +0000</pubDate>
    </item>
    <item>
      <title>另类保护文件的方法</title>
      <link>https://tianmage.com/thread-90201-1-1.html</link>
      <description><![CDATA[1、先将编译好的文件加壳加密（假设为2.exe）；


2、建一个源程序将这个要保护的程序添加进资源里后编译成另一个可执行文件(1.exe)；


3、然后就将1.exe做为主程序来运行，运行后写出资源里的真正程序(2.exe)然后结束1.exe运行；


4、在2.exe结束运行后从内部再运行1 ...]]></description>
      <category>其他相关综合</category>
      <author>井底燕雀傥</author>
      <pubDate>Wed, 06 Mar 2024 01:15:22 +0000</pubDate>
    </item>
    <item>
      <title>分享CF地址查找方法！非原创都是收集整理来的！</title>
      <link>https://tianmage.com/thread-90195-1-1.html</link>
      <description><![CDATA[CF地址的找法：

穿墙(对着新手练习里的墙搜索):1113587712  修改方法(整数型):3231711232
防闪光搜索方法：被闪搜1。无被闪搜0
切换背包  开包搜0，关1
内存透视  团队  按  insert俩下  出来人物名称 后 搜索1   生化搜0
幽灵显名 暴破搜1 幽灵搜3  写1
自动喊话  搜 ...]]></description>
      <category>其他相关综合</category>
      <author>宇宙无限</author>
      <pubDate>Wed, 06 Mar 2024 01:11:27 +0000</pubDate>
    </item>
    <item>
      <title>HOOK 低层键盘消息---WH_KEYBOARD_LL</title>
      <link>https://tianmage.com/thread-90184-1-1.html</link>
      <description><![CDATA[LRESULT CALLBACK LowLevelKeyboardProc (INT nCode, WPARAM wParam, LPARAM lParam)
{
        // By returning a non-zero value from the hook procedure, the
        // message does not get passed to the target window
        KBDLLHOOKSTRUCT *pkbhs = (K ...]]></description>
      <category>其他相关综合</category>
      <author>刘冠华</author>
      <pubDate>Tue, 05 Mar 2024 01:32:04 +0000</pubDate>
    </item>
    <item>
      <title>易语言 钩子 (钩子HOOK与APIHOOK是不一样的)</title>
      <link>https://tianmage.com/thread-90178-1-1.html</link>
      <description><![CDATA[钩子 原英文名称 Hook ，钩子的意思是指拦截或截获。作用就是拦截程序中交互的数据，先经过我们预定的钩子处理接口程序，处理过后，再交还给原处理程序，或者干脆阻止，吃掉这些数据，让原处理程序什么也得不到。

钩子原来是Windows操作系统常用来检查系统与程序间通信 ...]]></description>
      <category>其他相关综合</category>
      <author>飞龙在天</author>
      <pubDate>Tue, 05 Mar 2024 01:27:54 +0000</pubDate>
    </item>
    <item>
      <title>关于什么是游戏的基址以及为什么有偏移读取人特属性的...</title>
      <link>https://tianmage.com/thread-90172-1-1.html</link>
      <description><![CDATA[C语言的理解方式

全局基址：它是所有地址的基础。

人物基址： 【全局基址】+某个偏移值1
人物各个属性地址：【人物基址】+某个偏移值1
技能基址： 【全局基址】+某个偏移值2
包裹基址： 【全局基址】+某个偏移值3
怪物基址： 【全局基址】+某个偏移值4
物品基址： 【 ...]]></description>
      <category>其他相关综合</category>
      <author>井底燕雀傥</author>
      <pubDate>Tue, 05 Mar 2024 01:23:43 +0000</pubDate>
    </item>
    <item>
      <title>无聊写篇如何简单的降低网络游戏CPU占用率的方法..</title>
      <link>https://tianmage.com/thread-90166-1-1.html</link>
      <description><![CDATA[具体实现步骤:
1.HOOK Direct3DCreate9来获得类型为LPDIRECT3D9的Direct3D对象的接口指针,它有一个成员函数为 IDirect3D9::CreateDevice,所以,只要根据Direct3D对象接口指针找到Direct3D对象的虚函数表,再根据虚函数表确定IDirect3D9::CreateDevice的内存地址,就可以 ...]]></description>
      <category>其他相关综合</category>
      <author>宇宙无限</author>
      <pubDate>Tue, 05 Mar 2024 01:19:49 +0000</pubDate>
    </item>
    <item>
      <title>CF锁定准心搜索方法</title>
      <link>https://tianmage.com/thread-90156-1-1.html</link>
      <description><![CDATA[刚刚研究的锁定准心的搜索方法。
搜索4字节。
搜索不要太快，有点延时。
切换出刀，搜索29
警察的手枪，搜索16
匪徒的手枪，搜索17
目前锁定29或者-1，准心大小在开枪时就不变了，貌似还有消音的效果。
 ...]]></description>
      <category>其他相关综合</category>
      <author>刘冠华</author>
      <pubDate>Mon, 04 Mar 2024 01:32:28 +0000</pubDate>
    </item>
    <item>
      <title>浅谈易语言 C++多线程</title>
      <link>https://tianmage.com/thread-90150-1-1.html</link>
      <description><![CDATA[一、简介
1、线程句柄与线程：
①、关闭线程句柄对线程的运行不会有影响，关闭句柄并不代表结束线程；
②、线程句柄是用于对线程挂起、恢复、结束等操作，线程创建后，都会有一个线程句柄，如果不需要对线程句柄进行操作，建议立即关闭线程句柄；
③、线程句柄必须在适 ...]]></description>
      <category>其他相关综合</category>
      <author>飞龙在天</author>
      <pubDate>Mon, 04 Mar 2024 01:28:32 +0000</pubDate>
    </item>
    <item>
      <title>最新版天龙八部2寻路CALL易语言源码</title>
      <link>https://tianmage.com/thread-90144-1-1.html</link>
      <description><![CDATA[特征码：  

[*]\' 0042F3D8 8B45 0C MOV EAX,DWORD PTR SS:[EBP+C]
[*]\' 0042F3DB 8B4D 08 MOV ECX,DWORD PTR SS:[EBP+8]
[*]\' 0042F3DE 50 PUSH EAX
[*]\' 0042F3DF 51 PUSH ECX
[*]\' 0042F3E0 8BCE MOV ECX,ESI
[*]\' 0042F3E2 E8 F9F9FFFF CALL Game.0042EDE0
[*]]]></description>
      <category>其他相关综合</category>
      <author>井底燕雀傥</author>
      <pubDate>Mon, 04 Mar 2024 01:24:32 +0000</pubDate>
    </item>
    <item>
      <title>智能辅助技术学习纲要 - 新手必看【精华】</title>
      <link>https://tianmage.com/thread-90138-1-1.html</link>
      <description><![CDATA[这篇文章不错，所以发上来给大家看看。


首先我假设大家是个完全没有任何基础的新人,但要会打字的哦,并且要有强烈的技术求知欲,和大把大把的时间.

辅助技术所涉及的很多很多.并且入门是比较难的,不过大家表怕,入门了后,一切都会变得简单有趣


第一要求 学会编程
     ...]]></description>
      <category>其他相关综合</category>
      <author>宇宙无限</author>
      <pubDate>Mon, 04 Mar 2024 01:19:51 +0000</pubDate>
    </item>
    <item>
      <title>枚举DPC定时器源码(代码简洁)</title>
      <link>https://tianmage.com/thread-90129-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>其他相关综合</category>
      <author>飞龙在天</author>
      <pubDate>Sun, 03 Mar 2024 01:28:15 +0000</pubDate>
    </item>
  </channel>
</rss>