Results 1 to 1 of 1
  1. #1
    Maroon5.'s Avatar
    Join Date
    Jan 2013
    Gender
    male
    Location
    "C:\Program Files (x86)\Maroon5\One More Night.mp4"
    Posts
    661
    Reputation
    47
    Thanks
    879
    My Mood
    Devilish

    Bypass For Blackshot [Source Code] [C++ Knowledge] With TuT

    Hello Guys . I know now days Blackshot can't Use C.E [Cheat Engine]
    I'm here to solve the problem . Here some of my Source Code From MAT Section .
    It's From Group of mine .
    First thing you need to know what is C++ :

     
    C++ (pronounced "see plus plus") is a statically typed, free-form, multi-paradigm, compiled, general-purpose programming language. It is regarded as an intermediate-level language, as it comprises both high-level and low-level language features. Developed by Bjarne Stroustrup starting in 1979 at Bell Labs, C++ was originally named C with Classes, adding object oriented features, such as classes, and other enhancements to the C programming language. The language was renamed C++ in 1983, as a pun involving the increment operator.
    C++ is one of the most popular programming languages and is implemented on a wide variety of hardware and operating system platforms. As an efficient compiler to native code, its application domains include systems software, application software, device drivers, embedded software, high-performance server and client applications, and entertainment software such as video games. Several groups provide both free and proprietary C++ compiler software, including the GNU Project, Microsoft, Intel and Embarcadero Technologies. C++ has greatly influenced many other popular programming languages, most notably C# and Java. Other successful languages such as Objective-C use a very different syntax and approach to adding classes to C.
    C++ is also used for hardware design, where the design is initially described in C++, then analyzed, architecturally constrained, and scheduled to create a register-transfer level hardware description language via high-level synthesis.
    The language began as enhancements to C, first adding classes, then virtual functions, operator overloading, multiple inheritance, templates and exception handling, among other features. After years of development, the C++ programming language standard was ratified in 1998 as ISO/IEC 14882:1998. The standard was amended by the 2003 technical corrigendum, ISO/IEC 14882:2003. The current standard extending C++ with new features was ratified and published by ISO in September 2011 as ISO/IEC 14882:2011 (informally known as C++11).


    Requirement:
    C++
    Net.framework 4.5 [For Support]
    Process Hacker [If Patched Gameguard, Can Find new one]
    Microsoft DirectX 9.0 SDK (Summer 2004)

    Here the Complete Code :
    Code:
    #include <windows.h>
    
    #include <stdio.h>
    
    
    BYTE ByteAsli[6] = {0x00, 0x00, 0x00, 0x00, 0xFF, 0x95};
    BYTE RubahByte[6] = {0x00, 0x00, 0x00, 0x00, 0xFF, 0x95};
    
    DWORD Maroon5_Hack = 0;
    LPTSTR Maroon5 = "Blackshot.exe";
    
    void Patch(void *adr, void *ptr, int size)
    {
    DWORD NewProtection;
    VirtualProtect(adr,size,PAGE_EXECUTE_WRITECOPY, &NewProtection);
    memcpy(adr,ptr,size);
    VirtualProtect(adr,size,NewProtection, &NewProtection);
    }
    
    
    DWORD WINAPI LoopFunction(LPVOID param)
    {
    while (1) {
    
    if (GetAsyncKeyState(VK_END)&1)
    {
    DWORD MPGH = (DWORD)GetModuleHandleA(Maroon5);
    {
    if (MPGH > 0) {
    Maroon5_Hack = MPGH + 0x950000;    //npsc.des | 0x950000 | 228KB | nProtect SpeedCheck ModulePatch
    ((void *)(Maroon5_Hack),(void*)(PBYTE)RubahByte, 6);
    Sleep(100);
    Patch((void *)(Maroon5_Hack),(void*)(PBYTE)ByteAsli, 6);
    }
    Sleep(10);
    } 
    }
    }
    return (0);
    }
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
    if (dwReason == DLL_PROCESS_ATTACH) { 
    CreateThread(0, 0, LoopFunction, 0, 0, 0);
    }
    return TRUE;
    }
    TuT Begins:
    Let me Explain of it :
    Code:
    #include <windows.h>
    
    #include <stdio.h>
    This code Includes Windows Process

    Code:
    BYTE ByteAsli[6] = {0x00, 0x00, 0x00, 0x00, 0xFF, 0x68};
    BYTE RubahByte[6] = {0x00, 0x00, 0x00, 0x00, 0xFF, 0x68};
    This is a byte from a Gameguard Process . 0xFF , 0x68 is MAT Gameguard Process .
    you'll need to change it to Blackshot gameguard process byte .
    Blackshot byte is : 0x950000
    I don't know if it still working . so you need to change the process byte From :
    [CODE]
    Code:
    BYTE ByteAsli[6] = {0x00, 0x00, 0x00, 0x00, 0xFF, 0x68};
    BYTE RubahByte[6] = {0x00, 0x00, 0x00, 0x00, 0xFF, 0x68};
    To :
    [CODE]
    Code:
    BYTE ByteAsli[6] = {0x00, 0x00, 0x00, 0x00, 0xFF, 0x95};
    BYTE RubahByte[6] = {0x00, 0x00, 0x00, 0x00, 0xFF, 0x95};
    Note :
    0x68 : MAT Gameguard . Don't be a careless
    0x95 : Bs Gameguard

    And Lastly :
    Code:
    DWORD Maroon5_Hack = 0;
    LPTSTR Maroon5 = "Blackshot.exe";
    
    void Patch(void *adr, void *ptr, int size)
    {
    DWORD NewProtection;
    VirtualProtect(adr,size,PAGE_EXECUTE_WRITECOPY, &NewProtection);
    memcpy(adr,ptr,size);
    VirtualProtect(adr,size,NewProtection, &NewProtection);
    }
    
    
    DWORD WINAPI LoopFunction(LPVOID param)
    {
    while (1) {
    
    if (GetAsyncKeyState(VK_END)&1)
    {
    DWORD MPGH = (DWORD)GetModuleHandleA(Maroon5);
    {
    if (MPGH > 0) {
    Maroon5_Hack = MPGH + 0x4C778F;    
    ((void *)(Maroon5_Hack),(void*)(PBYTE)RubahByte, 6);
    Sleep(100);
    Patch((void *)(Maroon5_Hack),(void*)(PBYTE)ByteAsli, 6);
    }
    Sleep(10);
    } 
    }
    }
    return (0);
    }
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
    if (dwReason == DLL_PROCESS_ATTACH) { 
    CreateThread(0, 0, LoopFunction, 0, 0, 0);
    }
    return TRUE;
    }
    This One "Maroon5_Hack = MPGH + 0x4C778F;
    ((void *)(Maroon5_Hack),(void*)(PBYTE)RubahByte, 6);
    Sleep(100);
    Patch((void *)(Maroon5_Hack),(void*)(PBYTE)ByteAsli, 6);
    "
    "0x4C778f" is MAT Byte
    "0x950000" is Bs byte . So Change it .
    TuT End

    Compile it Using C++ :
    Open C++
    Click New Project
    Choose "Empty Project"
    Rename Project
    Click "Ok"
    Click On "Solution Explorer Window" should be on right
    Click your Project name
    Right click it
    Choose properties [ A New Window should pop-up]
    Click on general tab
    Find "Configuration Type" change the "Application (.exe)" To "Dynamic Library (.dll)"
    Then click "Vc++ directories"
    click on "include directory" Click new "edit' then find a File name "Microsoft DirectX 9.0 SDK"
    Then choose "includes" Folder
    click Ok
    Then find "Library directories" click new "edit" then find a file name "Microsoft DirectX 9.0 SDK"
    Then choose "Lib" Folder
    click Ok
    Go to your "solution explorer"
    and Right click on "Source File"
    click add item
    then new item
    Click on ".ccp" File
    change the name to "Main.ccp"
    Simply Paste the complete code from me
    Then compile it
    Done .

    TuT :
    many of you doesn't know how to Compile it here the TuT :


    Go to My code and copy














    The End .
    Updated TuT
    Another long TuT .


    Note2:
    Inject the dll and press "Home"
    It will automaticly bypass

    HowTo:
    Open x1Inject
    Open Bs
    text in the "Blackshot.exe" in x1inject
    and Tick "Auto Inject"
    Start Bs
    Click "Home"
    After bypassing
    Inject your dll
    or Play around using C.E
    Done

    Whew ! That is a long TuT
    Should Thanks me ! .

    Hotkeys:
    Home [Auto bypass]

    Note3:
    Do not leech my project

    Credits :
    @XPS Hacking [Bypass Idea]
    @Maroon5.
    [Author of Blackshot bypass source Code]
    I am A vb/C++ Expert
    So don't worry

    Note4:
    If the Code patched . Edit the Byte of Bypass .Find npsc.des [On Process Hacker]nProtect SpeedCheck Module
    Make sure you Inject the dll when blackshot just about to start

    Note5:
    This is a long tutorial . if you don't mind click thanks I have help you
    typing all of this TuT is not easy

    If it Usefull to Everyone . @Vehrdyn can make it Sticky ?
    and i will start making Hacks For Blackshot
    Last edited by Maroon5.; 05-24-2013 at 04:34 AM.

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

    ainfixie (05-24-2013),Albaqir (06-26-2014),alongperakang (08-25-2013),astron51 (05-25-2013),bigbaang12 (05-23-2013),bunkface (05-23-2013),CheytacBoy__ (06-01-2013),darrenlimch (05-24-2013),HskCool (05-24-2013),HurleyppL (05-25-2013),jacktheripper20 (05-25-2013),kerak1234 (05-23-2013),mohammadalh (06-13-2014),mr_joule (05-24-2013),owenpro21 (05-26-2013),qwerty1244 (12-17-2014),RainDemonnx (08-22-2013),ruslyrossi (05-24-2013),shahir1 (05-24-2013),sherrallado (05-25-2013),syahzwan (05-25-2013),V4ribus (05-23-2013),zachariasgila (05-24-2013)

Similar Threads

  1. [Release] #Lesson 2 | RapidFire Hacks . [Source Code][C++ Knowledge]
    By syahid1709 in forum Blackshot Hacks & Cheats
    Replies: 5
    Last Post: 05-26-2013, 02:06 AM
  2. [Release] Bypass For Blackshot [Source Code] [C++ Knowledge] With TuT
    By bigbaang12 in forum Blackshot Hacks & Cheats
    Replies: 137
    Last Post: 05-26-2013, 01:26 AM
  3. [Help] anyone help me for this source code
    By jojit_0024 in forum WarRock Hack Source Code
    Replies: 20
    Last Post: 08-11-2012, 02:29 PM
  4. [Request] NEED BYPASS FOR BLACKSHOT
    By zwanbenassi in forum Hack Requests
    Replies: 7
    Last Post: 02-01-2011, 12:27 AM
  5. Trading my account LVL 40 + working bypass for a retail code
    By xWarr0ckx in forum Trade Accounts/Keys/Items
    Replies: 36
    Last Post: 07-02-2007, 10:33 PM