forked from x64dbg/Scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFSG1.x1.3x.txt
49 lines (38 loc) · 808 Bytes
/
FSG1.x1.3x.txt
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
//////////////////////////////////////////////////
// FileName : FSG1.x1.3x.txt
// Comment : OEP Find For FSG v1.0 v1.1 v1.31 v1.33
// Author : _pusher_
// Date : 2015-07-02
//////////////////////////////////////////////////
//start
msg "FSG 1.x and 1.3x OEP Finder"
msg "make sure you're at the entry point of the program before you continue"
pause
//clear breakpoints
bc
bphwc
//find oep jump
find cip,"EB09FE??0F84" //some pattern
cmp $result,0
je error
log "found OEP Jump: {0}", $result+4
//go to OEP jmp
bp $result+4
erun
//clear breakpoints
bc
$dw = 4:[$result+6]
$dest = $result+4 + $dw + 6
log "OEP: {0}", $dest
//bpx on OEP and go to OEP
bp $dest
erun
//clear breakpoints
bc
//comment it
cmt cip,"OEP"
//finish script
ret
error:
msg "didn't find oep jump"
ret