Skip to content

Commit

Permalink
Remove unattended-upgrades, change tablets config and add hyper v info
Browse files Browse the repository at this point in the history
  • Loading branch information
r4ulcl committed Jun 8, 2024
1 parent d76bf47 commit 0d5a71d
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 12 deletions.
3 changes: 2 additions & 1 deletion APs/config/mgt/hostapd_wpe_relay.eap_user
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,5 @@

#"t" GTC,TTLS-PAP,TTLS-CHAP,TTLS-MSCHAP,MSCHAPV2,MD5,GTC,TTLS,TTLS-MSCHAPV2 "password" [2]

"CONTOSOREG\luis.da" MSCHAPV2 "u89gh68!6fcv56ed" [2]
"CONTOSOREG\luis.da" MSCHAPV2 "u89gh68!6fcv56ed" [2]
"CORPO\god" MSCHAPV2 hash:cbdc3e5938885b7a507775cf22d56351 [2]
1 change: 0 additions & 1 deletion APs/config/mgt/hostapd_wpe_relay_tablets.eap_user
Original file line number Diff line number Diff line change
Expand Up @@ -112,4 +112,3 @@
#"t" GTC,TTLS-PAP,TTLS-CHAP,TTLS-MSCHAP,MSCHAPV2,MD5,GTC,TTLS,TTLS-MSCHAPV2 "password" [2]

"CONTOSOREG\luis.da" MSCHAPV2 "u89gh68!6fcv56ed" [2]
"CORPO\god" MSCHAPV2 hash:cbdc3e5938885b7a507775cf22d56351 [2]
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ The principal changes from version 1.0.5 to 2.0.3 are the following.
- More clients
- Monitorization and detection using nzyme WIDS.

## Install
## Using WiFiChallenge Lab

### Using the VM

Expand Down Expand Up @@ -84,6 +84,7 @@ Go to the folder where the tools will be installed and execute `Attacker/install

- A host with at least 4 CPU cores and 4 GB of RAM.
- vagrant
- VirtualBox, VMware or Hyper-V

#### Create the VM with vagrant

Expand All @@ -105,11 +106,16 @@ If you want a VMWare VM:
vagrant up vmware_vm
```

And for a VirtualBox VM:
For a VirtualBox VM:
``` bash
vagrant up virtualbox_vm
```

And for a Hyper-v VM, in a admin console:
``` bash
vagrant up hyper-v_vm --provider=hyperv
```

## Usage

### Attack from Ubuntu VM
Expand Down
3 changes: 3 additions & 0 deletions vagrant/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

# update package lists
sudo apt-get update
sudo apt-get full-upgrade -y

sudo apt remove unattended-upgrades -y

## Install drivers modprobe
sudo apt-get install -y linux-generic
Expand Down
12 changes: 4 additions & 8 deletions vagrant/vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,8 @@ Vagrant.configure("2") do |config|
virtualbox_vm.vm.define "WiFiChallengeLab vbox"
virtualbox_vm.vm.hostname = "WiFiChallengeLab"
virtualbox_vm.vm.provider "virtualbox" do |vb|
#vb.memory = "2048"
#vb.cpus = 2
vb.memory = "8192"
vb.cpus = 8
vb.memory = "2048"
vb.cpus = 2
vb.name = "WiFiChallenge Lab v2.0.4"
end
virtualbox_vm.vm.provision :shell, path: "./install.sh"
Expand All @@ -43,11 +41,9 @@ Vagrant.configure("2") do |config|
v.clone_directory = "E:/VMWare"
v.force_vmware_license = "workstation" # force the licence for fix some vagrant plugin issue
v.gui = true
#v.memory = "2048"
#v.cpus = 2
v.memory = "2048"
v.cpus = 2
v.vmx["displayName"] = "WiFiChallenge Lab v2.0.4"
v.memory = "8192"
v.cpus = 8
end
#vmware_vm.vm.network "private_network", ip: "192.168.57.10"
vmware_vm.vm.hostname = "WiFiChallengeLab"
Expand Down

0 comments on commit 0d5a71d

Please sign in to comment.