mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-14 00:38:55 +00:00
Use rabin2 -rO for raw dump operations ##bin
* Useful to dump the section contents in binary instead of hexpairs
This commit is contained in:
parent
fa8fd1a066
commit
f2afd9cc1e
@ -277,7 +277,7 @@ static int rabin_dump_symbols(RBin *bin, int len) {
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool __dumpSections(RBin *bin, const char *scnname, const char *output, const char *file) {
|
||||
static bool __dumpSections(RBin *bin, const char *scnname, const char *output, const char *file, bool raw) {
|
||||
RList *sections;
|
||||
RListIter *iter;
|
||||
RBinSection *section;
|
||||
@ -319,8 +319,12 @@ static bool __dumpSections(RBin *bin, const char *scnname, const char *output, c
|
||||
if (strcmp (output, file)) {
|
||||
r_file_dump (output, buf, section->size, 0);
|
||||
} else {
|
||||
r_hex_bin2str (buf, section->size, ret);
|
||||
printf ("%s\n", ret);
|
||||
if (raw) {
|
||||
write (1, buf, section->size);
|
||||
} else {
|
||||
r_hex_bin2str (buf, section->size, ret);
|
||||
printf ("%s\n", ret);
|
||||
}
|
||||
}
|
||||
free (buf);
|
||||
free (ret);
|
||||
@ -383,7 +387,7 @@ static int rabin_do_operation(RBin *bin, const char *op, int rad, const char *ou
|
||||
if (!ptr2) {
|
||||
goto _rabin_do_operation_error;
|
||||
}
|
||||
if (!__dumpSections (bin, ptr2, output, file)) {
|
||||
if (!__dumpSections (bin, ptr2, output, file, rad)) {
|
||||
goto error;
|
||||
}
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user