View Single Post
  #27  
Old 01-23-2004, 19:26
lownoise
 
Posts: n/a
neolite 2.0

OEP Script for neolite 2.0
Script will found OEP jump and set there a breakpoint
Program will run and stops on breakpoint (jmp eax)
this script has been tested on R@dier unpack neolite 2.0.exe

var x
var y

mov x, eip


lab1:
mov y, [eip]
and y, 0000ffff
cmp y,e0ff
je lab2
cmp y,e0cc
je lab3
add eip,1
jmp lab1

lab2:
ubp eip
lab3:
mov eip,x
run
ret
Reply With Quote