Bitcoin Forum
May 02, 2024, 06:03:29 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Altcoin Discussion / Re: Which Stable coin is the Best for Investment This Year on: August 12, 2020, 12:48:08 AM
SVR = SovranoCoin

yOU CAN MAKE YOUR SEARCH  Cool Roll Eyes
2  Bitcoin / Development & Technical Discussion / Re: BitCrack - A tool for brute-forcing private keys on: July 15, 2020, 12:21:02 PM
I want the steps on a video with explaining in order to know how can i run it i am not a programmer to understand commands and visual studio etc. even the screenshot on the first page i didn't understand anything from it.

It's not as complicated as you think and you don't have to be a programmer to be able to run the BitCrack. Basically what you need to do are :
1. Download BitCrack from https://github.com/brichard19/BitCrack/releases. If you're not sure, just download clBitCrack.exe
2. Open application called "Command Prompt" and move to directory path where clBitCrack.exe is located
3. Type clBitCrack.exe on "Command Prompt"

If you never heard or don't know how to use "Command Prompt", please read this guide https://techtipvault.com/windows/command-prompt-windows-10-cmd-guide/

P.S. i can't make screenshot since i don't use Windows OS

I didn't find clBitCrack.exe

Command Prompt said clBitCrack.exe is not recognized as an internal or external command, operable program, or batch file.


Have you used command cd to move to path where clBitCrack.exe is located. For example if clBitCrack.exe located on "C:\Users\ETF Bitcoin\Downloads\clBitCrack.exe", you should type this first on Command Prompt

Code:
cd "C:\Users\ETF Bitcoin\Downloads"


