Skip to content
This repository has been archived by the owner on Jan 7, 2024. It is now read-only.

fingerprints.json not found #65

Open
Tufferz opened this issue Jul 26, 2020 · 6 comments · May be fixed by #96
Open

fingerprints.json not found #65

Tufferz opened this issue Jul 26, 2020 · 6 comments · May be fixed by #96

Comments

@Tufferz
Copy link

Tufferz commented Jul 26, 2020

I cant seem to get it to run. when I run the command, I get this error:

2020/07/26 02:45:24 open /src/github.com/haccer/subjack/fingerprints.json: no such file or directory

I have indeed checked and the file is there. I am running the command as root as well.

Anyone know how to fix this?

@deeFIR
Copy link

deeFIR commented Jul 27, 2020

Which OS are you using? Assuming you're using Kali, it'll be in /root/go/src/github.com/haccer/subjack
Just point to it using the -c flag when you're running subjack;

$ subjack -w subdomains.txt -c /root/go/src/github.com/haccer/subjack/fingerprints.json

@virenpawar
Copy link

Working 👍 using -c /root/go/src/...SNIP.../

@BasicAcid
Copy link

On *nix, a possibility is to add the directory to the path:

In my case I added this to my zshrc: export GOPATH=$HOME/go

More information here: https://stackoverflow.com/a/21012349

@1efty
Copy link

1efty commented Sep 26, 2020

@haccer @bauthard Why not add it as a native go variable? That way everything is contained in a single binary?

@Aspasht
Copy link

Aspasht commented Sep 10, 2022

In my case, root cause was go get which is not supported and I install using go install, it will append version to a subjack folder. You can find the fingerprint.json using following linux command:

$ find -type f -name "fingerprints.json"
./go/pkg/mod/github.com/haccer/subjack@v0.0.0-20201112041112-49c51e57deab/fingerprints.json

Now you can use subjack using -c flag.

@rzhade3 rzhade3 linked a pull request Oct 26, 2022 that will close this issue
@0xgit007
Copy link

find -type f -name "fingerprints.json"
./go/pkg/mod/github.com/haccer/subjack@v0.0.0-20201112041112-49c51e57deab/fingerprints.json
worked thanks

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

8 participants
@1efty @virenpawar @deeFIR @Tufferz @BasicAcid @Aspasht @0xgit007 and others