mirror of
https://github.com/LionSec/katoolin.git
synced 2026-04-25 08:55:59 +03:00
[GH-ISSUE #204] Not working in Ubuntu 19.04 #171
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/katoolin-LionSec#171
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @DanBrown47 on GitHub (Jul 19, 2019).
Original GitHub issue: https://github.com/LionSec/katoolin/issues/204
Katoolin dosen`t seems to function properly on ubuntu 19.04
@DavidTWynn commented on GitHub (Jul 26, 2019):
Neither for me. I tried on popos and I get this after adding the repo and updating.
E: Unable to locate package acccheck
E: Unable to locate package vega
E: Package 'w3af' has no installation candidate
E: Unable to locate package http-tunnel
E: Unable to locate package magictree
E: Unable to locate package iphone-backup-analyzer
E: Unable to locate package acccheck
E: Package 'jd' has no installation candidate
@kj0317 commented on GitHub (Aug 6, 2019):
If you are running the script and installing all tools, try this as a workaround:
sudo nano /usr/bin/katoolin.py
Cntrl+W for w3af, it should find the script that installs all tools and w3af (and all the others are listed here as well), just delete that from the line along with any other tools that are halting the installation.
Save it and exit nano, and run the script as you normally would.
Or, probably the best way would be to simply use sed to remove all occurrences of a string in the script.
sed -i 's/w3af//g" /usr/bin/katoolin.pyReplace w3af with whatever command is causing katoolin to fail.