Archive for November, 2007
Peach 2.0 @ PacSec 2007
Peach 2.0 will be released at PacSec 2007 in Tokyo. If your around make sure to check it out!
No commentsPeach Builder
Peach 2.0 development is rocking, here is a quick look at Peach Builder, a GUI for creating Peach 2.0 DDL files. Peach builder will make fuzzer development much easier and faster.
2 commentsVMware control from Python
Peach 2.0 development is blazing along, at some point I needed a python module to control a vmware server to allow for automatic start, stop and reverting. I figured I’d release this useful bit of code as a python module.
from vix import Vix
import time
vm = Vix()
print "Connecting"
vm.Connect()
print "Opening vm"
vm.Open("E:\\VMs\\Windows XP\\Windows XP Professional.vmx")
#print "Powering On vm"
#vm.PowerOn()
#print "Waiting a bit..."
#time.sleep(10)
#print "Powering off vm"
#vm.PowerOff()
print "Reverting to snapshot 0"
vm.GetRootSnapshot()
vm.RevertToSnapshot()
print "Sleeping"
time.sleep(10)
print "Disconnecting"
vm.Disconnect()
2 comments