Results 1 to 3 of 3
  1. #1
    Vitrix Maggot
    Vitrix Maggot is offline
    Member-in-training Vitrix Maggot's Avatar
    Join Date
    2013 Apr
    Location
    Brasil
    Posts
    58
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    43
    Thanked in
    24 Posts
    Rep Power
    0

    Compiling a value in memory

    Nesse tutorial irei postar como copiar o valor de uma memoria para outra!
    Nesse tutorial usarei o comando memcpy, encontrado na biblioteca string.h do c++!
    Explicação:
    Se você deseja criar um hacker usando c / c++, vai ter que usar esse comando!
    Síntese do comando:

    In this tutorial I will post how to copy the value of a memory to another!
    In this tutorial I will use the memcpy command, found in the string.h library of C + +!
    explanation:
    If you want to create a hacker using c / c + +, you have to use this command!
    Synthesis of the command:


    memcpy(*DESTINO,*ORIGEM,BYTES)
    Essa função copia o tamanho de bytes que vc definio, da origem para o destino!
    This function copies the size bytes that you definition, from source to destination!

    #include <conio.h>
    #include <string.h>
    #include <stdio.h>
    #include <stdlib.h>
    #define ADDRESS_mature_1 0x045CC000 // Suponha que essa seja a primeira address do mature
    #define ADDRESS_mature_2 0x045CC004 // Essa seja a segunda address do mature

    main{

    mencpy(ADDRESS_mature_1,ADDRESS_mature_2,sizeof(fl oat)); //sizeof converte para o tamanho de bytes de float

    printf("Mature Completo!");

    return true;
    I admire most other programmers not paid any dick!!

    Admiro outros Programadores mais nao pago pau pra nenhum !!


    Skype: Vitor Monteiro

  2. The Following User Says Thank You to Vitrix Maggot For This Useful Post:


  3. #2
    AikaMaster
    AikaMaster is offline
    Senior Member AikaMaster's Avatar
    Join Date
    2012 May
    Location
    Inside you mind!
    Posts
    245
    Thanks Thanks Given 
    58
    Thanks Thanks Received 
    642
    Thanked in
    68 Posts
    Rep Power
    0
    Nice tutorials! You can do like this for pointers as well:
    *(PDWORD)(*(PDWORD)(*(PDWORD)BaseAddress + Offset1)+Offset2) = value;

  4. #3
    Vitrix Maggot
    Vitrix Maggot is offline
    Member-in-training Vitrix Maggot's Avatar
    Join Date
    2013 Apr
    Location
    Brasil
    Posts
    58
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    43
    Thanked in
    24 Posts
    Rep Power
    0
    Quote Originally Posted by AikaMaster View Post
    Nice tutorials! You can do like this for pointers as well:
    I agree fis more so to make it easier for beginners ^^ Thanks for the tip
    I admire most other programmers not paid any dick!!

    Admiro outros Programadores mais nao pago pau pra nenhum !!


    Skype: Vitor Monteiro

  5. The Following User Says Thank You to Vitrix Maggot For This Useful Post:


Similar Threads

  1. [C++] Memory Hacking with C and CheatEngine, writing to Process Memory
    By Grooguz in forum Programming Tutorials
    Replies: 7
    Last Post: 2013-10-12, 08:15 PM
  2. [Tool] Simple Memory Writer
    By AikaMaster in forum Aika Bots, Hacks, Cheats
    Replies: 8
    Last Post: 2012-07-24, 10:11 PM
  3. [Tool] memory editor
    By punido in forum Point Blank
    Replies: 0
    Last Post: 2012-06-14, 05:41 PM
  4. [Memory] Cheat Engine 6.0
    By Dwar in forum Files & Tools
    Replies: 0
    Last Post: 2011-03-04, 02:58 AM
  5. [Memory Scanner] Memory Hacking Software
    By Dwar in forum Files & Tools
    Replies: 3
    Last Post: 2010-11-29, 03:39 PM

Posting Permissions

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