Quote
Wow it's huge information i am a beginner i don't even know what is Nvidia cards or AMD cards if you create a video with the steps on windows 10 or Mac it will be great and when i find something i will send the first prize to you for helping me (:

Not to be facetious (stupid funny) but if you do not know what type of graphic card you have, maybe you don't have one? maybe CPU only?

Take note OpenCL works on CPU and that's why i recommend to download clBitCrack.exe.

I didn't find this file clBitCrack.exe

i found these only:

 .gitattributes
.gitignore
BitCrack.props
BitCrack.sln
LICENSE.MIT
MIT licence
README.md
3  Bitcoin / Development & Technical Discussion / Re: BitCrack - A tool for brute-forcing private keys on: July 15, 2020, 12:10:51 PM

Quote
Wow it's huge information i am a beginner i don't even know what is Nvidia cards or AMD cards if you create a video with the steps on windows 10 or Mac it will be great and when i find something i will send the first prize to you for helping me (:

Not to be facetious (stupid funny) but if you do not know what type of graphic card you have, maybe you don't have one? maybe CPU only?

I have a normal laptop with 8 gig ram windows 10
I don't know about the internal pieces of the computer.

all i want someone to make a video with the simple steps this will help a lot
4  Bitcoin / Development & Technical Discussion / Re: BitCrack - A tool for brute-forcing private keys on: July 15, 2020, 02:30:10 AM
I want the steps on a video with explaining in order to know how can i run it i am not a programmer to understand commands and visual studio etc. even the screenshot on the first page i didn't understand anything from it.

It's not as complicated as you think and you don't have to be a programmer to be able to run the BitCrack. Basically what you need to do are :
1. Download BitCrack from https://github.com/brichard19/BitCrack/releases. If you're not sure, just download clBitCrack.exe
2. Open application called "Command Prompt" and move to directory path where clBitCrack.exe is located
3. Type clBitCrack.exe on "Command Prompt"

If you never heard or don't know how to use "Command Prompt", please read this guide https://techtipvault.com/windows/command-prompt-windows-10-cmd-guide/

P.S. i can't make screenshot since i don't use Windows OS

I didn't find clBitCrack.exe

Command Prompt said clBitCrack.exe is not recognized as an internal or external command, operable program, or batch file.

If you are running Nvidia cards, use this link to download cuBitCrack.exe


If you are using AMD cards, use this link to download clBitCrack.exe


Create a folder and place one of those .exe files in the folder, along with your input file that contains the addresses you want to search for.
So let's say you create a folder called "BitCrack"; inside there, place one of the .exe files and the input file containing addresses to search for.

Now, create a batch file. Create a new text document and add the commands you want the program to run with. For example:

Code:
cuBitCrack -d 0 -b 64 -t 256 -p 512 --keyspace 8000000000000000:FFFFFFFFFFFFFFFF -i addresses.txt -o FOUNDKEY.txt

Now save that text document as a .bat file.  When you go to save the text doc as bat file, make sure you select the "Save as type:" box as All Files and then save (for example) runbitcrack.bat....it's important to add the .bat extension or you are just saving as a text document and the program will not run.

Once that is done, double click on your new .bat file and the program will run. It may say you need another file such as vcc....; if so, google that file, download it, and place it in the same folder you created (with all these files in it).

Breakdown of .bat file commands:
cuBitCrack - this is the .exe file that you downloaded in first step. It'll either be cuBitCrack or clBitCrack, depending on your video card.
-d 0 - this is telling the program to use the video card numbered 0; if you have more than one card, you can change this to which video card you want to use
-b 64 -t 256 -p 512 - tells program what gridsize you want to use. you will have to experiment with these numbers to fine tune your card but these default numbers will get you started
--keyspace 8000000000000000:FFFFFFFFFFFFFFFF - this is the keyspace that the program will search in, change it to search the space you want to search
-i addresses.txt - the -i tells program this is your input file; this is where you save the btc addresses you want to search for
-o FOUNDKEY.txt - this -o tells the program you want to save your found keys, in this example, if you find a key, it will save the key in a text file called "FOUNDKEY" . It will save it in the same folder you are running the program from.

edit: the above is for Windows; if you are using Linux/Ubuntu, someone else will have to help you.




Gets to the load address files and dies

Wow it's huge information i am a beginner i don't even know what is Nvidia cards or AMD cards if you create a video with the steps on windows 10 or Mac it will be great and when i find something i will send the first prize to you for helping me (:
5  Bitcoin / Development & Technical Discussion / Re: BitCrack - A tool for brute-forcing private keys on: July 14, 2020, 04:58:05 PM
I want the steps on a video with explaining in order to know how can i run it i am not a programmer to understand commands and visual studio etc. even the screenshot on the first page i didn't understand anything from it.

It's not as complicated as you think and you don't have to be a programmer to be able to run the BitCrack. Basically what you need to do are :
1. Download BitCrack from https://github.com/brichard19/BitCrack/releases. If you're not sure, just download clBitCrack.exe
2. Open application called "Command Prompt" and move to directory path where clBitCrack.exe is located
3. Type clBitCrack.exe on "Command Prompt"

If you never heard or don't know how to use "Command Prompt", please read this guide https://techtipvault.com/windows/command-prompt-windows-10-cmd-guide/

P.S. i can't make screenshot since i don't use Windows OS

I didn't find clBitCrack.exe

Command Prompt said clBitCrack.exe is not recognized as an internal or external command, operable program, or batch file.
6  Bitcoin / Development & Technical Discussion / Re: BitCrack - A tool for brute-forcing private keys on: July 14, 2020, 04:19:32 PM
I want the steps on a video with explaining in order to know how can i run it i am not a programmer to understand commands and visual studio etc. even the screenshot on the first page i didn't understand anything from it.

It's not as complicated as you think and you don't have to be a programmer to be able to run the BitCrack. Basically what you need to do are :
1. Download BitCrack from https://github.com/brichard19/BitCrack/releases. If you're not sure, just download clBitCrack.exe
2. Open application called "Command Prompt" and move to directory path where clBitCrack.exe is located
3. Type clBitCrack.exe on "Command Prompt"

If you never heard or don't know how to use "Command Prompt", please read this guide https://techtipvault.com/windows/command-prompt-windows-10-cmd-guide/

P.S. i can't make screenshot since i don't use Windows OS

Thank you it was useful, but what about the complicated apps like Visual Studio 2019 (if on Windows) For CUDA: CUDA Toolkit 10.1?

Type clBitCrack.exe on "Command Prompt" after that what will happen? the program will run with itself? what will happen next!!

Thank you.
7  Bitcoin / Development & Technical Discussion / Re: BitCrack - A tool for brute-forcing private keys on: July 08, 2020, 03:56:02 PM
I want the steps on a video with explaining in order to know how can i run it i am not a programmer to understand commands and visual studio etc. even the screenshot on the first page i didn't understand anything from it.
8  Bitcoin / Development & Technical Discussion / Re: BitCrack - A tool for brute-forcing private keys on: July 07, 2020, 11:57:17 PM
Hello guys,

Can anyone give me a video or screenshots to how i run and use brichard19/BitCrack in windows!! because i am a newbie.

Thanks in advance.

The screenshot is available on the first post of this thread. Don't forget to check https://github.com/brichard19/BitCrack which contains short documentation and some examples.

It doesn't help, is there any video with the steps to how i run it!
9  Bitcoin / Development & Technical Discussion / Re: BitCrack - A tool for brute-forcing private keys on: July 07, 2020, 01:05:33 PM
Hello guys,

Can anyone give me a video or screenshots to how i run and use brichard19/BitCrack in windows!! because i am a newbie.

Thanks in advanced.
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Bitcoin Liza Official Swap Thread on: March 01, 2018, 12:57:48 PM
Great project with great idea  Cool

11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ☺→[ANN]←☺★ALLION★ ★∞ NEW ANN SOON! ∞ ALL ← on: January 21, 2018, 11:45:30 AM
When will the site work again?  Huh this makes many investors afraid to invest.
12  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ILS] INTERNET&LIGHT&SECURITY - AIRDROP - ICO - PHASE #4 on: October 23, 2017, 12:00:14 PM
Go ahead.....
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!