2

我已经安装了带有 windows7 32 位的 cuckoo 沙箱作为访客操作系统。我已经在“virtualbox.conf”中正确编辑了“机器”和“标签”字段。虚拟机被命名为 yo-7。但是[root] CRITICAL: CuckooCriticalError: Please update your configuration. Unable to shut 'yo-7' down or find the machine in its proper state: Timeout hit while for machine yo-7 to change status在显示以下内容后执行“sudo python cuckoo.py”时出现此错误“”

[lib.cuckoo.core.scheduler] 信息:使用“virtualbox”机器管理器

这是 virtualbox.conf 文件的内容

[virtualbox]
# Specify which VirtualBox mode you want to run your machines on.
# Can be "gui", "sdl" or "headless". Refer to VirtualBox's official
# documentation to understand the differences.
mode = gui

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

# 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 =yo-7 

[yo-7]
# Specify the label name of the current machine as specified in your
# VirtualBox configuration.
label = yo-7

# 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.56.101

# (Optional) Specify the snapshot name to use. If you do not specify a snapshot
# name, the VirtualBox MachineManager will use the current snapshot.
# Example (Snapshot1 is the snapshot name):
#snapshot = Win7snap1

# (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 (vboxnet0 is the interface name):
#interface = vboxnet0

# (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.56.1

# (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
4

2 回答 2

0

您可能的问题出在 ip 中,您可能必须更改为 192.168.56.1,默认情况下它是 virtuaboxl 分配给虚拟机的 ip,其他的是主机的内部 ip,然后是 192.168.1.10x(1 或 2)。我希望能很好地解释我,这可能有点令人困惑。

于 2014-09-19T21:25:03.387 回答
0

标签应该是虚拟机的名称,而不是 vm 系统中的用户名

于 2016-07-13T03:31:40.827 回答