How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "reclusive/kali"
config.vm.box_version = "0.0.1"
end
vagrant init reclusive/kali \
--box-version 0.0.1
vagrant up
This version was created almost 5 years ago.
Kali box with two users; root:toor and vagrant:vagrant. Advised to use the gui and 2048MB of RAM (can manage on 1024 if need be):
config.vm.provider "virtualbox" do |vb|
vb.gui = true
vb.memory = "2048"
end