forked from KAIST-IS521/Scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscanner.c
113 lines (92 loc) · 2.4 KB
/
scanner.c
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
// Malware scanner starter code.
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include "yara.h"
void showUsage( const char* prog )
{
printf( "Usage: %s [opts...] [dir]\n", prog );
}
void scanProcs( YR_RULES* rules )
{
// TODO: scan processes
}
void scanDir( const char* szDir, YR_RULES* rules )
{
// TODO: scan dir
}
void cbCompile( int errLevel,
const char* szFile,
int lineNum,
const char* szMsg,
void* uData )
{
// TODO: fill me
}
int initYara( const char* szRulePath, YR_RULES** rules )
{
int r;
FILE* fp;
YR_COMPILER* compiler;
if ( yr_initialize() != ERROR_SUCCESS ) {
fprintf( stderr, "Failed to initialize YARA\n" );
return -1;
}
if ( yr_compiler_create( &compiler ) != ERROR_SUCCESS ) {
fprintf( stderr, "Failed to initialize YARA\n" );
yr_finalize();
return -1;
}
yr_compiler_set_callback( compiler, cbCompile, NULL );
fp = fopen( szRulePath, "r" );
if ( !fp ) {
fprintf( stderr, "Could not open the rule file.\n" );
yr_finalize();
return -1;
}
r = yr_compiler_add_file( compiler, fp, NULL, szRulePath );
fclose( fp );
if ( r ) { // If there exists an error.
fprintf( stderr, "Compile error.\n" );
yr_finalize();
return -1;
}
yr_compiler_get_rules( compiler, rules );
return 0;
}
int main( int argc, char* argv[] )
{
int opt;
YR_RULES* rules = NULL;
char* szRulePath = NULL;
while ( ( opt = getopt( argc, argv, "hr:" ) ) != -1 ) {
switch ( opt ) {
case 'r': // rule file
if ( szRulePath ) {
fprintf( stderr, "Cannot specify multiple rule files.\n" );
free( szRulePath );
exit( EXIT_FAILURE );
}
szRulePath = strdup( optarg );
break;
case 'h': // help
default:
showUsage( argv[0] );
exit( EXIT_FAILURE );
}
}
if ( szRulePath == NULL ) {
fprintf( stderr, "Rule file is not given.\n" );
return EXIT_FAILURE;
} else {
initYara( szRulePath, &rules );
}
if ( optind >= argc ) scanProcs( rules );
while ( optind < argc ) {
scanDir( argv[optind++], rules );
}
yr_finalize();
free( szRulePath );
return EXIT_SUCCESS;
}