File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -39,26 +39,32 @@ def self.parse(args)
39
39
end
40
40
41
41
opt . on ( '--startreg <String>' , "(Optional) The starting register" ) do |v |
42
+ # Do not change this key. This should matching the one in Rex::Exploitation::Egghunter
42
43
options [ :startreg ] = v
43
44
end
44
45
45
46
opt . on ( '--forward' , "(Optional) To search forward" ) do |v |
47
+ # Do not change this key. This should matching the one in Rex::Exploitation::Egghunter
46
48
options [ :startreg ] = true
47
49
end
48
50
49
51
opt . on ( '--depreg <String>' , "(Optional) The DEP register" ) do |v |
52
+ # Do not change this key. This should matching the one in Rex::Exploitation::Egghunter
50
53
options [ :depreg ] = v
51
54
end
52
55
53
56
opt . on ( '--depdest <String>' , "(Optional) The DEP destination" ) do |v |
57
+ # Do not change this key. This should matching the one in Rex::Exploitation::Egghunter
54
58
options [ :depdest ] = v
55
59
end
56
60
57
61
opt . on ( '--depsize <Fixnum>' , "(Optional) The DEP size" ) do |v |
62
+ # Do not change this key. This should matching the one in Rex::Exploitation::Egghunter
58
63
options [ :depsize ] = v
59
64
end
60
65
61
66
opt . on ( '--depmethod <String>' , "(Optional) The DEP method to use (virtualprotect/virtualalloc/copy/copy_size)" ) do |v |
67
+ # Do not change this key. This should matching the one in Rex::Exploitation::Egghunter
62
68
options [ :depmethod ] = v
63
69
end
64
70
You can’t perform that action at this time.
0 commit comments