Jump to content
Tuts 4 You

Forums

  1. Community Links

    1. Terms, Privacy Policy & Frequently Asked Questions   (240,771 visits to this link)

      Very important! Please read before sign up and posting...

  2. Community Discussions

    1. Site Bug Reports and Feedback

      Bugs, feedback and ideas regarding this site...

      2.3k
      posts
  3. Developers Forums

    1. Programming and Coding

      Programming and coding tips, help and solutions...

      12.6k
      posts
    2. Programming Resources

      Share an interesting blog, news page or other resource...

      412
      posts
    3. Software Security

      Securing your software against reverse engineering...

      888
      posts
  4. Reverse Code Engineering

    1. Challenge of Reverse Engineering

      Try a challenge or contribute your own, any platform or operating system...

      14.3k
      posts
    2. Hardware Reverse Engineering

      Reverse engineering of circuitry hardware and firmware...

      226
      posts
    3. Network Security

      Discussions on network security, holes, exploits and other issues...

      449
      posts
    4. Malware Reverse Engineering

      Debugging, disassembling and documenting interesting malware...

      1.7k
      posts
    5. Reverse Engineering Articles

      Share an interesting blog, news page or other RE related site...

      2.5k
      posts
    6. Employment and Careers

      Discussions on employment and career paths in the industry...

      195
      posts
  5. Community Projects

    1. Scylla Imports Reconstruction

      Development and support forum for the Scylla project...

      506
      posts
    2. x64dbg

      An open-source x64/x32 debugger for windows...

      1.3k
      posts
    3. Future Community Projects

      Looking for support and interested partners for a future project?

      148
      posts
    4. Community Projects Archive

      Old and inactive projects moved to long term support...

      813
      posts
  • Member Statistics

    23,769
    Total Members
    7,713
    Most Online
    123123123
    Newest Member
    123123123
    Joined
  • Posts

    • fearless
      I would just use case WM_NCHITTEST and in that event check for g_bDragging is true, if so then use SendMessage with WM_NCLBUTTONDOWN and HTCAPTION, that way you will drag the entire window as if it had a caption/titlebar whenever mouse is down. So I would remove the WM_MOUSEMOVE and add something like this: case WM_NCHITTEST: { if (g_bDragging) { SendMessage(hwnd, WM_NCLBUTTONDOWN, HTCAPTION, 0); } } return 0;  
    • TeRcO
      Due to the differences in memory addressing and architecture between 32& 64bit systems you need a few adjustments to inject code into a 64bit process with ASLR   Pointers: are wide , so you need to make sure you're using appropriate types like uintptr_t for addresses, and LPVOID for memory allocations. Memory Allocation: Functions work similarly to 32bit systems, but you need to make sure you're handling 64bit addresses correctly.
    • TeRcO
      "Local variables (hdcMem, hbmMem, hbmOld) in the starfield() function conflict with global ones. The window size (WIDTH = 350, HEIGHT = 400) doesn’t match the starfield size (335 width and 249 height). Make them consistent if intended. Ensure that IDB_EXIT is properly defined in your resources (e.g., .rc file). If not, the LoadImageA call will fail. In WM_MOUSEMOVE, SetWindowPos is called every time the mouse moves, which may cause performance issues. "
    • benina22
      [Reverse] Video Review Sol c5_ssh2 flare-on 11 https://rootbiez.blogspot.com/2024/11/reverse-video-review-sol-c5ssh2-flare.html
    • moh
      But if they copy the files they will be able to use the language right, because they have the activation for the software but only me i have this language then they can have the language if they copy it right? Also orig sw i searched for this didn't find anything
  • Popular Contributors

    1. 1
      jackyjask
      jackyjask
      12
    2. 2
      CodeExplorer
      CodeExplorer
      12
    3. 3
      Washi
      Washi
      11
    4. 4
      Teddy Rogers
      Teddy Rogers
      7
    5. 5
      TeRcO
      TeRcO
      6
  • Files

  • File Comments

  • Tell a friend

    Love Tuts 4 You? Tell a friend!
×
×
  • Create New...