SecLists
SecLists copied to clipboard
Seclist refusing to clone into my kali
Good day Daniel Each time I try to git clone the seclist repo, it is extremely slow and then times out, leaving this error message as a result;
┌──(kali㉿kali)-[~/Documents/CTF] └─$ git clone https://github.com/danielmiessler/SecLists.git Cloning into 'SecLists'... remote: Enumerating objects: 11021, done. error: 1276 bytes of body are still expectedMiB | 181.00 KiB/s fetch-pack: unexpected disconnect while reading sideband packet fatal: early EOF fatal: fetch-pack: invalid index-pack output
Please is there a solution to this?
Can you clone other repositories?
Yes, I can clone other repositories I just cloned sublist3r this morning Thanks for your prompt response
On Sat, Jun 4, 2022, 2:55 AM Ignacio J. Perez Portal < @.***> wrote:
Can you clone other repositories?
— Reply to this email directly, view it on GitHub https://github.com/danielmiessler/SecLists/issues/761#issuecomment-1146494511, or unsubscribe https://github.com/notifications/unsubscribe-auth/ANEPSLSFVJEIYK2ZYTMLTF3VNKZR7ANCNFSM5XZUTLBA . You are receiving this because you authored the thread.Message ID: @.***>
Try cloning this repository again. If that fails, try updating git: sudo git update
Hi,
The problem is not present on a Ubuntu:
No problem on a Kali 2022.2 too:
I have the same version of git and the latest Kali version as well, what else could be the problem?
On Sun, Jun 5, 2022, 3:37 PM Dominique RIGHETTO @.***> wrote:
No problem on a Kali 2022.2 too:
[image: image] https://user-images.githubusercontent.com/1573775/172055865-fdf254d5-e153-43c5-82ac-1ea725be29a9.png
— Reply to this email directly, view it on GitHub https://github.com/danielmiessler/SecLists/issues/761#issuecomment-1146816339, or unsubscribe https://github.com/notifications/unsubscribe-auth/ANEPSLQA3ZOJ7QD3BGQ5XHLVNS3UNANCNFSM5XZUTLBA . You are receiving this because you authored the thread.Message ID: @.***>
I really do not know.
I retried after fully updating the Kali and I still not have error cloning the repository...
I had no problems here. You can try other methods of installing the repository besides git. Examples: https://kalilinuxtutorials.com/seclists-security-testers/
Thank you so much, I was able to download the zip file directly through the link you provided. Have a lovely day
On Sun, Jun 5, 2022, 4:20 PM Corvo @.***> wrote:
I had no problems here. You can try other methods of installing the repository besides git. Examples: https://kalilinuxtutorials.com/seclists-security-testers/
— Reply to this email directly, view it on GitHub https://github.com/danielmiessler/SecLists/issues/761#issuecomment-1146832939, or unsubscribe https://github.com/notifications/unsubscribe-auth/ANEPSLR7GTZNOBBZKLFQRL3VNTASJANCNFSM5XZUTLBA . You are receiving this because you authored the thread.Message ID: @.***>
You should be able to apt install seclists
on Kali.
I'm guessing whatever partition you are trying todo it on, in in a format (e.g. fat32, NTFS, EXT4) which doesn't like "something".
@KingTomasi has reported it working (via a different method).
Closing out
First, turn off compression:
git config --global core.compression 0
Then, do a partial clone to truncate the amount of info coming down:
git clone --depth 1 https://github.com/danielmiessler/SecLists
Then, change into the directory and get the rest:
cd SecLists && git fetch --unshallow