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


You can install it using pip

as described here: https://github.com/byt3bl33d3r/MITMf#installation



+1


source


Solved Could not find package

  1. Enter the command: leafpad / etc / apt / sources.list
  2. Remove everything in this sources.list file
  3. Google for "Kali Linux Repository"
  4. Scroll down and find "Calibrated Repository"
  5. Copy everything inside this video and paste it into sources.list file
  6. .Save your sources.list file
  7. Run the command: apt-get update
  8. Now install ur package (e.g. apt-get install mitmf)
0


source







All Articles