Cuckoo Sandbox in CentOS 7.

General support questions
Post Reply
kirinxhell
Posts: 1
Joined: 2015/05/23 15:00:00

Cuckoo Sandbox in CentOS 7.

Post by kirinxhell » 2015/05/23 15:10:10

Hi, I'm trying to run my cuckoo in VMware with CentOS 7, but I'm getting this error when trying to initialize cuckoo.py in VMware(CentOS).

And yes, I have followed the cuckoo document and tried to google for this error, but either the solution is vague or the solution is not working.

Image

This is my vmware.conf file in cuckoo.

Code: Select all

[vmware]
# Specify which Vmware Workstation mode you want to run your machines on.
# Can be "gui" or "nogui". Refer to VMware's official
# documentation to understand the differences.
mode = gui

# Path to the local installation of the vmrun utility.
path = /usr/bin/vmrun

# Specify a comma-separated list of available machines to be used. For each
# specified ID you have to define a dedicated section containing the details
# on the respective machine. (E.g. cuckoo1,cuckoo2,cuckoo3)
machines = cuckoo1

[cuckoo1]
# Specify the path to vmx file of this virtual machine.
vmx_path = ../cuckoo1/cuckoo1.vmx


# Specify the snapshot name to use.
snapshot = ../cuckoo1/Snapshot1


# Specify the operating system platform used by current machine
# [windows/darwin/linux].
platform = windows

# Specify the IP address of the current virtual machine. Make sure that the
# IP address is valid and that the host machine is able to reach it. If not,
# the analysis will fail.
ip = 192.168.1.2

# (Optional) Specify the name of the network interface that should be used
# when dumping network traffic from this machine with tcpdump. If specified,
# overrides the default interface specified in cuckoo.conf
# Example (virbr0 is the interface name):
# interface = virbr0

# (Optional) Specify the IP of the Result Server, as your virtual machine sees it.
# The Result Server will always bind to the address and port specified in cuckoo.conf,
# however you could set up your virtual network to use NAT/PAT, so you can specify here 
# the IP address for the Result Server as your machine sees it. If you don't specify an
# address here, the machine will use the default value from cuckoo.conf.
# NOTE: if you set this option you have to set result server IP to 0.0.0.0 in cuckoo.conf.
# Example:
# resultserver_ip = 192.168.122.101

# (Optional) Specify the port for the Result Server, as your virtual machine sees it.
# The Result Server will always bind to the address and port specified in cuckoo.conf,
# however you could set up your virtual network to use NAT/PAT, so you can specify here
# the port for the Result Server as your machine sees it. If you don't specify a port
# here, the machine will use the default value from cuckoo.conf.
# Example:
# resultserver_port = 2042

# (Optional) Set your own tags. These are comma separated and help to identify
# specific VMs. You can run samples on VMs with tag you require.
# tags = windows_xp_sp3,32_bit,acrobat_reader_6
For the :

Code: Select all

# Specify the snapshot name to use.
snapshot = ../cuckoo1/Snapshot1
I have tried the following.

*cuckoo1-Snapshot1 is the original snapshot when I create the Snapshot1 from GUI.
*Snapshot1 is the copy of cuckoo1-Snapshot1 (to test out this problem).

Code: Select all

snapshot = cuckoo1-Snapshot1
snapshot = cuckoo1-Snapshot1.vmsn
snapshot = ../cuckoo1/cuckoo1-Snapshot1
snapshot = ../cuckoo1/cuckoo1-Snapshot1.vmsn
snapshot = /root/Desktop/cuckoo1/cuckoo1-Snapshot1
snapshot = /root/Desktop/cuckoo1/cuckoo1-Snapshot1.vmsn
and

Code: Select all

snapshot = Snapshot1
snapshot = Snapshot1.vmsn
snapshot = ../cuckoo1/Snapshot1
snapshot = ../cuckoo1/Snapshot1.vmsn
snapshot = /root/Desktop/cuckoo1/Snapshot1
snapshot = /root/Desktop/cuckoo1/Snapshot1.vmsn


**This is my vmx folder.**

Image

**This is how I make the Snapshot1**

Image

Post Reply