Archive for November, 2007

Peach 2.0 @ PacSec 2007

November 08th, 2007 | Category: Peach

Peach 2.0 will be released at PacSec 2007 in Tokyo.  If your around make sure to check it out!

Link to PacSec

No comments

Peach Builder

November 07th, 2007 | Category: Peach, Uncategorized

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.

peachbuilder

2 comments

VMware control from Python

November 04th, 2007 | Category: Tool

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.

Available here

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