-
Notifications
You must be signed in to change notification settings - Fork 218
Expand file tree
/
Copy pathbulk_extractor_scanners.h
More file actions
75 lines (64 loc) · 1.49 KB
/
Copy pathbulk_extractor_scanners.h
File metadata and controls
75 lines (64 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/* A list of the compiled-in -scanners
* Included twice by bulk_extractor_scanners.cpp, once for definitions, the second time to create the array.
*/
#ifndef BULK_EXTRACTOR
#error "config.h must be included before bulk_extractor_scanners.h"
#endif
#ifndef BULK_EXTRACTOR_SCANNERS_H_FIRST_INCLUDE
#define BULK_EXTRACTOR_SCANNERS_H_FIRST_INCLUDE
#include "be20_api/scanner_set.h"
extern "C" scanner_t *scanners_builtin[];
#endif
#ifndef SCANNER
#define SCANNER(scanner) extern "C" scanner_t scan_ ## scanner;
#endif
/* flex-based scanners */
SCANNER(base16)
SCANNER(email)
SCANNER(accts)
SCANNER(gps)
/* Regular scanners */
SCANNER(aes)
SCANNER(base64)
SCANNER(elf)
SCANNER(exif) // JPEG carver
#ifdef HAVE_EXIV2
SCANNER(exiv2)
#endif
SCANNER(evtx) // scanner provided by 4n6ist:
SCANNER(facebook)
SCANNER(find)
SCANNER(gzip)
SCANNER(hiberfile)
SCANNER(httplogs)
SCANNER(json)
SCANNER(kml)
SCANNER(msxml)
SCANNER(net)
SCANNER(ntfsindx) // scanner provided by 4n6ist:
SCANNER(ntfslogfile) // scanner provided by 4n6ist:
SCANNER(ntfsmft) // scanner provided by 4n6ist:
SCANNER(ntfsusn)
SCANNER(outlook)
SCANNER(pdf)
SCANNER(rar)
SCANNER(sqlite)
SCANNER(utmp) // scanner provided by 4n6ist:
SCANNER(vcard)
SCANNER(windirs)
SCANNER(winlnk)
SCANNER(winpe)
SCANNER(winprefetch)
SCANNER(wordlist)
SCANNER(xor)
#ifdef HAVE_YARAX
SCANNER(yarax)
#endif
SCANNER(zip)
#ifdef HAVE_LIBLIGHTGREP
//SCANNER(accts_lg)
//SCANNER(base16_lg)
//SCANNER(email_lg)
//SCANNER(gps_lg)
//SCANNER(lightgrep)
#endif