in reply to Re^6: dynamic extractor based off static references in file (perl)
in thread dynamic extractor based off static references in file (perl)
# this gets the reference to the actual data in the file my $buffer = ''; sysseek $infile, 0x15, 0; sysread $infile, $buffer, 0x03; $buffer =~ s/(.)/sprintf("%x",ord($1))/eg; # this will move the CUR to the actual data as specified from the refe +rence and will extract it to file. open(my $newfile, '>', "./file"); my $new; sysseek $infile,hex($buffer), 0; sysread $infile, $new, 0x40000; syswrite $newfile, $new;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^8: dynamic extractor based off static references in file (perl)
by Anonymous Monk on Dec 06, 2013 at 22:46 UTC | |
|
Re^8: dynamic extractor based off static references in file (perl)
by Anonymous Monk on Dec 07, 2013 at 10:37 UTC | |
by james289o9 (Acolyte) on Dec 09, 2013 at 19:49 UTC |