I agree, however. If you have a TP-Link 722N version 1, here are some commands to get usb wifi working in VM or VirtualBox.
How can I get my wifi card TP-Link TL-WN722N to work in Kali-Linux VMware 12
Your USB wifi already listed through lsusb command the ID 2357:010c is IDvendor and the IDproduct of the TP-Link TL-WN722N USB wifi.
2 ways to install the driver :
The wired connection is required
- open the terminal and run the following command:
apt-get update
apt-get upgrade
apt-get dist-upgrade
reboot
then
apt-get install dkms git
git clone https://github.com/lwfinger/rtl8188eu.git
dkms add ./rtl8188eu
dkms build 8188eu/1.0
dkms install 8188eu/1.0
modprobe 8188eu
2) by compiling the source
apt-get update
apt-get upgrade
apt-get dist-upgrade
reboot
Use the command apt-get install gcc make linux-headers-$(uname -r) to install the appropriate linux-headers pacakge , then run :
git clone https://github.com/lwfinger/rtl8188eu.git
cd rtl8188eu
make
make install
modprobe 8188eu
Helped me and hope it helps someone else.