-
Notifications
You must be signed in to change notification settings - Fork 119
/
sslhook-main.cpp
executable file
·77 lines (62 loc) · 1.99 KB
/
sslhook-main.cpp
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
/*
Copyright 2020 Google LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https ://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <inttypes.h>
#include <stdbool.h>
#include "sslhook.h"
int main(int argc, char **argv)
{
SSLInst *instrumentation = new SSLInst();
instrumentation->Init(argc, argv);
int target_opt_ind = 0;
for (int i = 1; i < argc; i++) {
if (strcmp(argv[i], "--") == 0) {
target_opt_ind = i + 1;
break;
}
}
int target_argc = (target_opt_ind) ? argc - target_opt_ind : 0;
char **target_argv = (target_opt_ind) ? argv + target_opt_ind : NULL;
unsigned int pid = GetIntOption("-pid", argc, argv, 0);
if (!target_argc && !pid) {
printf("Usage:\n");
printf("%s <options> -- <target command line>\n", argv[0]);
printf("Or:\n");
printf("%s <options> -pid <pid to attach to>\n", argv[0]);
return 0;
}
DebuggerStatus status;
if (target_argc) {
status = instrumentation->Run(target_argc, target_argv, 0xFFFFFFFF);
} else {
status = instrumentation->Attach(pid, 0xFFFFFFFF);
}
switch (status) {
case DEBUGGER_CRASHED:
printf("Process crashed\n");
instrumentation->Kill();
break;
case DEBUGGER_HANGED:
printf("Process hanged\n");
instrumentation->Kill();
break;
case DEBUGGER_PROCESS_EXIT:
printf("Process exited normally\n");
break;
default:
FATAL("Unexpected status received from the debugger\n");
break;
}
return 0;
}