How to Install Kali Linux Tools on Ubuntu Using Docker

In the past, Katoolin was a script that helped to install Kali Linux tools on your preferred Linux distribution. It allowed users to add Kali Linux repositories, install Kali tools, and remove them as needed. However, Katoolin is no longer in active development, and using it might lead to compatibility issues on modern systems.

Since Katoolin is no longer maintained, the recommended and modern way to use Kali Linux tools on your distribution is through Docker, which offers an easy and efficient method to install and run Kali Linux tools without making significant changes to your host system.

It provides an isolated environment where you can run penetration testing tools and other Kali utilities without affecting your main operating system.

In this article, we’ll walk you through the process of using Kali Linux tools with Docker, step by step.

What is Docker?

Before diving into how to use Kali Linux tools in Docker, let’s first understand what Docker is and how it works.

Docker is a platform that allows you to run software applications inside containers. A container is a lightweight, portable, and self-sufficient environment that runs applications in isolation from the host operating system.

Containers are faster, more secure, and more manageable than traditional virtual machines because they use the host’s operating system but still provide the necessary environment to run the applications.

Think of a Docker container as a box that holds everything an application needs to run—like libraries, dependencies, and settings. When you run an application in a Docker container, you don’t have to worry about whether it will work with your system or not.

How to Run Kali Linux Tools in Docker

Now that we know why Docker is useful, let’s go through the process of running Kali Linux tools from Docker containers.

Installing Docker in Linux

To use Docker, you first need to install it on your machine, here are the basic steps for installing Docker on an Ubuntu-based system:

sudo apt update
sudo apt install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt install docker-ce

Next, start and enable Docker to start automatically:

sudo systemctl start docker
sudo systemctl enable docker --now

Check the Docker version to ensure it was installed correctly:

docker --version

Pull Kali Linux Tools from Docker Hub

Docker Hub is an online registry where you can find and download Docker images, including those for Kali Linux tools. Many of Kali’s popular tools are available as Docker images, and you can pull them directly to your system.

For example, let’s say you want to use Nmap, a network scanning tool, as a Docker container, you need to download the latest Kali Linux image and then you can run specific tools from inside this container.

sudo docker pull kalilinux/kali-rolling

After pulling the image, you can start using Kali tools inside the container:

sudo docker run -it kalilinux/kali-rolling /bin/bash

Once inside the container, you can use any of the tools available in Kali Linux. For example, if you want to use Nmap, you can type:

nmap --version

This will show you the version of Nmap installed inside the container, and you can start using it as you would on a normal Kali installation.

Running Specific Tools Directly

If you only want to run a specific tool without pulling the whole Kali Linux image, some Kali tools are available as separate Docker images. For example, to run Metasploit Framework using Docker, you can do the following:

sudo docker pull metasploitframework/metasploit-framework
sudo docker run -it metasploitframework/metasploit-framework

This command runs the Metasploit Framework in an isolated container.

Install More Kali Linux Tools

Once you’ve learned how to pull the basic Kali Linux image or individual tools like Metasploit and Nmap from Docker Hub, you might want to install more specific Kali tools as Docker containers.

Before pulling a Docker image for a specific tool, you need to know what it’s called and where to find it. You can either search for the tools manually on Docker Hub, or use the search feature on the Docker CLI.

Here are a few popular Kali Linux tools and their Docker images:

  • Burp Suite – A popular web vulnerability scanner.
  • Aircrack-ng – A tool for wireless network cracking.
  • John the Ripper – A password-cracking tool.
  • Wireshark – A network protocol analyzer.
  • Hydra – A brute-force login cracker.

Alternatively, you can use the Docker CLI to search for images:

docker search kali

This will show a list of Kali-related images available on Docker Hub.

Persisting Data (Optional)

By default, any data you create or modify inside the Docker container will be lost once you stop the container.

To keep your data, you can use Docker volumes to persist it:

sudo docker volume create kali-data
sudo docker run -it -v kali-data:/root kalilinux/kali-rolling /bin/bash

This way, all your data will be stored in the volume, and it will persist even if you stop or remove the container.

