I need to download some packages for the MITMF using the command:
HTML Code:
apt-get install python-dev python-setuptools libpcap0.8-dev libnetfilter-queue-dev libssl-dev libjpeg-dev libxml2-dev libxslt1-dev libcapstone3 libcapstone-dev libffi-dev file
The command gives the output
HTML Code:
Reading package lists... DoneBuilding dependency tree... DoneReading state information... DoneNote, selecting 'python-dev-is-python2' instead of 'python-dev'E: Unable to locate package libcapstone3
Once I remove libcapstone3 from the command everything installs perfectly fine. When I try to install libcapstone3 individually it gives the output:
HTML Code:
Reading package lists... DoneBuilding dependency tree... DoneReading state information... DoneE: Unable to locate package libcapstone3
I have tried editing my sources.list file, searching for the solution, apt updating and upgrading, I even tried on fresh virtual machine and the same thing happens.


/etc/os-release:
HTML Code:
PRETTY_NAME="Kali GNU/Linux Rolling"NAME="Kali GNU/Linux"ID=kaliVERSION="2021.1"VERSION_ID="2021.1"VERSION_CODENAME="kali-rolling"ID_LIKE=debianANSI_COLOR="1;31"HOME_URL="https://www.kali.org/"SUPPORT_URL="https://forums.kali.org/"BUG_REPORT_URL="https://bugs.kali.org/"
/etc/apt/sources.list:


HTML Code:
deb http://http.kali.org/kali kali-rolling main non-free contribdeb http://http.kali.org/kali kali-experimental main non-free contribdeb http://http.kali.org/kali kali-last-snapshot main non-free contribdeb-src http://http.kali.org/kali kali-rolling main non-free contrib

I'm using a Kali virtual machine on VirtualBox on my host machine using Windows 10

I've spent hours trying to fix this. Why is this happening and how may I fix it?