Widespread Augmented Reality

Widespread Augmented Reality
Click on the image to get the Android Augmented Reality Heads up Display

Tuesday, August 25, 2020

Set Up WiFi Adapter in Kali Linux Virtual Box

 Here are all steps that I took to get the external WiFi USB adapter to be recognized inside Kali Linux Virtual Box.


1. First plug in USB adapter into Windows and install the approriate Windows driver

2. After confirming that Windows is using the adapter, unplug it from the USB port

3. Start Virtual box with ext already installed and import Kali linux OVA file

4. Select the USB 3.0 controller for the USB device

5. Start the imported appliance for Kali

6. After fully started:

$ sudo bash

$ mkdir /etc/gcrypt

$ echo all >> /etc/gcrypt/hwf.deny

$ sudo apt-get update

(See previous post on what the above commands accomplish)

7. Then get Linux driver for my AWUS1900 WiFi Adapter

https://store.rokland.com/pages/rokland-technologies-support

https://github.com/aircrack-ng/rtl8812au

download zip file.

extract zip file and rename if want to.

open terminal inside extracted folder

sudo apt-get install dkms

sudo ./dkms-install.sh

8. Plug adapter back in.

9. Now a right click on the upper right network icon and it should reveal wireless networks

for the USB WiFi adapter.


Friday, August 14, 2020

ADS-B and Virtual Radar Set Up

This is ADS-B, automatic dependent surveillance broadcast https://en.wikipedia.org/wiki/Automatic_dependent_surveillance_%E2%80%93_broadcast.

This is a cheap hardware option  for capturing signals https://www.amazon.com/NooElec-NESDR-Mini-Receiver-RTL2832U/dp/B00VZ1AWQA/ref=sr_1_10?dchild=1&keywords=adsb+receiver&qid=1597414256&sr=8-10

Here is the necessary antenna that may or may not come with the receiver. https://www.amazon.com/onelinkmore-1090Mhz-Antenna-Connector-Adapter/dp/B013S8B234

This is the Windows server to install on your local machine ( the PC that is sitting in front of you) https://drive.google.com/file/d/1Y5HkmfNWBgp4-xtnr16JoDjje-qdeL-X/view?usp=sharing.

This is the Windows client that reads from the server installed http://www.virtualradarserver.co.uk/

ADSB# has been discontinued in favor of ADSBSpy and an AirSpy dongle.  If you use something else, you will need ADSB# at https://drive.google.com/file/d/1Y5HkmfNWBgp4-xtnr16JoDjje-qdeL-X/view?usp=sharing


Below are screen shots of key configuration options that need to be set.



After starting ADSB and specifying the above options, you will need to download install and run Virtual Radar from https://www.virtualradarserver.co.uk/Download.aspx

          Under the Tool | Options, select these settings:



You will then see a hyper-link back on the main screen for 127.0.0.1/VirtualRadar.
Click that and navigate to your geographical location.


Wednesday, August 12, 2020

Kali Linux Virtual Box Pyrit Installation

Update 04/04/2022: use python2 also followed by sudo if needed

sudo apt-get install libpcap-dev

sudo apt-get install python-dev 

sudo apt-get install libssl-dev 

sudo apt-get install zlib1g-dev

Download zip from https://github.com/JPaulMora/Pyrit

or from https://drive.google.com/file/d/1xTYyMmc-dazKf95rF4unsYPELJ3doCvw/view?usp=sharing

Use Linux GUI file manager to extract the .ZIP file into Pyrit-master.

cd Pyrit-master

python setup.py clean

python setup.py build
If get error, then sudo ntpdate -v pool.ntp.org and then sudo apt-get update. Then run: sudo apt-get install libssl-dev

sudo python setup.py install

Mind you that these notes are more for me than you.  Good thing, because I did a Google search on how to install hcxpcaptool and hcxdumptool and out popped my notes from 2018.

https://s33me.blogspot.com/2018/12/kali-linux-wifite-missing-hcxpcaptool.html?spref=tw

Kali Virtual Box - Hash Sum Mismatch

This error occurs when running sudo apt-get update in the Kali Linux virtual box.

Holy Toledo!  This resolved it:

sudo bash

mkdir /etc/gcrypt
echo all >> /etc/gcrypt/hwf.deny
sudo apt-get update

Solution found at https://forums.kali.org/showthread.php?48822-Kali-2020-2-OVA-VIRTUALBOX-HASH-SUM-MISMATCH