Hi at ALL,
...is possible ?...or is something imnpossibile?
Tnk1000 for reply.
#include <stdio.h>
#include <errno.h>
#include <sys/types.h>
#include <unistd.h>
#include <asm/page.h>
#include <sys/mman.h>
#include <unistd.h>
#include <stdio.h>
#include <fcntl.h>
#include <sys/ptrace.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
FILE *mem = NULL;
FILE *output=NULL;
char p[64];
char byte;
unsigned long i = 0;
unsigned long addr, addr2;
int pid = 0;
if(argc < 5)
{
fprintf(stderr, "Usage: %s <start address> <end address> <pid> <output file>\n", argv[0]);
exit(EXIT_FAILURE);
}
addr = strtoul(argv[1], NULL, 16);
addr2 = strtoul(argv[2], NULL, 16);
pid = atoi(argv[3]);
.................ecc.ecc....