项目作者: InfamousSYN

项目描述 :
CHEF cookbook for automating provisioning of wireless testing platforms
高级语言: Ruby
项目地址: git://github.com/InfamousSYN/Cookbook-Wireless.git
创建时间: 2018-11-01T23:48:24Z
项目社区:https://github.com/InfamousSYN/Cookbook-Wireless

开源协议:

下载


Cookbook-Wireless

A CHEF cookbook used to provision my Vagrant boxes for wireless penetration. This cookbook’s target OS is Ubuntu 18.04 (Bionic Beaver) x86_64, this is due to personal experience with testing wireless networks using Realtek 88XXau devices and issues with rolling Kali support.

Usage

Download the repository into target directory.

git clone https://github.com/InfamousSYN/Cookbook-Wireless.git

Copy the example Vagrantfile file from the Cookbook’s examples directory into the target directory.

cp Cookbook-Wireless/examples/Vagrantfile .

The example Vagrantfile has an override json command to configure the ["general"]["chipset"]["driver"] attribute variable at runtime. The user can change this value from 8814au to 8812au as required by their hardware needs.

  1. config.vm.provision "chef_solo" do |chef|
  2. chef.cookbooks_path = ["../../Development/Repositories/"]
  3. chef.add_recipe "Cookbook-Wireless"
  4. chef.json = {
  5. "general" => {
  6. "chipset" => {
  7. "driver" => "apt"
  8. },
  9. "tool" => {
  10. "eapeak" => {
  11. "enable" => false
  12. },
  13. "rogue" => {
  14. "enable" => true
  15. },
  16. "aircrack" => {
  17. "enable" => false
  18. },
  19. "hcxtools" => {
  20. "enable" => false
  21. },
  22. "hcxdumptool" => {
  23. "enable" => false
  24. },
  25. "scapy" => {
  26. "enable" => false
  27. }
  28. }
  29. }
  30. }
  31. end

Launch the Vagrant box

vagrant up