Donate Now Goal amount for this month: 95 USD, Received: 20 USD (21%)

  1. 06-02-2005
    Views:
    27,823
+ Post New Thread
Page 1 of 10 1 2 3 4 5 ... LastLast
Threads 1 to 30 of 287

Forum: Advanced

Advanced programming topics

  1.   Sticky Threads  

  2. Sticky Thread Sticky: Process Forking - Running Process From Memory

    I've noticed some custom made anti-cheats like to start a process from memory pointer rather than a file for extra protection. I wrote a little code a while back to do the same, for those who would like to know how to do so. //-------------------------------------------------------- //...

    Started by Vrillon, 06-03-2009 12:30 PM
    • Replies: 7
    • Views: 2,038
    06-07-2010 01:35 PM Go to last post
  3. Sticky Thread Sticky: ManualMap

    Some of you might be interested in this: www.darawk.com/Code/ManualMap.rar The lower level ManualMap class in the project is used to parse a PE file, map it into memory, fix it's relocs, imports, etc.. and create a new thread at it's entry point in an arbitrary process. Essentially, it...

    Started by Darawk, 04-02-2006 01:47 AM
    4 Pages
    1 2 3 4
    7 Staff Post(s) manualmap
    • Replies: 47
    • Views: 6,525
    04-03-2010 04:43 PM Go to last post
  4. Sticky Thread Sticky: Solution Mac OS X 10.6.1 sysent

    I was really looking forward to trying out a rootkit on the latest Snow Leopard release but Apple managed to confuse everyone again or at least root some of their KEXT functionalities - so I had to find the sysent table (which apparently isn't documented anymore). I recently tried loading my KEXT...

    Started by boecke, 09-22-2009 06:30 AM
    3 Staff Post(s) mac, sysent
    • Replies: 5
    • Views: 519
    03-22-2010 03:58 PM Go to last post
  5. Sticky Thread Sticky: Hooking without DLL Injection

    #include <stdio.h> #include <windows.h> #include <gl\gl.h> int Detour(DWORD dwPID, BYTE *pCodeCave, int iCodeCaveSize, DWORD dwOrig, DWORD dwByteAdd) { DWORD dwBase = 0; DWORD dwTemp = 0; HANDLE hProcess = NULL;

    Started by RunningBon, 04-30-2006 09:36 AM
    2 Pages
    1 2
    5 Staff Post(s) dll, hooking, injection
    • Replies: 23
    • Views: 9,346
    02-14-2010 07:23 AM Go to last post
  6. Sticky Thread Sticky: Chameleon: My attempt at a code virtualizer

    Updated: http://www.sendspace.com/file/1bczij Older versions: The above virtualizes x86 instructions handed off in a specific buffer. The VM itself still lacks many instructions, but overall, I'd say once I right a quick front-end tool for writing the virtualized buffer to use for you,...

    Started by Guy, 09-27-2009 06:30 PM
    9 Staff Post(s) attempt, chameleon, code, virtualizer
    • Replies: 14
    • Views: 1,827
    10-08-2009 10:01 PM Go to last post
  7. Sticky Thread Sticky: [C++] Remote assembler / AsmJit

    Synopsis: Assemble / inject code in other processes. This is an extension of the Assembler class from AsmJit. You can use this to: * Inject code in other processes (all relocations handled automatically) * Patch / overwrite code in other processes (including own process) HANDLE...

    Started by CodeCafe, 09-05-2009 06:58 PM
    • Replies: 6
    • Views: 865
    09-07-2009 06:57 PM Go to last post
  8. Sticky Thread Sticky: Relative Memory Access

    Hey, I've been working on a hook for a few months now. It injects a binary file sort of like shellcode at a random address using VirtualAllocEx, then it injects a piece of code to the game (at a constantly used process such as GetTickCount), which jumps to the injected code. The injected code...

    Started by Longpoke, 05-05-2008 11:01 PM
    • Replies: 6
    • Views: 1,529
    08-20-2008 06:56 PM Go to last post
  9. Sticky Thread Sticky: Compile Errors.. Read Here!!

    Do not post compile errors.. meh that about sums it up

    Started by UNI, 08-21-2004 09:35 PM
    2 Staff Post(s) compile, errors, read
    • Replies: 7
    • Views: 1,470
    07-23-2007 04:26 PM Go to last post
  10. Sticky Thread Sticky: Hooking things in a thread (without memory modification)

    Okay here we go, this method is from ogc re and previous ogc fb versions. First of all we need to get the TIB of the thread we want to hook in. This isn't hard at all because it's stored in the TEB of the Thread. (You may google for it). now let's go on... In the TEB we have right at the...

    Started by P47R!CK, 03-13-2005 12:08 PM
    6 Staff Post(s) hooking, memory, modification, things, thread
    • Replies: 11
    • Views: 3,794
    05-16-2005 11:51 AM Go to last post
  11.   Normal Threads  

  1. Question What is the best place to detect new thread creation?

    I'm sure most of you are aware, a common issue with hardware breakpoints is that they're thread specific. Before Vista and WOW64 it was easy to break on CsrCreateThread and fix up the registers. But on 64 bit Windows 7 I get this: 0:016> x *!*Csr*CreateThread* 00000000`753db530...

    Started by _pancho, 06-05-2010 10:02 PM
    1 Staff Post(s)
    • Replies: 6
    • Views: 519
    06-17-2010 08:13 AM Go to last post
  2. Question: Check ring3 process context for HardwareBreakpoints from Ring0

    Can someone point me into the right direction? I want to check a process for applied hardware breakpoints.. What are the functions to go along with for that? Thanks in advance.

    Started by notme, 05-05-2010 03:28 AM
    • Replies: 5
    • Views: 332
    05-05-2010 11:52 AM Go to last post
  3. custom window/controls

    Hi im looking for tutorials/example code that demonstrates/explains how to build custom controls specifically im looking for a way to display custom controls on poker client software just the way poker tracker 3 is doing it with its HUD (displaying player statistics on the Table window) ...

    Started by CutiePie666, 04-28-2010 03:43 AM
    • Replies: 0
    • Views: 105
    04-28-2010 03:43 AM Go to last post
  4. Question [ring0] Virtual Memory Page Protection

    Hey Guys, I attached my driver to an exe's context with(KeAttachProcess) now I can simply read/write from it with RtlCopyMemory. But I cant write to Memory which is not marked as Writeable. Is there any VirtualProtect equivalent for kernel mode drivers so that I can change this memory...

    Started by SyntaxX, 04-12-2010 07:34 AM
    • Replies: 6
    • Views: 560
    04-24-2010 05:54 PM Go to last post
  5. Question [C++] Searching for byte signatures

    Alright , so i wanted to ask the experts here: Can someone suggest any lessons or give a tut or example of searching for a byte signature or lets just say find a address automaticly by giving a string signature. I will be very grateful if someone can point me in the right direction. Thank...

    Started by Cha0sBG, 04-19-2010 08:11 AM
    • Replies: 4
    • Views: 264
    04-19-2010 02:24 PM Go to last post
  6. New Method Of LoadLibrary

    Wonderin if this can be of any use for someone or modified to be useful. Not sure if its been done before..

    Started by spoofmeister, 10-20-2003 06:55 PM
    • Replies: 3
    • Views: 1,077
    04-14-2010 12:04 PM Go to last post
  7. Discussion Cheat Distribution Scheme

    Cheat Distribution Scheme Introduction Since I'm sharing my hacks with some friends, I want to ensure that I control who can use my hack (a robust and effective anti-leak) while still ensure that the hack won't ever get detected by the game's anti-cheat. My goal is to do this without any...

    Started by Casual_Hacker, 03-25-2010 10:05 AM
    2 Pages
    1 2
    2 Staff Post(s)
    • Replies: 20
    • Views: 675
    04-02-2010 01:16 AM Go to last post
  8. [C++] Passing ECX/this as a parameter?

    Is there any way to have a parameter that automatically gets placed in ECX in a call to a function pointer? typedef void (__thiscall *tSetPhysics)(char phys); tSetPhysics *oSetPhysics; Using S0beit's CVTableHook I created a class with a function to overwrite the original vtable entry with my...

    Started by EmpireOwnsYou, 02-24-2010 09:43 AM
    1 Staff Post(s)
    • Replies: 12
    • Views: 365
    02-24-2010 04:29 PM Go to last post
  9. Discussion SP1 vs SP2 (or completely updated Windows)

    Why is it that in SP1 my hacks don't work. They cause problems for anyone I give it to that have SP1, mainly along the lines of detours. I use a class CDetour to do global detours, and well it doesn't seem to work. When they update to SP2, the problem goes away. What is going on?

    Started by imjapanesa, 02-23-2010 02:31 PM
    2 Staff Post(s)
    • Replies: 4
    • Views: 160
    02-24-2010 01:18 PM Go to last post
  10. problem masm trainer

    sorry didnt read the rule about not posting compile errors. Thread closed.Can someone delete this.

    Started by hunterbe, 01-11-2010 06:05 AM
    masm, problem, trainer
    • Replies: 0
    • Views: 144
    01-11-2010 06:05 AM Go to last post
  11. Retrieving exception address from PEXCEPTION_POINTERS

    Hey, I'm trying to detect PunkBusters scan by PAGE_GUARD'ing my vTable hooks, I have done this with VirtualProtect(PAGE_GUARD...) and added an exception handler using AddVectoredExceptionHandler(1, MyHandler); One problem remains, how would I find out if STATUS_ACCESS_VIOLATION is triggerd from...

    Started by Leo, 12-26-2009 08:31 AM
    2 Staff Post(s) address, exception, pexceptionpointers, retrieving
    • Replies: 7
    • Views: 478
    01-07-2010 07:46 PM Go to last post
  12. Steam Overlay Crash

    Hey, having problems with steam's overlay crashing when I hook the game's direct3d device. I'm using a full device replacement hook. Even if I don't do anything inside the hooks other than forward to the real function, as long as I hook the device (*ppDevice = this) this crash happens. API...

    Started by Chazwazza, 07-26-2009 10:01 AM
    crash, overlay, steam
    • Replies: 4
    • Views: 610
    12-21-2009 10:48 AM Go to last post
  13. dumping an obfuscated window to memory

    I am looking for a way to dump the content of any window to memory (bitmap information of the window content will suffice) even if this window is totally or partly obfuscated, i asked google to help me and the best thing i found was this forum :) maybe someone here can help or push me in the...

    Started by CutiePie666, 12-14-2009 08:13 AM
    3 Staff Post(s) dumping, memory, obfuscated, window
    • Replies: 13
    • Views: 545
    12-16-2009 10:18 AM Go to last post
  14. SMM( Ring -2 ) Rootkit Paper

    Hi, I found this interesting and know many of you will as well. The research provided in this paper describes in details how to reverse engineer and modify System Management Interrupt (SMI) handlers in the BIOS system firmware and how to implement and detect SMM keystroke logger. This work...

    Started by kirbyz, 12-11-2009 11:35 AM
    paper, ring, rootkit, smm
    • Replies: 0
    • Views: 322
    12-11-2009 11:35 AM Go to last post
  15. Exclamation Activating secondary monitor::

    ================================ I've been trying to figure this issue out for a while now. I did alot of research and no success. I have dual monitors, Left Panel is Dell and the Right Monitor is an HP. Nvidia Support. Nvidia has the Extended Mode which you can use your secondary monitor to...

    Started by xephora, 12-04-2009 07:45 PM
    activating, monitor, secondary
    • Replies: 1
    • Views: 228
    12-05-2009 12:35 AM Go to last post
  16. Question [QUESTION]Process Forking - Running Process From Memory

    i've read the post "Process Forking - Running Process From Memory" sticked. and its a good post, but i have a question, the function used to create a process from a .EXE image in the memory doesn't teach, how to create a image of a file,and pass to the function, please help me function used: ...

    Started by mamona, 09-21-2009 11:30 AM
    2 Staff Post(s) forking, memory, process, questionprocess, running
    • Replies: 5
    • Views: 650
    11-27-2009 12:21 AM Go to last post
  17. Windows 7 Detour Issue

    Hey guys, Just working on detouring some basic d3d stuff with the help of some people from this forum, and I seem to be running into an issue. Take this for example: oHookMe = (tHookMe)DetourFunc((BYTE*)func_ptr,(BYTE*)MyHookMe,5); MyHookMe would be something like this: void MyHookMe()...

    Started by pimpinjuice, 11-10-2009 01:01 AM
    1 Staff Post(s) campstaff, detour, guyonasm, issue, kfc, storage, windows
    • Replies: 7
    • Views: 980
    11-11-2009 03:18 AM Go to last post
  18. Question DetourClassFunc, causing a crash.

    *Removed* Figured it out thanks to kynox.

    Started by zack6924, 11-07-2009 06:55 PM
    • Replies: 0
    • Views: 177
    11-07-2009 06:55 PM Go to last post
  19. "Floating point support not loaded"

    Hello, i need some help.... I have a manually mapped dll in the target remote process, now everytime i use sprintf (or any formatting func)"%f" it causes crash error "floating point support not loaded". Any suggestions?

    Started by g0dl1ke, 10-06-2009 02:46 AM
    1 Staff Post(s)
    • Replies: 6
    • Views: 542
    10-06-2009 04:21 PM Go to last post
  20. safeseh

    maybe somebody an answer to my post @woodmann http://www.woodmann.com/forum/showthread.php?t=13102 thx

    Started by guy12, 09-23-2009 07:15 AM
    3 Staff Post(s) safeseh
    • Replies: 7
    • Views: 575
    09-24-2009 02:23 AM Go to last post
  21. C++ Templates for Meta-Hooking

    So I was recently playing around with the C++ boost::function_types library, which allows you to retrieve properties of functions at compile-time (return type, argument types, function arity, function calling-convention) and use these properties at runtime. I thought it would be pretty cool to...

    Started by CodeCafe, 09-04-2009 08:10 PM
    • Replies: 2
    • Views: 509
    09-05-2009 12:48 PM Go to last post
  22. Extended Intrinsics

    Because current intrinsics for x86 and x64 platforms may be lacking, I'm writing my own pseudo-intrinsics library. While what you may be using aren't actual intrinsics, they'll be functions intended to run as quickly as possible (e.g. Local stack initialization isn't usually done). intrinext.h:...

    Started by Guy, 08-27-2009 08:59 PM
    4 Staff Post(s) extended, intrinsics
    • Replies: 5
    • Views: 422
    09-04-2009 05:41 PM Go to last post
  23. Hooking DirectInput8Create

    Well I am trying to hook DirectInput8Create and for some reason I keep getting an error saying something about a null pointer"The instruction at "0x00000000" referenced memory at "0x00000000". The memory could not be "read".". Here is my code HRESULT MyDirectInput8Create(HINSTANCE hinst,DWORD...

    Started by zenma, 04-23-2008 10:17 PM
    3 Staff Post(s) directinput8create, hooking
    • Replies: 7
    • Views: 1,016
    09-02-2009 08:07 PM Go to last post
  24. CS:S Hack's help.

    Hi i no i am new here but i was wondering if some one could post a tuturial on how to make a working CS:S aimbot, but a whole hack with lotys of other stuff would be great.

    Started by blackninja94, 06-07-2009 09:20 AM
    css, hack, help c++ hacks asembly
    • Replies: 5
    • Views: 624
    08-25-2009 07:02 PM Go to last post
  25. Question Trying to make AimKey

    Hey i used COD5 Base HOOK 1.5 and i try to make a aimkey on the aimbot. I did this. But it isnt OnPress true and OnRelease false. It is just OnPress true. And it is not working when i press L Alt nothing happend. Here is my code: //aim if(GetAsyncKeyState(VK_MENU)&1){ if (Item3 ==1); ...

    Started by cod5hacker, 07-28-2009 07:53 AM
    • Replies: 5
    • Views: 493
    08-25-2009 05:38 PM Go to last post
  26. Unreal Engine 3 float format?

    Recently I've been screwing around with an Unreal Engine 3 game, and one of values I was looking for was the look angles, and I did find one angle, the one that rotates around the yaw, for some reason the pitch is nowhere to be found though. Yaw is all I really need I suppose, but the yaw is in a...

    Started by EmpireOwnsYou, 08-20-2009 02:41 AM
    engine, float, format, unreal
    • Replies: 3
    • Views: 414
    08-20-2009 05:00 PM Go to last post
  27. [Help]Read value of an adress

    Hey Guys... i got a small problem...i used some ways but it didn't work. I just want to read out the value of a simple adress and let it increase then. exp: // read value of address getCurrentlyValue()

    Started by Niqqqo, 08-15-2009 02:00 PM
    adress, helpread
    • Replies: 3
    • Views: 285
    08-19-2009 06:41 AM Go to last post
  28. Help Exception handling

    hey all Anyone can help me to catch a Exception via address ? I don't really understanding how i can catch a Exception handling via hardware break points esemp; i set a hwbp to address ; 0x100000

    Started by fuckoff, 08-08-2009 03:06 PM
    1 Staff Post(s) exception, handling
    • Replies: 7
    • Views: 385
    08-08-2009 06:30 PM Go to last post
  29. Read the f'ing Manual Memory Commit Increasing to fast !!!

    hi, im using this function from 100 in 100 ms, to check if a process is running. task manager "commit charge" is increasing 1MB per second !!!! how can i release that memory or once i already have the procId, check if the process is running ?

    Started by Hax4ever, 07-27-2009 07:35 PM
    2 Staff Post(s) commit, fast, increasing, memory
    • Replies: 12
    • Views: 752
    07-31-2009 12:31 PM Go to last post
  30. Need help with DetourClassFunc

    Hi, Im trying to hook the following function : .text:5FF65940 ; public: bool __thiscall CTableChatClient::SendText(char const *,bool) .text:5FF65940 public ?SendText@CTableChatClient@@QAE_NPBD_N@Z .text:5FF65940 ...

    Started by samme78, 04-25-2009 02:48 PM
    detourclassfunc
    • Replies: 1
    • Views: 387
    07-27-2009 08:27 PM Go to last post

+ Post New Thread
Page 1 of 10 1 2 3 4 5 ... LastLast

Forum Information and Options

Users Browsing this Forum

There are currently 1 users browsing this forum. (0 members & 1 guests)

Thread Display Options

Use this control to limit the display of threads to those newer than the specified time frame.

Allows you to choose the data by which the thread list will be sorted.

Order threads in...

Note: when sorting by date, 'descending order' will show the newest results first.

Icon Legend

Contains unread posts
Contains unread posts
Contains no unread posts
Contains no unread posts
More than 15 replies or 500 views
Hot thread with unread posts
More than 15 replies or 500 views
Hot thread with no unread posts
Closed Thread
Thread is closed
Thread Contains a Message Written By You
You have posted in this thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts