exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

DumpRam.c

DumpRam.c
Posted Feb 27, 2008
Authored by WarGame

A simple tool for Linux that allows the dumping of all physical memory (RAM).

systems | linux
SHA-256 | 8940b92686ddb42ffeb087be201962d17d9c9304b3048caabf25ba699a58da90

DumpRam.c

Change Mirror Download
/* A simple tool that allows you to dump all the physical memory (RAM) */
/* For more visit: http://vx.netlux.org/wargamevx */
/* greetz: undernet @ #eof-project,#virus and to non3x for the testing */

/* Tested on:
2.6.20-1.2320.fc5smp i686 athlon
2.6.22-gentoo-r5 i686 AMD Turion(tm) 64 X2 Mobile Technology TL-50 */


#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>

void Printable(char *str,int size)
{
int lm = 0;
while(lm < size)
{
if(isprint(str[lm]))
printf("%c",str[lm]);

lm++;
}
}

main(int argc,char *argv[])
{
int fd,only_print;
unsigned char *buf = NULL;
unsigned int addr,page_size = sysconf(_SC_PAGESIZE),tot_mem = page_size*sysconf(_SC_PHYS_PAGES);

if(argv[1] == NULL)
{
printf("DumpRam v0.1 by [WarGame/DoomRiderz]\n");
printf("Usage: %s [option]\n",argv[0]);
printf("option can be:\n");
printf("-p = only printable chars\n");
printf("-e = every byte\n");
exit(EXIT_FAILURE);
}

if(getuid() != 0)
{
printf("You must be root\n");
exit(EXIT_FAILURE);
}

if(strcmp(argv[1],"-p") == 0)
only_print = 1;
else if(strcmp(argv[1],"-e") == 0)
only_print = 0;
else
{
printf("Invalid option\n");
exit(EXIT_FAILURE);
}

fd = open("/dev/mem",O_RDONLY);

if(fd < 0)
{
perror("/dev/mem");
exit(EXIT_FAILURE);
}

printf("\n\n\n\t** RAM size in Kb: %d\n",tot_mem/1024);
printf("\t** Size of a page in bytes: %d\n\n\n\n\n",page_size);

if((buf = malloc(page_size)) == NULL)
{
perror("malloc()");
exit(EXIT_FAILURE);
}

while(read(fd,buf,page_size) != -1)
{
if(only_print)
Printable(buf,page_size);
else
write(0,buf,page_size);
}

close(fd);
free(buf);
}
Login or Register to add favorites

File Archive:

August 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Aug 1st
    15 Files
  • 2
    Aug 2nd
    22 Files
  • 3
    Aug 3rd
    0 Files
  • 4
    Aug 4th
    0 Files
  • 5
    Aug 5th
    15 Files
  • 6
    Aug 6th
    11 Files
  • 7
    Aug 7th
    43 Files
  • 8
    Aug 8th
    42 Files
  • 9
    Aug 9th
    36 Files
  • 10
    Aug 10th
    0 Files
  • 11
    Aug 11th
    0 Files
  • 12
    Aug 12th
    0 Files
  • 13
    Aug 13th
    0 Files
  • 14
    Aug 14th
    0 Files
  • 15
    Aug 15th
    0 Files
  • 16
    Aug 16th
    0 Files
  • 17
    Aug 17th
    0 Files
  • 18
    Aug 18th
    0 Files
  • 19
    Aug 19th
    0 Files
  • 20
    Aug 20th
    0 Files
  • 21
    Aug 21st
    0 Files
  • 22
    Aug 22nd
    0 Files
  • 23
    Aug 23rd
    0 Files
  • 24
    Aug 24th
    0 Files
  • 25
    Aug 25th
    0 Files
  • 26
    Aug 26th
    0 Files
  • 27
    Aug 27th
    0 Files
  • 28
    Aug 28th
    0 Files
  • 29
    Aug 29th
    0 Files
  • 30
    Aug 30th
    0 Files
  • 31
    Aug 31st
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close