SecLists icon indicating copy to clipboard operation
SecLists copied to clipboard

Seclist refusing to clone into my kali

Open KingTomasi opened this issue 2 years ago • 9 comments

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?

KingTomasi avatar Jun 03 '22 17:06 KingTomasi

Can you clone other repositories?

ItsIgnacioPortal avatar Jun 04 '22 01:06 ItsIgnacioPortal

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: @.***>

KingTomasi avatar Jun 04 '22 09:06 KingTomasi

Try cloning this repository again. If that fails, try updating git: sudo git update

ItsIgnacioPortal avatar Jun 04 '22 19:06 ItsIgnacioPortal

Hi,

The problem is not present on a Ubuntu:

image

righettod avatar Jun 05 '22 14:06 righettod

No problem on a Kali 2022.2 too:

image

righettod avatar Jun 05 '22 14:06 righettod

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: @.***>

KingTomasi avatar Jun 05 '22 14:06 KingTomasi

I really do not know.

I retried after fully updating the Kali and I still not have error cloning the repository...

righettod avatar Jun 05 '22 15:06 righettod

I had no problems here. You can try other methods of installing the repository besides git. Examples: https://kalilinuxtutorials.com/seclists-security-testers/

rf-peixoto avatar Jun 05 '22 15:06 rf-peixoto

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: @.***>

KingTomasi avatar Jun 08 '22 08:06 KingTomasi

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".

g0tmi1k avatar Aug 02 '22 09:08 g0tmi1k

@KingTomasi has reported it working (via a different method).

Closing out

g0tmi1k avatar Aug 02 '22 09:08 g0tmi1k

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

BerenBoden avatar Aug 18 '23 23:08 BerenBoden