<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by ChiuChern</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Sat, 13 Jun 2026 12:50:24 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Suggestion for Sound recording device for Guitar</title>
            <link>http://forum.lowyat.net/topic/1533269</link>
            <description>I am searching for a device to record my guitar sound as well as my sound. Please advice me which is the best way to get the best quality of sound &amp;amp; voice but doesn&amp;#39;t over spent.</description>
            <author>ChiuChern</author>
            <category>Musicians</category>
            <pubDate>Sat, 21 Aug 2010 01:04:06 +0800</pubDate>
        </item>
        <item>
            <title>How to compile into DLL n inject it?</title>
            <link>http://forum.lowyat.net/topic/904829</link>
            <description>i have a c++ code here but i m a newbie in c++. Juz wondering anyone could teach me how to compile this code into dll n inject it into a program?&lt;br /&gt;&lt;br /&gt;&lt;!--QuoteBegin--&gt;&lt;div class='quotetop'&gt;QUOTE&lt;/div&gt;&lt;div class='quotemain'&gt;&lt;!--QuoteEBegin--&gt;/************************************************** *******************&lt;br /&gt;** XTrap Bypass **&lt;br /&gt;************************************************** ********************&lt;br /&gt;** Hacking Detected **&lt;br /&gt;** ---------------- **&lt;br /&gt;** 00435FA6 EB 35 All referenced text string, &amp;#39;Hacking detected&amp;#39; **&lt;br /&gt;** One line, up, change JNZ to JMP **&lt;br /&gt;** 0043CE36 EB 35 All referenced text string, &amp;#39;Hacking detected&amp;#39; **&lt;br /&gt;** One line, up, change JNZ to JMP **&lt;br /&gt;** 0043DCF0 EB 35 All referenced text string, &amp;#39;Hacking detected&amp;#39; **&lt;br /&gt;** One line, up, change JNZ to JMP **&lt;br /&gt;** 0043DCD1 EB 1F All referenced text string, &amp;#39;Hacking detected&amp;#39; **&lt;br /&gt;** Jump #1 change JNZ to JMP **&lt;br /&gt;** 0043DCE9 EB 07 All referenced text string, &amp;#39;Hacking detected&amp;#39; **&lt;br /&gt;** Jump #2 change JNZ to JMP **&lt;br /&gt;** **&lt;br /&gt;** IsDebuggerPresent **&lt;br /&gt;** ----------------- **&lt;br /&gt;** 00499517 90 Go to IsDebuggerPresent, do down and NOP first JNZ **&lt;br /&gt;** **&lt;br /&gt;** ZCheckHackProcess **&lt;br /&gt;** ----------------- **&lt;br /&gt;** 00441E35 EB 34 All referenced text string, &amp;#39;Hacking Detected&amp;#39; **&lt;br /&gt;** go up till start of function (PUSH -1), **&lt;br /&gt;** go to the local call, under it theres a **&lt;br /&gt;** TEST AL,AL, go down one more line, (JNZ) change **&lt;br /&gt;** it to JMP (Do this for all 3 &amp;#39;Hacking Detected&amp;#39; **&lt;br /&gt;** 00441E62 EB 2C **&lt;br /&gt;** 00441EBD EB 09 **&lt;br /&gt;** **&lt;br /&gt;** Abnormal Behavior **&lt;br /&gt;** ----------------- **&lt;br /&gt;** 00440353 E9 8A 00 00 00 All referenced text strings, **&lt;br /&gt;** &amp;#39;An abnormal behavior is detected.&amp;#39;, **&lt;br /&gt;** go up 2 lines, change the JE to JMP **&lt;br /&gt;************************************************** *******************/&lt;br /&gt;&lt;br /&gt;#include &amp;lt;windows.h&amp;gt;&lt;br /&gt;&lt;br /&gt;#define HackDetect1 0x00435FA6&lt;br /&gt;BYTE HD1[] = {0xEB, 0x35};&lt;br /&gt;#define HackDetect2 0x0043CE36&lt;br /&gt;BYTE HD2[] = {0xEB, 0x35};&lt;br /&gt;#define HackDetect3 0x0043DCF0&lt;br /&gt;BYTE HD3[] = {0xEB, 0x35};&lt;br /&gt;#define HackDetect4 0x0043DCD1&lt;br /&gt;BYTE HD4[] = {0xEB, 0x1F};&lt;br /&gt;#define HackDetect5 0x0043DCE9&lt;br /&gt;BYTE HD5[] = {0xEB, 0x07};&lt;br /&gt;#define IsDebuggerPresent 0x00499517&lt;br /&gt;BYTE IDP[] = {0x90};&lt;br /&gt;#define ZCheckHackProcess1 0x00441E35&lt;br /&gt;BYTE ZCHP1[] = {0xEB, 0x34};&lt;br /&gt;#define ZCheckHackProcess2 0x00441E62&lt;br /&gt;BYTE ZCHP2[] = {0xEB, 0x2C};&lt;br /&gt;#define ZCheckHackProcess3 0x00441EBD&lt;br /&gt;BYTE ZCHP3[] = {0xEB, 0x09};&lt;br /&gt;#define AbnormalBehavior 0x00440353&lt;br /&gt;BYTE AB[] = {0xE9, 0x8A, 0x00, 0x00, 0x00};&lt;br /&gt;&lt;br /&gt;//Write To Memory&lt;br /&gt;DWORD OldProtection;&lt;br /&gt;void WriteToMemory(DWORD Offset, DWORD Pointer, DWORD Length){&lt;br /&gt;VirtualProtect((void *)Offset, Length, PAGE_EXECUTE_READWRITE, &amp;amp;OldProtection);&lt;br /&gt;RtlMoveMemory((void *)Offset, (const void*)Pointer, Length);&lt;br /&gt;VirtualProtect((void *)Offset, Length, OldProtection, &amp;amp;OldProtection);&lt;br /&gt;}&lt;br /&gt;void ModifyMemory( BYTE *Offset, BYTE *ByteArray, DWORD Length){&lt;br /&gt;for(DWORD i = 0; i &amp;lt; Length; i++)&lt;br /&gt;WriteToMemory((DWORD)Offset + i, (DWORD)ByteArray + i, 1);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void Bypass()&lt;br /&gt;{&lt;br /&gt;ModifyMemory((BYTE*)HackDetect1, HD1, 2);&lt;br /&gt;ModifyMemory((BYTE*)HackDetect2, HD2, 2);&lt;br /&gt;//ModifyMemory((BYTE*)HackDetect3, HD3, 2);&lt;br /&gt;ModifyMemory((BYTE*)HackDetect4, HD4, 2);&lt;br /&gt;ModifyMemory((BYTE*)HackDetect5, HD5, 2);&lt;br /&gt;//ModifyMemory((BYTE*)IsDebuggerPresent, IDP, 1);&lt;br /&gt;//ModifyMemory((BYTE*)ZCheckHackProcess1, ZCHP1, 2);&lt;br /&gt;//ModifyMemory((BYTE*)ZCheckHackProcess2, ZCHP2, 2);&lt;br /&gt;//ModifyMemory((BYTE*)ZCheckHackProcess3, ZCHP3, 2);&lt;br /&gt;ModifyMemory((BYTE*)AbnormalBehavior, AB, 5);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;bool APIENTRY DllMain(HMODULE hModule, DWORD dwReason, LPVOID lpvReserved){&lt;br /&gt;if(dwReason == DLL_PROCESS_ATTACH){&lt;br /&gt;DisableThreadLibraryCalls(hModule);&lt;br /&gt;Bypass();&lt;br /&gt;return true;&lt;br /&gt;}&lt;br /&gt;return true;&lt;br /&gt;}&lt;!--QuoteEnd--&gt;&lt;/div&gt;&lt;!--QuoteEEnd--&gt;</description>
            <author>ChiuChern</author>
            <category>Codemasters</category>
            <pubDate>Mon, 12 Jan 2009 21:02:21 +0800</pubDate>
        </item>
        <item>
            <title>Laptop Adapter</title>
            <link>http://forum.lowyat.net/topic/535231</link>
            <description>I have a acer laptop power supply tat has fail 2 weeks ago..&lt;br /&gt;can it be repair or i need to buy a new 1?&lt;br /&gt;How much does the new 1 cost?? &lt;!--emo&amp;:cry:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/cry.gif' border='0' style='vertical-align:middle' alt='cry.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>ChiuChern</author>
            <category>Technical Support</category>
            <pubDate>Thu, 11 Oct 2007 22:40:58 +0800</pubDate>
        </item>
        <item>
            <title>[WTA]Port</title>
            <link>http://forum.lowyat.net/topic/455795</link>
            <description>I would like to ask how to unblock a port in windows?? i have a program tat needed to use another port but i dunno how to unblock it.</description>
            <author>ChiuChern</author>
            <category>Networks and Broadband</category>
            <pubDate>Sat, 12 May 2007 11:01:40 +0800</pubDate>
        </item>
        <item>
            <title>Port and Channel</title>
            <link>http://forum.lowyat.net/topic/455483</link>
            <description>Hi guys.. I have a few couple of question here.. &lt;br /&gt;&lt;br /&gt;1) I stay in a hostel tat uses wireless connection to connect to the internet. The problem is sometimes the DNS have some problem n the key port. Would it be some1 using all the ports or taking all the channel??&lt;br /&gt;&lt;br /&gt;2) The connection alwayz dc after a few minutes. In my hostel around 50 ppl r using the connection. Izzit becoz of the crowd tat made the connection dc?? &lt;br /&gt;&lt;br /&gt;Thx in advance..</description>
            <author>ChiuChern</author>
            <category>Networks and Broadband</category>
            <pubDate>Fri, 11 May 2007 16:56:13 +0800</pubDate>
        </item>
        <item>
            <title>WEBcAm</title>
            <link>http://forum.lowyat.net/topic/454091</link>
            <description>My gf juz bought a webcam n we use it for few months.. for the 1st few times it was ok but after around 1 month then it start to become blur.. n then it become blurer n blurer until i can c the shape onli.. It couldnt focus.. i dunno wats the real problem but did anyone encounter this b4???</description>
            <author>ChiuChern</author>
            <category>Technical Support</category>
            <pubDate>Tue, 08 May 2007 23:35:16 +0800</pubDate>
        </item>
        <item>
            <title>Airsnort, kismet, network stumbler, wireshark</title>
            <link>http://forum.lowyat.net/topic/437552</link>
            <description>Hi guys.. I got there few software tat i doesn&amp;#39;t noe how to use.. Can anyone tell me how to use airsnort on windows?? How to find wep using stumbler n airsnort.. Kismet is for Macintosh rite???</description>
            <author>ChiuChern</author>
            <category>Linux &amp;amp; Open Source Software</category>
            <pubDate>Thu, 05 Apr 2007 16:40:02 +0800</pubDate>
        </item>
        <item>
            <title>(laptop)Toshiba Satellite A135-S2276 price list?</title>
            <link>http://forum.lowyat.net/topic/425836</link>
            <description>can some1 tell me the price of this model(laptop) pls.</description>
            <author>ChiuChern</author>
            <category>Price &amp;amp; Dealers Guide</category>
            <pubDate>Tue, 13 Mar 2007 02:32:00 +0800</pubDate>
        </item>
        <item>
            <title>TCP Receive Window</title>
            <link>http://forum.lowyat.net/topic/348163</link>
            <description>Can anyone tell me wats the TCP receiveWindow number? Izzit 32767??? I m not sure coz i cant connect to msn n all the security web. The MTU i use is 1400 but i still cant connect.. I m using netgear router.</description>
            <author>ChiuChern</author>
            <category>Technical Support</category>
            <pubDate>Mon, 02 Oct 2006 10:19:21 +0800</pubDate>
        </item>
        <item>
            <title>Cant connect to Window Live Messenger</title>
            <link>http://forum.lowyat.net/topic/331831</link>
            <description>I have a problem here with netgear router. It is a MTU partial lost. I have change the MTU to 1400 but i still cannot solve the problem. I cant enter gmail n msn. Can anyone help me? Ty &lt;!--emo&amp;:stars:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/rclxub.gif' border='0' style='vertical-align:middle' alt='rclxub.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>ChiuChern</author>
            <category>Technical Support</category>
            <pubDate>Fri, 25 Aug 2006 13:57:07 +0800</pubDate>
        </item>
    </channel>
</rss>
