the internet's safety

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
MD5 | 9226efe8cb4cc30143ed8d879af57099

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);
}

Comments

RSS Feed Subscribe to this comment feed

No comments yet, be the first!

Login or Register to post a comment

File Archive:

May 2012

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    May 1st
    37 Files
  • 2
    May 2nd
    53 Files
  • 3
    May 3rd
    33 Files
  • 4
    May 4th
    4 Files
  • 5
    May 5th
    10 Files
  • 6
    May 6th
    17 Files
  • 7
    May 7th
    19 Files
  • 8
    May 8th
    36 Files
  • 9
    May 9th
    34 Files
  • 10
    May 10th
    35 Files
  • 11
    May 11th
    20 Files
  • 12
    May 12th
    18 Files
  • 13
    May 13th
    11 Files
  • 14
    May 14th
    27 Files
  • 15
    May 15th
    58 Files
  • 16
    May 16th
    54 Files
  • 17
    May 17th
    25 Files
  • 18
    May 18th
    53 Files
  • 19
    May 19th
    9 Files
  • 20
    May 20th
    15 Files
  • 21
    May 21st
    25 Files
  • 22
    May 22nd
    32 Files
  • 23
    May 23rd
    35 Files
  • 24
    May 24th
    26 Files
  • 25
    May 25th
    25 Files
  • 26
    May 26th
    0 Files
  • 27
    May 27th
    0 Files
  • 28
    May 28th
    0 Files
  • 29
    May 29th
    0 Files
  • 30
    May 30th
    0 Files
  • 31
    May 31st
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2012 Packet Storm. All rights reserved.

close