| author | Christophe Grenier <grenier@cgsecurity.org> | 2010-07-23 06:53:40 (GMT) |
|---|---|---|
| committer | Christophe Grenier <grenier@cgsecurity.org> | 2010-07-23 06:53:40 (GMT) |
| commit | 431dc0ed086e7f05d7ae9f2af3a1b33db2e80617 (patch) | |
| tree | ca42e56f45bf4bd337ffd5ab5d99af924448f51a | |
| parent | d5431cc6985c6c862bf89768d96f277453f104f5 (diff) | |
PhotoRec: recover RoboForm .rfp files
| -rw-r--r-- | src/Makefile.am | 1 | ||||
| -rw-r--r-- | src/file_list.c | 2 | ||||
| -rw-r--r-- | src/file_rfp.c | 65 |
3 files changed, 68 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 259ab56..68e6fc1 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -185,6 +185,7 @@ file_C = filegen.c \ file_rdc.c \ file_reg.c \ file_res.c \ + file_rfp.c \ file_riff.c \ file_rm.c \ file_rns.c \ diff --git a/src/file_list.c b/src/file_list.c index cf2c3fa..4f8e856 100644 --- a/src/file_list.c +++ b/src/file_list.c @@ -187,6 +187,7 @@ extern const file_hint_t file_hint_raw; extern const file_hint_t file_hint_rdc; extern const file_hint_t file_hint_reg; extern const file_hint_t file_hint_res; +extern const file_hint_t file_hint_rfp; extern const file_hint_t file_hint_riff; extern const file_hint_t file_hint_rm; extern const file_hint_t file_hint_rns; @@ -393,6 +394,7 @@ file_enable_t list_file_enable[]= { .enable=0, .file_hint=&file_hint_rdc }, { .enable=0, .file_hint=&file_hint_reg }, { .enable=0, .file_hint=&file_hint_res }, + { .enable=0, .file_hint=&file_hint_rfp }, { .enable=0, .file_hint=&file_hint_riff }, { .enable=0, .file_hint=&file_hint_rm }, { .enable=0, .file_hint=&file_hint_rns }, diff --git a/src/file_rfp.c b/src/file_rfp.c new file mode 100644 index 0000000..c56d5b3 --- a/dev/null +++ b/src/file_rfp.c @@ -0,0 +1,65 @@ +/* + + File: file_rfp.c + + Copyright (C) 2010 Christophe GRENIER <grenier@cgsecurity.org> + + This software is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write the Free Software Foundation, Inc., 51 + Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + + */ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif +#ifdef HAVE_STRING_H +#include <string.h> +#endif +#include <stdio.h> +#include "types.h" +#include "filegen.h" + +static void register_header_check_rfp(file_stat_t *file_stat); +static int header_check_rfp(const unsigned char *buffer, const unsigned int buffer_size, const unsigned int safe_header_only, const file_recovery_t *file_recovery, file_recovery_t *file_recovery_new); + +const file_hint_t file_hint_rfp= { + .extension="rfp", + .description="RoboForm", + .min_header_distance=0, + .max_filesize=PHOTOREC_MAX_FILE_SIZE, + .recover=1, + .enable_by_default=1, + .register_header_check=®ister_header_check_rfp +}; + +static const unsigned char rfp_header[10]= { + 'U' , 'R' , 'L' , '3' , ':', 'v' , 'e' , 'r' , + '3' , ':', +}; + +static void register_header_check_rfp(file_stat_t *file_stat) +{ + register_header_check(0, rfp_header, sizeof(rfp_header), &header_check_rfp, file_stat); +} + +static int header_check_rfp(const unsigned char *buffer, const unsigned int buffer_size, const unsigned int safe_header_only, const file_recovery_t *file_recovery, file_recovery_t *file_recovery_new) +{ + if(memcmp(buffer, rfp_header, sizeof(rfp_header))==0) + { + reset_file_recovery(file_recovery_new); + file_recovery_new->extension=file_hint_rfp.extension; + return 1; + } + return 0; +} |
