Page 1 of 2 12 LastLast
Results 1 to 15 of 24
  1. #1
    jhefrey's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    292
    Reputation
    11
    Thanks
    84
    My Mood
    Amused

    Swift Source Code [Edited]

    Code:
    #include <windows.h>
    #include <iostream>
    
    
    DWORD WINAPI Hacks(LPVOID)
    {
    	bool oneshot = true;
    	while(1)
    	{
    		DWORD CShellBase = (DWORD)GetModuleHandleA("CShell.dll");
    
         
       		if(oneshot) 
             	{
               		for(int i=0 ; i<445 ; i++)
              		{
              		 *(int*)( (*(DWORD*)((*(DWORD*)(CShellBase + 0x30845C
     ))+(4*i))) + 0x7F8) = 999999999 ;
        			}
    		}
    	}
    }
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
    if ( dwReason == DLL_PROCESS_ATTACH )
    {
    MessageBoxA(0, "This Hack was Made By Jhefreyzz ", "Successfully Injected", 0);
    system("start https://mpgh.net");
    CreateThread(NULL, NULL,Hacks, NULL, NULL, NULL);
    }
    return TRUE;
    }
    so its from swift code
    i edited some so that code will be sucessfully compiled
    in additional you can replace the lt client

    credits to : Swiftdude [Source Code]
    Me [ Editing some errors]


    All You have to do to this code
    is to compile
    and bypass it
    Last edited by jhefrey; 03-23-2011 at 04:52 AM.
    Press Thanks If I Helped You




  2. The Following 2 Users Say Thank You to jhefrey For This Useful Post:

    castel2 (03-26-2011),terobauz (08-09-2011)

  3. #2
    Victoria's Avatar
    Join Date
    Feb 2011
    Gender
    female
    Location
    Everywhere where love is♥
    Posts
    1,154
    Reputation
    -20
    Thanks
    94
    My Mood
    In Love

  4. #3
    jhefrey's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    292
    Reputation
    11
    Thanks
    84
    My Mood
    Amused
    yeah, try to compile https://www.mpgh.net/forum/242-crossf...re-source.html the post of swift that is source code it has error
    so i FIX the error
    swiftdude source code
    includes system function that opens mpgh.net or any site that would you replace from mpgh.net
    Last edited by jhefrey; 03-23-2011 at 05:07 AM.
    Press Thanks If I Helped You




  5. #4
    Gyurin's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Location
    \Wrong Section
    Posts
    588
    Reputation
    -54
    Thanks
    59
    My Mood
    Innocent
    Thank You .. Good Job

  6. #5
    A$IAN's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Germany
    Posts
    5,654
    Reputation
    274
    Thanks
    2,010
    My Mood
    Amused
    Not good. no there will come mass releases cuz leechers will just copy and paste this code -.-

    Btw this code is wrong cuz u still have to change something ^^
    Last edited by A$IAN; 03-23-2011 at 06:47 AM.
    ~Donater since 19th October 2011~
    ~Ex-Crossfire Minion || Resigned on 4th February 2012 ~
    Da fuck

  7. #6
    Code[VB]'s Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    CODER
    Posts
    608
    Reputation
    11
    Thanks
    702
    My Mood
    Bitchy
    hmmm if this realy work.. than you see next time a hack "menue"

  8. #7
    YaLTeR's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    56
    Reputation
    10
    Thanks
    11
    My Mood
    Amused
    Hey, can someone help me? Why this code is detected?

    Code:
    #include "windows.h"
    #include <iostream>
    using namespace std;
    
    DWORD WINAPI Main(LPVOID)
    {
    	while(GetModuleHandleA("CShell.dll") == NULL)
    		Sleep(150);
    
    	while(1)
    	{
    		DWORD CShellBase = (DWORD)GetModuleHandleA("CShell.dll");
    		DWORD WeaponBase = *(DWORD*)(CShellBase + 0x9F6544);
    
    		if(WeaponBase)
    		{
    			for(int i=0;i<445;i++)
    			{
    				DWORD Weapon = *(DWORD*)(WeaponBase + i * 4);
    
    				if(Weapon)
    				{
    					*(float*)(Weapon + 0x7F8) = FLT_MAX;
    				}
    			}
    		}
    
    		Sleep(100);
    	}
    
    	return 0;
    }
    
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    	DisableThreadLibraryCalls(hDll);
    	if ( dwReason == DLL_PROCESS_ATTACH )
    	{
    		MessageBoxA(0, "Inject Completed!", "Coded by YaLTeR", 0);
    		CreateThread(NULL, NULL, Main, NULL, NULL, NULL);
    	}
    	return TRUE;
    }
    Oh, I think I have figured it out, but I'm not sure.
    Last edited by YaLTeR; 03-23-2011 at 07:38 AM.
    SIG COMING

    IF I HELPED YOU, DON'T FORGET TO PRESS THANKS!

  9. #8
    Royku's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    G-Force.dll
    Posts
    3,015
    Reputation
    381
    Thanks
    3,308
    My Mood
    Devilish
    it dont work if i inject the dll crossfire wont popup

  10. #9
    jhefrey's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    292
    Reputation
    11
    Thanks
    84
    My Mood
    Amused
    Quote Originally Posted by YaLTeR View Post
    Hey, can someone help me? Why this code is detected?

    Code:
    #include "windows.h"
    #include <iostream>
    using namespace std;
    
    DWORD WINAPI Main(LPVOID)
    {
    	while(GetModuleHandleA("CShell.dll") == NULL)
    		Sleep(150);
    
    	while(1)
    	{
    		DWORD CShellBase = (DWORD)GetModuleHandleA("CShell.dll");
    		DWORD WeaponBase = *(DWORD*)(CShellBase + 0x9F6544);
    
    		if(WeaponBase)
    		{
    			for(int i=0;i<445;i++)
    			{
    				DWORD Weapon = *(DWORD*)(WeaponBase + i * 4);
    
    				if(Weapon)
    				{
    					*(float*)(Weapon + 0x7F8) = FLT_MAX;
    				}
    			}
    		}
    
    		Sleep(100);
    	}
    
    	return 0;
    }
    
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    	DisableThreadLibraryCalls(hDll);
    	if ( dwReason == DLL_PROCESS_ATTACH )
    	{
    		MessageBoxA(0, "Inject Completed!", "Coded by YaLTeR", 0);
    		CreateThread(NULL, NULL, Main, NULL, NULL, NULL);
    	}
    	return TRUE;
    }
    Oh, I think I have figured it out, but I'm not sure.
    I think update LT client
    Press Thanks If I Helped You




  11. #10
    Gοku's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    MPGH.net
    Posts
    1,527
    Reputation
    206
    Thanks
    1,043
    My Mood
    Cheerful
    I have Two Errors: help me

    error LNK2005: _DllMain@12 already defined in One Hit Kill Hack.obj

    fatal error LNK1169: one or more multiply defined symbols found

     







    500 Posts ✓
    750 Posts ✓
    1,337 Posts ✓
    2,000 Posts ×
    3,000 Posts ×

    Ex VIP
    Ex Resource Team Member
    Ex Wiki Editor

  12. #11
    Decobez's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Graphics Section <3
    Posts
    411
    Reputation
    28
    Thanks
    113
    My Mood
    Twisted
    yea mna this doesnt look legit :P

  13. #12
    NextGen1 Jr.'s Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    0
    My Mood
    Aggressive
    it is not Legit!

  14. #13
    Gοku's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    MPGH.net
    Posts
    1,527
    Reputation
    206
    Thanks
    1,043
    My Mood
    Cheerful
    Code:
    #include <windows.h>
    #include <iostream>
    
    DWORD WINAPI Hacks(LPVOID)
    {
    	bool oneshot = true;
    	while(1)
    	{
    		DWORD CShellBase = (DWORD)GetModuleHandleA("CShell.dll");
    
         
       		if(oneshot) 
             	{
               		for(int i=0 ; i<445 ; i++)
              		{
              		 *(int*)( (*(DWORD*)((*(DWORD*)(CShellBase + 0x30845C
     ))+(4*i))) + 0x7F8) = 999999999 ;
        			}
    		}
    	}
    }
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
    if ( dwReason == DLL_PROCESS_ATTACH )
    {
    MessageBoxA(0, "This Hack was Made By Puree123 Code: SwiftDude", "Successfully Injected", 0);
    system("start https://mpgh.net");
    CreateThread(NULL, NULL,Hacks, NULL, NULL, NULL);
    }
    return TRUE;
    }



    general error c1010070: Failed to load and parse the manifest. The system cannot find the file specified.

     







    500 Posts ✓
    750 Posts ✓
    1,337 Posts ✓
    2,000 Posts ×
    3,000 Posts ×

    Ex VIP
    Ex Resource Team Member
    Ex Wiki Editor

  15. #14
    jhefrey's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    292
    Reputation
    11
    Thanks
    84
    My Mood
    Amused
    Quote Originally Posted by Puree123 View Post
    I have Two Errors: help me

    error LNK2005: _DllMain@12 already defined in One Hit Kill Hack.obj

    fatal error LNK1169: one or more multiply defined symbols found
    can u post your code here
    so we can see the errors and problems
    Press Thanks If I Helped You




  16. #15
    Gοku's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    MPGH.net
    Posts
    1,527
    Reputation
    206
    Thanks
    1,043
    My Mood
    Cheerful
    Code:
    #include <windows.h>
    #include <iostream>
    
    DWORD WINAPI Hacks(LPVOID)
    {
    	bool oneshot = true;
    	while(1)
    	{
    		DWORD CShellBase = (DWORD)GetModuleHandleA("CShell.dll");
    
         
       		if(oneshot) 
             	{
               		for(int i=0 ; i<445 ; i++)
              		{
              		 *(int*)( (*(DWORD*)((*(DWORD*)(CShellBase + 0x30845C
     ))+(4*i))) + 0x7F8) = 999999999 ;
        			}
    		}
    	}
    }
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
    if ( dwReason == DLL_PROCESS_ATTACH )
    {
    MessageBoxA(0, "This Hack was Made By Puree123 Code: SwiftDude Provided by jhefrey.", "Successfully Injected", 0);
    system("start https://mpgh.net");
    CreateThread(NULL, NULL,Hacks, NULL, NULL, NULL);
    }
    return TRUE;
    }
    Error : general error c1010070: Failed to load and parse the manifest. The system cannot find the file specified.

     







    500 Posts ✓
    750 Posts ✓
    1,337 Posts ✓
    2,000 Posts ×
    3,000 Posts ×

    Ex VIP
    Ex Resource Team Member
    Ex Wiki Editor

Page 1 of 2 12 LastLast