subjack icon indicating copy to clipboard operation
subjack copied to clipboard

open /src/github.com/haccer/subjack/fingerprints.json: no such file or directory

Open medxpy opened this issue 2 years ago • 9 comments

Hey, i'm trying to running the tool and i got this error message, i try to solve it by reading previous issue, but i got stuck on it bcz i don't have the folder /src inside my go directory. Then i try to refer to the file using -c /home/med/go/pkg/mod/github.com/haccer/[email protected]/fingerprints.json. But isn't work. subjack -w sub.thomson -t 100 timeout 30 -o results.txt -ssl -c /home/med/go/pkg/mod/github.com/haccer/[email protected]/fingerprints.json 2021/10/20 20:34:27 open /src/github.com/haccer/subjack/fingerprints.json: no such file or directory

thank you.

medxpy avatar Oct 20 '21 19:10 medxpy

i solved creating the required path for the file. sudo mkdir -p /src/github.com/haccer/subjack then save the fingerprints.json in that directory

DylanTiger avatar Oct 26 '21 20:10 DylanTiger

@DylanTiger Thank you

medxpy avatar Nov 12 '21 01:11 medxpy

@DylanTiger Can i use vim to create the fingerprints.json and save it in that directory cause i'm getting similar errors open /root/go/src/github.com/haccer/subjack/fingerprints.json: no such file or directory And i already created a path ( sudo mkdir -p /root/go/src/github.com/haccer/subjack/fingerprints.json )

Alpha-gig avatar Jan 19 '22 12:01 Alpha-gig

I am having the same issued with the above, please can someone tell what is the content of of fingerprints.json. Thank you

cyber-Techy avatar Jan 22 '22 22:01 cyber-Techy

The same

itis911 avatar Feb 26 '22 15:02 itis911

Same issue You can Not Solve The problem Then Remove this tool

silentknight46 avatar Apr 17 '22 09:04 silentknight46

Capture subjack-2.1.zip

c4ir0 avatar Jul 28 '22 14:07 c4ir0

the file fingerprints.json is included in the repo https://github.com/haccer/subjack/blob/master/fingerprints.json

Sent from myMail for Android Thursday, 28 July 2022, 04:31pm +02:00 from b@@.*** @.*** :

subjack-2.1.zip — Reply to this email directly, view it on GitHub , or unsubscribe . You are receiving this because you were mentioned. Message ID: @ github . com>

DylanTiger avatar Jul 28 '22 14:07 DylanTiger

This actually happens because you do not have the GOPATH set. From the main.go file:

GOPATH := os.Getenv("GOPATH")
Project := "/src/github.com/haccer/subjack/"
configFile := "fingerprints.json"

So you need to set the GOPATH and then, clone this repo under $GOPATH/src/github.com/haccer folder. Let's say you set $HOME/go as your GOPATH then you need to clone this repo under $HOME/go/src/github.com/haccer

n16h7h4wk09 avatar Nov 26 '23 07:11 n16h7h4wk09