我的物理机是windows 10 64位
我使用的是VMware
VMware中安装Ubuntu 16.04 64位
在该ubuntu中安装virtualbox,然后再安装
windows7(x86)32位机器
也就是说我们需要在虚拟机下装一个虚拟机
所以大体的环境就是你的win10本机下装一个VMware,VMware里面装了一个Ubuntu16.04,Ubuntu16.04里面装了个windows7,其中Ubuntu称为host主机,Windows称为我们guest
1. Ubuntu的版本(笔者用的是ubuntu 16.04.6,所以以下的所有测试操作以16.04.6为准)
Ubuntu 16.04.6
2. windows的版本
cn_windows_7_professional_x86_dvd_x15-65790.iso
3. VMware的版本
VMware 15.1.0
4. Virtualbox的版本
virtualbox 6.0.8(cuckoo不支持低版本的virtualbox了)
sudo apt-get autoremove open-vm-tools
sudo apt-get install open-vm-tools-desktop
如果仍然不行请核对安装的ubuntu版本,我就是不小心装了32位的ubuntu才导致一直不可用(可能因为物理机是64位的)
gedit /etc/apt/sources.list
## 16.04.4的推荐源
deb http://mirrors.aliyun.com/ubuntu/ trusty main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu/ trusty-backports main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu/ trusty-proposed main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu/ trusty-security main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu/ trusty-updates main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ trusty main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-backports main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-proposed main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-security main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-updates main multiverse restricted universe
## 16.04.6的推荐源
deb-src http://archive.ubuntu.com/ubuntu xenial main restricted
deb http://mirrors.aliyun.com/ubuntu/ xenial main restricted
deb-src http://mirrors.aliyun.com/ubuntu/ xenial main restricted multiverse universe
deb http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted multiverse universe
deb http://mirrors.aliyun.com/ubuntu/ xenial universe
deb http://mirrors.aliyun.com/ubuntu/ xenial-updates universe
deb http://mirrors.aliyun.com/ubuntu/ xenial multiverse
deb http://mirrors.aliyun.com/ubuntu/ xenial-updates multiverse
deb http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse
deb http://archive.canonical.com/ubuntu xenial partner
deb-src http://archive.canonical.com/ubuntu xenial partner
deb http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted multiverse universe
deb http://mirrors.aliyun.com/ubuntu/ xenial-security universe
deb http://mirrors.aliyun.com/ubuntu/ xenial-security multiverse
apt-get update && apt-get upgrade
1、安装zsh
apt-get install zsh -y
2、修改默认shell
chsh -s /bin/zsh
3、 安装Git
apt-get install git -y
4、安装oh-my-zsh
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
5、安装zsh-syntax-highlighting语法高亮插件
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git
echo "source ${(q-)PWD}/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> ${ZDOTDIR:-$HOME}/.zshrc
source ~/.zshrc
6、安装zsh-autosuggestions语法历史记录插件
git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
vim ~/.zshrc
## 在zshrc的这一行加入zsh-autosuggestions
plugins=(
zsh-autosuggestions
)
source ~/.zshrc
apt-get install git -y
apt-get install python python-pip python-dev libffi-dev libssl-dev -y
apt-get install python-virtualenv python-setuptools -y
apt-get install libjpeg-dev zlib1g-dev swig -y
# 创建pip的配置文件
mkdir ~/.pip
touch ~/.pip/pip.conf
sudo gedit ~/.pip/pip.conf
# 粘贴一下内容
[global]
index-url = http://pypi.douban.com/simple
[install]
trusted-host=pypi.douban.com
# 推荐的镜像源
# 豆瓣(douban) http://pypi.douban.com/simple/ (推荐)
# 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
# 阿里云 http://mirrors.aliyun.com/pypi/simple/
# 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
# 中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
# pip升级后会有文件的错误,编辑以下文件内容(如果你pip能够正常不需要改)
# 实测ubuntu16.04.7无需如下修改
gedit /usr/bin/pip
from pip import main 改为 from pip._internal import main
apt-get install mongodb -y
## 可能出现安装失败,按提示安装相关依赖
apt-get install postgresql libpq-dev -y
echo deb http://download.virtualbox.org/virtualbox/debian xenial contrib | sudo tee -a /etc/apt/sources.list.d/virtualbox.list
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
apt-get update
## 切换到你的virtualbox deb包目录下后执行以下命令
## 注意deb文件需要官网自己下载对应ubuntu的版本
dpkg -i virtualbox-6.0_6.0.8-130520~Ubuntu~xenial_amd64.deb
## 如果你的机器原来安装过virtualbox,也就是你的Ubuntu,执行以下命令后再进行安装
apt remove virtualbox*
apt-get install tcpdump apparmor-utils -y
aa-disable /usr/sbin/tcpdump
请注意,只有在使用默认目录时才需要apparmor禁用配置文件(aa-disable命令),CWD因为apparmor会阻止创建实际的PCAP文件(另请参阅 tcpdump的权限被拒绝)。
对于禁用apparmor的Linux平台(例如,Debian),以下命令就足以安装tcpdump:
$ sudo apt-get install tcpdump
Tcpdump需要root权限,但由于不希望Cuckoo以root身份运行,因此必须为二进制文件设置特定的Linux功能:
$ sudo groupadd pcap
$ sudo usermod -a -G pcap cuckoo
$ sudo chgrp pcap /usr/sbin/tcpdump
$ sudo setcap cap_net_raw,cap_net_admin=eip /usr/sbin/tcpdump
可以使用以下命令验证上一个命令的结果:
$ getcap /usr/sbin/tcpdump
/usr/sbin/tcpdump = cap_net_admin,cap_net_raw+eip
如果没有安装setcap,可以使用:
$ sudo apt-get install libcap2-bin
## 如果下载速度很慢,请翻到上面pip的源配置,进行源更新
pip install m2crypto==0.24.0
## 如果下载速度很慢,请翻到上面pip的源配置,进行源更新
## 下载完成安装时候可能出现如下错误
## ERROR: Package ‘pyrsistent‘ requires a different Python: 2.7.5 not in ‘>=3.5‘
## 需要更新pyrsistent的版本:pip install pyrsistent==0.15.0
pip install -U pip setuptools
pip install -U cuckoo
adduser cuckoo
mkdir /opt/cuckoo
chown cuckoo:cuckoo /opt/cuckoo
# cuckoo -cwd 可以将工作路径切换到/opt/cuckoo这个目录下,这样在这个目录下就可以看到所有的配置文件
cuckoo --cwd /opt/cuckoo
usermod -a -G sudo cuckoo
# 创建一张网卡
vboxmanage hostonlyif create
以下几步每次ubuntu重启都需要重新设置
vboxmanage hostonlyif ipconfig vboxnet0 --ip 192.168.201.1
# 设置host与guest的转发规则
# 注意网卡与你的电脑的网卡是否对应 ifconfig可查看对应网卡
sudo iptables -A FORWARD -o ens33 -i vboxnet0 -s 192.168.201.0/24 -m conntrack --ctstate NEW -j ACCEPT
sudo iptables -A FORWARD -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
sudo iptables -A POSTROUTING -t nat -j MASQUERADE
# 开启转发
## 如果执行如下命令出现Bash /proc/sys/net/ipv4/ip_forward: Permission denied错误
## 可以选择如下命令之一替换执行
## sudo bash -c 'echo 1 > /proc/sys/net/ipv4/ip_forward'
## echo 1 | sudo tee /proc/sys/net/ipv4/ip_forward
echo 1 > /proc/sys/net/ipv4/ip_forward
# 在cmd下能ping www.baidu.com即可
静态 IP - 192.168.201.101
子网掩码 255.255.255.0
默认网关 - 192.168.201.1
DNS - any DNS server (8.8.8.8)
需要安装pip
## cmd命令行转到C:\Python27\Scripts然后执行
easy_install.exe pip
## 然后升级pip
python -m pip install --upgrade pip
安装
pip install pillow
# 1. 找到agent.py文件,文件所在目录如下
## /home/cuckoo/.local/lib/python2.7/site-packages/cuckoo/data/agent/agent.py
# 2. 将agent.py改名为agent.pyw
# 3. 将agent.pyw放到windows7: C:\Users\[USER]\AppData\Roaming\MicroSoft\Windows\Start Menu\Programs\Startup\
# windwos xp: C:\Documents and Settings\yfl\「开始」菜单\程序\启动
# 路径类似,只是作为参照
# user为自己的计算机登录名
然后重启,可以看到进程中存在pythonw,在命令行输入netstat -na可以看到8000端口处于监听状态
保持windows系统处于开启,且进程中存在pythonw,点击virtualbox管理器菜单栏控制-工具-备份[系统快照],生成新的快照,取名为Snapshot1,若取为其他名字则在接下来的cuckoo配置中请于virtualbox.conf文件中修改
启动以进行初始化
cuckoo -d
第一次会进行初始化配置,然后自动关闭
cuckoo配置文件修改,.cuckoo目录被隐藏,需要ctrl+H显示所有文件
重新启动沙箱
cuckoo -d
注:要启动web界面需要修改reporting.conf文件,将Mongodb的配置选项改为yes
cuckoo web
本次配置参考自博文:https://blog.csdn.net/qq_38990949/article/details/103336089
并在此基础上做了更加详细的配置介绍