Could not find package mitmf
I am trying to download mitmf for kali linux. I am following the instructions in the YouTube video. But when I get step to step:
sudo apt-get install mitmf
I am getting the following error:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package mitmf
Why is there a workaround and is there a job? thank
+3
source to share
3 answers
Try this, this is the simplest solution.
sudo gedit / etc / apt / sources.list
Add these lines to the end of the file:
deb http://http.kali.org/kali kali-rolling main contrib non-free
deb http://security.kali.org/kali-security kali-rolling/updates main contrib non-free
deb http://http.kali.org/kali kali-rolling main contrib non-free
deb http://security.kali.org/kali-security kali-rolling/updates main contrib non-free
deb http://http.kali.org/kali sana main non-free contrib
deb http://security.kali.org/kali-security sana/updates main contrib non-free
Then add the key:
sudo apt-key adv --keyserver pgp.mit.edu --recv-keys ED444FF07D8D0BF6
Then run
Sudo apt-get update
You should now have most of the packages present in Kali linux, one of which is mitmf.
sudo apt-get install mitmf
+2
source to share
Solved Could not find package
- Enter the command: leafpad / etc / apt / sources.list
- Remove everything in this sources.list file
- Google for "Kali Linux Repository"
- Scroll down and find "Calibrated Repository"
- Copy everything inside this video and paste it into sources.list file
- .Save your sources.list file
- Run the command: apt-get update
- Now install ur package (e.g. apt-get install mitmf)
0
source to share