lexansoft / ethcracker

Ethereum password cracker
64 stars 13 forks source link

GetFileAttributesEx src/ethcracker.go: System can't find specified path #12

Closed Spartakkus closed 7 years ago

Spartakkus commented 7 years ago

After doing all the preinstalls for Windows, If I open a cmd with administration permissions, I start here:

C:\WINDOWS\system32

From here, I run

go run src/ethcracker.go -pk C:\Users\spartakkus\Desktop\test\xxxxxx.txt -l C:\Users\spartakkus\Desktop\varpsw.txt -threads 4

I get an error, that is:

GetFileAttributesEx src/ethcracker.go: System can't find specified path

What is happening? I've checked that both txt files are readable (if I put the path in a new window I see the txt content)

Thanks

lexansoft commented 7 years ago

In your line:

go run src/ethcracker.go ...

" src/ethcracker.go" should be the path to the ethcracker.go file. Change it to the folder where you downloaded the source to.

Alexandre Naverniouk

On Tue, Aug 8, 2017 at 1:30 PM, Spartakkus notifications@github.com wrote:

After doing all the preinstalls for Windows, If I open a cmd with administration permissions, I start here:

C:\WINDOWS\system32

From here, I run

go run src/ethcracker.go -pk C:\Users\spartakkus\Desktop\test\xxxxxx.txt -l C:\Users\spartakkus\Desktop\varpsw.txt -threads 4

-

xxxxxx.txt is my encrypted key file (I added .txt at the end to the original file)

varpsw.txt is the text will all password possibilities, one by line

I get an error, that is:

GetFileAttributesEx src/ethcracker.go: System can't find specified path

What is happening? I've checked that both txt files are readable (if I put the path in a new window I see the txt content)

Thanks

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/lexansoft/ethcracker/issues/12, or mute the thread https://github.com/notifications/unsubscribe-auth/ACB3pIv_568tRxP8JcQqcYJaW4FJJgqbks5sWMVLgaJpZM4OxQNO .

Spartakkus commented 7 years ago

C:\Program Files\Git\ethcracker\src ------> is where I have ethcracker.go

If I run:

C:\WINDOWS\system32>go run C:\Program Files\Git\ethcracker\src\ethcracker.go -pk C:\Users\spartakkus\Desktop\test\xxxxxxx.txt -l C:\Users\spartakkus\Desktop\varpsw.txt -threads 4

Now I get:

go run: no go files listed

what happens????? Thank you for the quickness

lexansoft commented 7 years ago

;)

\Program File has white space in it.

Put the path in quotes.

Alexandre Naverniouk

On Tue, Aug 8, 2017 at 2:10 PM, Spartakkus notifications@github.com wrote:

C:\Program Files\Git\ethcracker\src ------> is where I have ethcracker.go

If I run:

C:\WINDOWS\system32>go run C:\Program Files\Git\ethcracker\src\ethcracker.go -pk C:\Users\spartakkus\Desktop\test\xxxxxxx.txt -l C:\Users\spartakkus\Desktop\varpsw.txt -threads 4

Now I get:

go run: no go files listed

what happens????? Thank you for the quickness

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/lexansoft/ethcracker/issues/12#issuecomment-321083005, or mute the thread https://github.com/notifications/unsubscribe-auth/ACB3pFfw6-LHyjge9FBVIkT-nI8Cz47oks5sWM7dgaJpZM4OxQNO .

Spartakkus commented 7 years ago

Solved, running now. Thank you so much!