mirror of
https://github.com/LionSec/katoolin.git
synced 2026-04-26 01:15:54 +03:00
[GH-ISSUE #289] gpg: keyserver receive failed: No name #243
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#243
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 @synv-09 on GitHub (Jun 28, 2021).
Original GitHub issue: https://github.com/LionSec/katoolin/issues/289
i'm trying to install katoolin3 on ubuntu 20.04 but i get the following error
root@sy:/home/synv/katoolin3# ./install.sh
Executing: /tmp/apt-key-gpghome.1W0b3PytX0/gpg.1.sh -qq --keyserver pool.sks-keyservers.net --recv-keys ED444FF07D8D0BF6
gpg: keyserver receive failed: No name
Executing: /tmp/apt-key-gpghome.j54UFnCqaJ/gpg.1.sh -qq --keyserver hkp://pool.sks-keyservers.net:80 --recv-keys ED444FF07D8D0BF6
gpg: keyserver receive failed: No name
This may be a server issue. Please try again later
please help me fix that, thanks everyone.
@IvanNULP commented on GitHub (Jun 30, 2021):
The same problem... Can somebody help us?
@xstp commented on GitHub (Jul 3, 2021):
Try the following command:
% wget -q -O - https://archive.kali.org/archive-key.asc | apt-key addif this succeeds, comment out the following line in Katoolin.py
cmd1 = os.system("apt-key adv --keyserver pool.sks-keyservers.net --recv-keys ED444FF07D8D0BF6")This workaround works for the Python3 fork as well if applied to this line:
github.com/s-h-3-l-l/katoolin3@91670e6a26/install.sh (L22)@orangeullr commented on GitHub (Jul 3, 2021):
would it be a good idea to replace the os.system() command with
(wget -q -O - https://archive.kali.org/archive-key.asc | apt-key add)
cmd1 = os.system("apt-key adv --keyserver pool.sks-keyservers.net --recv-keys ED444FF07D8D0BF6")
so that
cmd1 = os.system("wget -q -O - https://archive.kali.org/archive-key.asc | apt-key add")
I tested it in the python 2.7.x interpreter on xubuntu xfce 18.04 and was able to get a return code of 0 and an stdout of "OK"
@xstp commented on GitHub (Jul 4, 2021):
Yes. Don't forget to also update the package lists.
@chuck1497 commented on GitHub (Jul 4, 2021):
Who's this
@FlubOtic commented on GitHub (Jul 22, 2021):
I'm having the same problem. I don't want to manually download each tool, someone fix it plz :(
@cclliu9333 commented on GitHub (Aug 11, 2021):
I have the following error running the above.
quote:
Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
E: This command can only be used by root.
unquote:
what should I do?
@shift-tab commented on GitHub (Sep 29, 2021):
After this command succeeds:
sudo wget -q -O - https://archive.kali.org/archive-key.asc | sudo apt-key addopen up "install.sh" located in the Katoolin folder using a text editor (sudo vi install.sh) and comment out (add #) the line that begins with:
apt-key adv -qqThen again try running
sudo ./install.sh. Katoolin install should succeed.@AkamiKuran commented on GitHub (Oct 8, 2021):
sudo wget -q -O - https://archive.kali.org/archive-key.asc | sudo apt-key add
This failed and here is the error message:
gpg: no valid OpenPGP data found.
@eaglegoboom commented on GitHub (Nov 10, 2021):
yep same issue, cant update, upgrade nothing with that no valid OpenPGP data
@Sentaku67 commented on GitHub (Jan 8, 2022):
Use this line :
sudo wget -q -O - https://archive.kali.org/archive-key.asc | gpg --dearmor | sudo apt-key addinstead of :
sudo wget -q -O - https://archive.kali.org/archive-key.asc | sudo apt-key add@kalistamp commented on GitHub (Feb 21, 2022):
Hey Could i ask you a Favor, Could you briefly explain how i would possibly download the tools manually as i only need a few of them and i am also recieving the errror after running "sudo ./install.sh"
" gpg: keyserver receive failed: Server indicated a failure
This may be a server issue. Please try again later "
@Daniel-Pms commented on GitHub (Mar 5, 2022):
Am i the only one who does not see a file called installed.sh ???
@dragoscosma commented on GitHub (Mar 5, 2022):
for katoolin3 do this and it will work:
@Lupupam commented on GitHub (Aug 24, 2022):
many thanks dragoscosma......definetlyworks,,,bravo
@onsleji commented on GitHub (Aug 31, 2022):
Great Help!!!