After identifying the tool you want to use, the next step is to pull the Docker image called Burp Suite.

sudo docker pull portswigger/burp-suite
sudo docker run -it --rm portswigger/burp-suite
Conclusion

Using Kali Linux tools in Docker containers is a great way to access powerful security testing utilities without the hassle of installing and configuring them directly on your system.

It offers several benefits, including isolation, portability, and ease of use. Whether you are a beginner or an experienced security professional, Docker is a great tool to help you streamline your workflow while maintaining the safety and integrity of your main operating system.

Hey TecMint readers,

Exciting news! Every month, our top blog commenters will have the chance to win fantastic rewards, like free Linux eBooks such as RHCE, RHCSA, LFCS, Learn Linux, and Awk, each worth $20!

Learn more about the contest and stand a chance to win by sharing your thoughts below!

Aaron Kili
Aaron Kili is a Linux and F.O.S.S enthusiast, an upcoming Linux SysAdmin, web developer, and currently a content creator for TecMint who loves working with computers and strongly believes in sharing knowledge.

Each tutorial at TecMint is created by a team of experienced Linux system administrators so that it meets our high-quality standards.

Join the TecMint Weekly Newsletter (More Than 156,129 Linux Enthusiasts Have Subscribed)
Was this article helpful? Please add a comment or buy me a coffee to show your appreciation.

112 Comments

Leave a Reply
  1. Hello,

    I have MX Linux 21.3 edition on my computer.

    When I run:

    $ katoolin
    
    bash: /usr/bin/katoolin: /usr/bin/python: bad interpreter: No such file or directory
    

    What Can I do, please?

    I have installed Python, Python2, and Python3.

    Thank you…

    Reply
  2. I’m not sure this is still working with Debian, it may just be because it isn’t able to locate a lot of the packages it needs during the installation though, can anyone confirm if this works with the current Debian release

    Reply
    • @James

      We need to check the requirements for the installing on the latest version of Debian before we can confirm. But thanks for bringing this to our attention.

      Reply
  3. Hey I tried installing this recently on my debian distro and it goes through the motions like its going to install but when it actually comes to the installation it gives a bunch of errors saying certain packages were missing so they were ignored or old ones were used.

    So, I kinda assumed their was gonna be some packages that needed to be fixed but when i went to the synaptic package manager and checked the upgrade-able packages, literally every single needed package for these tools to work was listed as needing to be upgraded, and of course you couldnt upgrade anything without removing pretty much every single necessary package for the debian OS

    Reply
  4. I installed Katoolin and have it running, but every time I try to download a certain category on it, it tells me: “Could not open lock file /var/lib/dpkg/lock – open (13: Permission denied)“.

    Reply
  5. I have attempted the 2nd method to install Katoolin as mentioned above. I was able to download the master.zip, unzip it, change directory, do the chmod command successfully. However, when I go to type the run command I get the following error:

    bash: ./katoolin.py: /usr/bin/python: bad interpreter: No such file or directory.

    I am new to Linux, and this is a fresh install of Ubuntu 17.10, and I have administrator rights to the system. Any help is “greatly” appreciated.

    Reply
  6. Sir, I am having a problem, while installing any or all by ” 0″ it is showing E: unable to locate package……

    sir please help me out..

    Reply
    • @harshit

      You’ve probably not added the required repositories, that is why the package can’t be found, resulting into this error.

      Reply
  7. Sir, the main problem I am having in all Linux system that I can’t move my cursor freely like that in windows.

    could you please help me out.

    Reply
  8. Can i install this on Lubuntu? Also how much space does it require? I don’t need all of the tools but still.

    Reply
    • @stanislav

      Sure, it is built for Ubuntu systems, so it should work in Lubuntu. And it requires a reasonable amount of space depending on the total number of packages(Kali security tools) available.

      Reply
  9. Hey when i installed setools then there were libc6:armhf problem

     terminal says : libc6:armhf is not ready to configuration
    

    What should i do now please reply fast and i also can’t update or install any thing

    Reply
  10. After I install Kali menu in Ubuntu through katoolin, my computer isn’t responding me, whenever i restart and try to use my computer it just shows the grub menu and try to boot as usual but it shows something like kali-ubuntu loading and doesn’t actually finish this process.

    I really don’t know what has happened to my computer, i cant even use my normal Ubuntu now, i could do is northing. please help me, i need my computer performance back……..

    Reply
    • @liang

      Sorry to learn about this, i hope your grub still works to enable access to recovery mode, that is where you can definitely start from. Also try to ask on the various Ubuntu forums how to restore a broken Ubuntu system for in-depth insights.

      Reply
  11. i have a problem with installing the kali tools (and the kali manu) by the tools its saying E: Unable to locate package, and by the kali manu its says E: Unable to locate package kali-menu. i have looked at the other command but nothing is working so far……. pleas help me a bit, i am new to Ubuntu

    Reply
    • @John

      Try to view the contents of /etc/apt/sources.list file and make sure that you have added and updated the Kali repositories.

      Or else, follow the steps once more.

      Reply
  12. one of the things that you need to do is to set up your preferences as to what packages take priority over others.

    you have to set up your /etc/apt/preferences.d/ (in my LMDE i have two files in there official-extra-repositories.pref and official-package-repositories.pref)

    make sure that you set the priority of the kali packages to a lower number then your main distributions, this is mine –
    cat /etc/apt/preferences.d/official-package-repositories.pref

    Package: *
    Pin: origin live.linuxmint.com
    Pin-Priority: 750

    Package: *
    Pin: release o=linuxmint,c=upstream
    Pin-Priority: 700

    Package: *
    Pin: release o=Ubuntu
    Pin-Priority: 500

    Package: *
    Pin: release o=Kali
    Pin-Priority: 400

    (comment out the line in /etc/apt/sources.list that has to do with kali if you are following the rest of this. you don’t want apt complaining about doubles)

    and then this is from /etc/apt/sources.list.d/ –
    cat /etc/apt/sources.list.d/official-package-repositories.list

    deb http://packages.linuxmint.com betsy main upstream import
    deb http://ftp.us.debian.org/debian/ jessie main contrib non-free
    deb http://ftp.us.debian.org/debian/ jessie-updates main contrib non-free
    deb http://security.debian.org/ jessie/updates main contrib non-free
    deb http://www.deb-multimedia.org jessie main non-free
    deb http://extra.linuxmint.com betsy main
    deb http://http.kali.org/kali kali-rolling main contrib non-free

    take a look at ‘man apt_preferences’ at about line 207 –
    Determination of Package Version and Distribution Properties

    before you do an ‘upgrade’, make sure that you do this or you will toast out your system as others are saying.

    this is sometimes called ‘pinning’

    you can also find this in the ‘Debian Handbook’ section 6.2.6. you probably have it installed already. check /usr/share/doc/debian-handbook/

    I’m surprised that this method didn’t get written out in this how-to. I’ll have to drop a line on git-hub to have them update it.

    hope this helps some.

    p.s. i didn’t do anything with installing the menus, just learning pen testing so i can install the packages as they come up in the books that I’m reading.

    Reply
    • @em

      Your contribution has actually brought it to our attention, so thanks a lot for reaching us and reminding us of this useful method.

      Reply
  13. this will break your gnome or kde if your not carefull!
    i suggest editting the file and replace all the “apt-get -y” with “apt-get” and look for yourself what is installable and what not, after installing wht you need, remove the kali sources again or find a way to prevent updating from them instead of the ubuntu repos.

    Reply
    • @Nick

      That is so regrettable, however, as i have mentioned somewhere in the previous comments, installation of this tools has resulted into undesired system breakages for many users. Sorry about your situation but you can share your ordeal with the developers of the tool at the Github repository: https://github.com/LionSec/katoolin.git for any suggestions and possible improvements.

      Reply
  14. This tool will not only install Kali tools, but will remove your display manager, KDE in my case, which did not go over well. stear clear of this script if you’re smart.

    Reply
    • @josh

      There have been a lot of complains about this script, if you can read the previous comments below, however, you can get your thoughts to the writers of the script on the Katoolin Github repository: https://github.com/LionSec/katoolin. Thanks for giving us your experience with it and also thoughts about it.

      Reply
  15. how to use that tools after installed? i have installed armitage from katoolin then i don’t know where the armitage is?

    Reply
    • @riivai

      You can search for installed tools from the Ubuntu dashboard that is if you installed it in Ubuntu or from the command line.

      Reply
  16. @Herro Rarrah

    Sorry about that, it is always safer to test in virtual machine before installing on your work machine. Above all, thanks for the feedback and i hope you recover from that.

    Reply
  17. In katoolin I successfully done everything but when I m going to install tool its says unable to locate package ..I think Kali repository not set well but I don’t know how to set Kali repository manually ..cannu pls tell me the proper way to set Kali repository well…?? Thank u

    Reply
  18. i m faceing following problem when i m going to install kali tool with katoolin

    gpg: requesting key 7D8D0BF6 from hkp server pgp.mit.edu
    gpg: no writable keyring found: eof
    gpg: error reading `[stream]’: general error
    gpg: Total number processed: 0
    sh: 1: cannot create /etc/apt/sources.list: Permission denied

    Reply
  19. Dude am getting this error when i install all wireless tools..

    Some packages could not be installed. This may mean that you have requested an impossible situation or
    if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming.
    The following information may help to resolve the situation:

    The following packages have unmet dependencies:
    libreoffice-common : Breaks: libreoffice-style-oxygen (< 1:5.1~) but 1:5.0.3~rc2-0ubuntu1~trusty2 is to be installed
    E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.

    I tried apt-get -f install but it ain’t worked.. and how to add these tools in the classic menu indicator as when i install and opened that i found no kali tools

    Reply
    • Try to upgrade your current version of LibreOffice independently, before installing Katoolin, if it still fails then let me know. This is important please, and give me feedback.

      Reply
        • @Mohamed,

          Why you need to code to update libreOffice, you can directly update from software manager or via yum or apt package manager.

          Reply
        • If you meant commands, then use these in that order.

          sudo add-apt-repository -y ppa:libreoffice/ppa

          sudo apt-get update; sudo apt-get install libreoffice

          As @Ravi mentioned, you can also update from Software manager after running the first command.

          Reply
          • no man the same dependency problem after updating libre office am in linux mint kde the latest version plz help me i am installing each tool one by one

    • Try to update your system repository list:

      sudo apt-get update

      And install the dependency as follows:

      sudo apt-get install libreoffice-style-oxygen

      If this does not help, then seek more help from the LibreOffice and Ubuntu Forums.

      Reply
  20. I was in the middle of installing it and I was given this output:

    “chmod: cannot access ‘/usr/bin/katoolin’: No such file or directory

    Reply
  21. are u sure everything will work fine, if u add debian repositories to ubuntu based system.. wont i have hardware failure and update mix match

    Reply
    • It normally depends on how you handle your system, if you understand how to include repositories and how to use Kali tools then it should work fine.

      Reply
  22. 1) acccheck 30) lbd
    2) ace-voip 31) Maltego Teeth
    3) Amap 32) masscan
    4) Automater 33) Metagoofil
    5) bing-ip2hosts 34) Miranda
    6) braa 35) Nmap
    7) CaseFile 36) ntop
    8) CDPSnarf 37) p0f
    9) cisco-torch 38) Parsero
    10) Cookie Cadger 39) Recon-ng
    11) copy-router-config 40) SET
    12) DMitry 41) smtp-user-enum
    13) dnmap 42) snmpcheck
    14) dnsenum 43) sslcaudit
    15) dnsmap 44) SSLsplit
    16) DNSRecon 45) sslstrip
    17) dnstracer 46) SSLyze
    18) dnswalk 47) THC-IPV6
    19) DotDotPwn 48) theHarvester
    20) enum4linux 49) TLSSLed
    21) enumIAX 50) twofi
    22) exploitdb 51) URLCrazy
    23) Fierce 52) Wireshark
    24) Firewalk 53) WOL-E
    25) fragroute 54) Xplico
    26) fragrouter 55) iSMTP
    27) Ghost Phisher 56) InTrace
    28) GoLismero 57) hping3
    29) goofile

    0) Install all Information Gathering tools

    Insert the number of the tool to install it .

    kat > 1
    Reading package lists… Done
    Building dependency tree
    Reading state information… Done
    E: Unable to locate package acccheck
    How to able to locate package?

    Reply
  23. Aaron,

    On trying to install the classicmenu indicator I get the following:

    sh: 1: add-apt-repository: not found
    Reading package lists… Done
    Building dependency tree
    Reading state information… Done
    E: Unable to locate package classicmenu-indicator

    Thoughts?

    Reply
    • Have you added the Kali repositories? That should be the first thing to do. Try to run option 1 and update the system repository list.

      Reply
      • Aaron,

        Yes I’ve add the repositories and everything installed just fine except two tools (‘E: Unable to locate package inguma’ and ‘E: Unable to locate multiforcer). Doesn’t matter though I’ll just use the terminal.

        How do I find the directory path? Thanks!

        Reply
  24. gpg: requesting key 7D8D0BF6 from hkp server pgp.mit.edu
    gpg: no writable keyring found: eof
    gpg: error reading `[stream]’: general error
    gpg: Total number processed: 0
    sh: 1: cannot create /etc/apt/sources.list: Permission denied

    Reply
  25. Hi,

    error occured to receive the key:
    apt-key adv –keyserver pgp.mit.edu –recv-keys ED444FF07D8D0BF6

    ?: pgp.mit.edu: Connection refused
    gpgkeys: HTTP fetch error 7: couldn’t connect: Connection refused

    Any other working server could anybody provide or the key as file ?
    Thank you.
    Martin

    Reply
  26. This is amazing I originally had Kali Linux on my computer but it was to confusing and wasn’t smooth and it didn’t look good, so I got Ubuntu but I still wanted the Kali applications on Ubuntu for white hat hacking.

    Thank you!!

    Reply
  27. Reading package lists… Done
    Building dependency tree
    Reading state information… Done
    Some packages could not be installed. This may mean that you have
    requested an impossible situation or if you are using the unstable
    distribution that some required packages have not yet been created
    or been moved out of Incoming.
    The following information may help to resolve the situation:

    The following packages have unmet dependencies:
    bulk-extractor : Depends: libafflib0 but it is not going to be installed
    Depends: libstdc++6 (>= 4.9) but 4.8.4-2ubuntu1~14.04 is to be installed
    dff : Depends: libafflib0 but it is not going to be installed
    Depends: libstdc++6 (>= 4.9) but 4.8.4-2ubuntu1~14.04 is to be installed
    Recommends: hal but it is not installable
    Recommends: python-qt4-phonon but it is not going to be installed
    extundelete : Depends: libstdc++6 (>= 4.9) but 4.8.4-2ubuntu1~14.04 is to be installed
    gqrx : Depends: gnuradio but it is not going to be installed
    Depends: gr-osmosdr but it is not going to be installed
    Depends: uhd-host but it is not going to be installed
    Depends: libboost-program-options1.55.0 but it is not going to be installed
    Depends: libgnuradio-analog3.7.5 but it is not going to be installed
    Depends: libgnuradio-blocks3.7.5 but it is not going to be installed
    Depends: libgnuradio-fft3.7.5 but it is not going to be installed
    Depends: libgnuradio-filter3.7.5 but it is not going to be installed
    Depends: libgnuradio-osmosdr0.1.3 but it is not going to be installed
    Depends: libgnuradio-pmt3.7.5 but it is not going to be installed
    Depends: libgnuradio-runtime3.7.5 but it is not going to be installed
    greenbone-security-assistant : Depends: texlive-latex-extra but it is not going to be installed
    guymager : Depends: smartmontools but it is not going to be installed
    jd : Depends: libglibmm-2.4-1c2a (>= 2.40.0) but 2.39.93-0ubuntu1 is to be installed
    Depends: libstdc++6 (>= 4.9) but 4.8.4-2ubuntu1~14.04 is to be installed
    Recommends: cmigemo-common but it is not going to be installed
    john : Depends: libgomp1 (>= 4.9) but 4.8.4-2ubuntu1~14.04 is to be installed
    nmap : Depends: libstdc++6 (>= 4.9) but 4.8.4-2ubuntu1~14.04 is to be installed
    powerfuzzer : Depends: python-wxtools but it is not going to be installed
    Depends: python-ctypeslib but it is not going to be installed
    rainbowcrack : Depends: libstdc++6 (>= 4.9) but 4.8.4-2ubuntu1~14.04 is to be installed
    vega : Depends: libwebkit-dev but it is not going to be installed
    webshag : Depends: python-wxtools but it is not going to be installed
    E: Unable to correct problems, you have held broken packages.

    **************************** All Categories *****************************

    1) Information Gathering 8) Exploitation Tools
    2) Vulnerability Analysis 9) Forensics Tools
    3) Wireless Attacks 10) Stress Testing
    4) Web Applications 11) Password Attacks
    5) Sniffing & Spoofing 12) Reverse Engineering
    6) Maintaining Access 13) Hardware Hacking
    7) Reporting Tools 14) Extra

    0) All

    Select a category or press (0) to install all Kali linux tools .

    kat >

    Reply
  28. Thanks for the tutorial Aaron! Good stuff!
    I’m using Ubuntu 14.04, how would I go about finding these tools and using them?

    Reply
  29. Whenever i try to install all the tools in katoolin ( kat > 2 —> kat > 0) all it does is say “unable to locate package *package_name* .

    Btw im using Elementary OS distro

    Reply
  30. 1) Add kali linux repositories
    2) Update
    3) Remove all kali linux repositories
    4) View the contents of sources.list file

    What do you want to do ?> 2
    E: Type ‘sudo’ is not known on line 1 in source list /etc/apt/sources.list.d/kali-tools.list
    E: The list of sources could not be read.

    Please this what i keep getting when i do anything asides adding kali linux repositories
    Any help please.

    Reply
  31. uthentication failed for ‘https://github.com/lionsec/katloolin.git i get this message because im ask for a user id for github.com and a password what is it?

    Reply
  32. I lost some inbuilt packages like libreoffice and its dependancies when i added those repositories. How do i reinstall them back without reinstalling the Operating System?

    Reply
    • @NK

      You need to reinstall Ubuntu 15.01 try it out again for better results, fix the broken system may not lead to good performance.

      Reply
    • @ahmedchioua

      One problem i have discovered with katoolin is that the developers have not provided the functionality of removing the Kali packages. The best idea to have a fully functional system without Kali tools is to resinstall the Operating system.

      Reply
  33. hi there,
    I installed Katoolin on Debian, but my menu is all messed up. How can I uninstall katoolin and restore my menu back to normal

    regards
    TK

    Reply
  34. Would you recommend leaving the Kali repositories in after installation of the packages for future updates or would it be safer to remove them?
    I am using Kubuntu 14.04

    Reply
    • @Hendrik
      As you have mentioned if you want to update the packages in future then i would recommend leaving the repository, but this may affect other Ubuntu packages when you run an update and upgrade of your system. This is because some of the updates will be from Debian repositories as supported by Kali.

      Reply
  35. How can I make this work on Linux Mint?
    I tried to install it and I got an erro like this:

    The following packages have unmet dependencies:

    libc6: libc6:i386:

    Check if you are using third party repositories. If so disable them, since they are a common source of problems. Furthermore run the following command in a Terminal: apt-get install -f

    I have tried already to clean the repositories using commands like:

    sudo apt-get -f install
    sudo apt-get clean
    sudo apt-get autoclean
    sudo apt-get autoremove
    sudo apt-get update
    sudo apt-get install -f
    sudo dpkg –configure -a

    I guess the only way to fix it is to remove the repositories. Is there any way to install it over Mint without getting this inconsistencies?

    Reply
    • @Asher Davila
      Try to deal with the dependency issues first by running the command dpkg – -force-all -i libc6-dev-i386 and try to install it again. In case of any more errors, please let me know.

      Reply
  36. or want to install in backbox over error Executing: gpg –ignore-time-conflict –no-options –no-default-keyring –homedir /tmp/tmp.aZG6szSqR6 –no-auto-check-trustdb –trust-model always –keyring /etc/apt/trusted.gpg –primary-keyring /etc/apt/trusted.gpg –keyring /etc/apt/trusted.gpg.d/backbox-four.gpg –keyserver pgp.mit.edu –recv-keys ED444FF07D8D0BF6
    gpg: requisitando chave 7D8D0BF6 de servidor hkp – pgp.mit.edu
    ?: pgp.mit.edu: No route to host
    gpgkeys: HTTP fetch error 7: couldn’t connect: No route to host
    gpg: nenhum dado OpenPGP válido encontrado.
    gpg: Número total processado: 0
    sh: 1: cannot create /etc/apt/sources.list: Permission denied
    >>> print: http://i.imgur.com/ASDtcav.png

    Reply
  37. Aaron,

    After I load Katoolin, and I choose option 1 to install the Kali repositories and Update, I get this message:sh: 1: cannot create /etc/apt/sources.list: Permission denied.

    I am using Ubuntu 14.04

    Thanks for your help.

    Reply
  38. pc@pc-Latitude-D610:~$ cd katoolin
    pc@pc-Latitude-D610:~/katoolin$ python katoolin.py
    +=[ Author: LionSec | Homepage: http://www.lionsec.net
    + — — +=[ 330 Tools

    1) Add Kali repositories & Update
    2) View Categories
    3) Install classicmenu indicator
    4) Install Kali menu
    5) Help
    le doy al 1 que es lo propio y me da esta respuesta
    Executing: gpg –ignore-time-conflict –no-options –no-default-keyring –homedir /tmp/tmp.h3zKwJAFns –no-auto-check-trustdb –trust-model always –keyring /etc/apt/trusted.gpg –primary-keyring /etc/apt/trusted.gpg –keyring /etc/apt/trusted.gpg.d/fkrull_ubuntu_deadsnakes.gpg –keyserver pgp.mit.edu –recv-keys ED444FF07D8D0BF6
    gpg: solicitando clave 7D8D0BF6 de hkp servidor pgp.mit.edu
    gpg: clave 7D8D0BF6: «Kali Linux Repository » sin cambios
    gpg: Cantidad total procesada: 1
    gpg: sin cambios: 1
    sh: 1: cannot create /etc/apt/sources.list: Permission denied
    ami me da este error y ya no se por donde tirar llevo asi como tres días que puse Ubuntu hoy lo formatee y lo puse todo de cero pero sigue con este problema no hay forma
    eso que e leído en muchos sitios y parece fácil pero no puedo me quede hay

    Reply
  39. solo una consulta ami el primer método me fallo entonces decidi descargarlo y lo descomprimi en el escritorio de Ubuntu 15.4 como debería hacer para instalarlo desde allí es que solo llevo tres días usando Ubuntu si alguien me lo puede explicar paso a paso agradecido un saludo

    English Version

    only a consultation ami the first method failure then I decided to download and unzipped in the Ubuntu desktop 15.4 as it should do to install since there is only took three days using Ubuntu if someone can explain step by step grateful greetings

    Reply
    • @marco if you are asking about installing kaoolin in Ubuntu 14.04, then follow these steps
      Intsall git if you do not have it installed:

      $ apt-get install git

      Then clone katoolin.git form github:
      $ git clone https://github.com/LionSec/katoolin.git

      Copy katoolin.py from the katoolin directory to a directory(/usr/bin/) in your $PATH variable:
      $ cp katoolin/katoolin.py /usr/bin/katoolin

      Lastly make the installed python script executable:
      $ chmod +x /usr/bin/katoolin

      You need to follow the guide to use it.

      Reply

Got Something to Say? Join the Discussion...

Thank you for taking the time to share your thoughts with us. We appreciate your decision to leave a comment and value your contribution to the discussion. It's important to note that we moderate all comments in accordance with our comment policy to ensure a respectful and constructive conversation.

Rest assured that your email address will remain private and will not be published or shared with anyone. We prioritize the privacy and security of our users.