Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increment 0x1000000000000 does not runs calculations #436

Open
nen777w opened this issue Jan 2, 2025 · 1 comment
Open

Increment 0x1000000000000 does not runs calculations #436

nen777w opened this issue Jan 2, 2025 · 1 comment

Comments

@nen777w
Copy link

nen777w commented Jan 2, 2025

I want to investigate keyspace:
5A73B2CD70F202ABEE97363FA72D0E542662D71BE262100000005CF3C017EEDB
5A73B2CD70F202ABEE97363FA72D0E542662D71BE2621FFFFFFF5CF3C017EEDB
With step:
00000000000000000000000000000000000000000000000000001000000000000

Run:

cuBitCrack.exe -c -b 448 -t 64 -p 1024 -i walet_list.txt -o result.txt --keyspace 5A73B2CD70F202ABEE97363FA72D0E542662D71BE262100000005CF3C017EEDB:5A73B2CD70F202ABEE97363FA72D0E542662D71BE2621FFFFFFF5CF3C017EEDB --stride 1000000000000
[2025-01-02.20:27:41] [Info] Compression: compressed
[2025-01-02.20:27:41] [Info] Starting at: 5A73B2CD70F202ABEE97363FA72D0E542662D71BE262100000005CF3C017EEDB
[2025-01-02.20:27:41] [Info] Ending at: 5A73B2CD70F202ABEE97363FA72D0E542662D71BE2621FFFFFFF5CF3C017EEDB
[2025-01-02.20:27:41] [Info] Counting by: 0000000000000000000000000000000000000000000000000001000000000000
[2025-01-02.20:27:41] [Info] Initializing NVIDIA GeForce RTX 4090
[2025-01-02.20:27:41] [Info] Generating 29,360,128 starting points (1120.0MB)
[2025-01-02.20:27:49] [Info] 10.0%
[2025-01-02.20:27:49] [Info] 20.0%
[2025-01-02.20:27:50] [Info] 30.0%
[2025-01-02.20:27:50] [Info] 40.0%
[2025-01-02.20:27:50] [Info] 50.0%
[2025-01-02.20:27:50] [Info] 60.0%
[2025-01-02.20:27:50] [Info] 70.0%
[2025-01-02.20:27:51] [Info] 80.0%
[2025-01-02.20:27:51] [Info] 90.0%
[2025-01-02.20:27:51] [Info] 100.0%
[2025-01-02.20:27:51] [Info] Done
[2025-01-02.20:27:51] [Info] Loading addresses from '1000walets.txt'
[2025-01-02.20:27:56] [Info] 1,000,000 addresses loaded (19.1MB)
[2025-01-02.20:27:56] [Info] Allocating bloom filter (32.0MB)
[2025-01-02.20:27:56] [Info] Reached end of keyspace

Why?

@joaoescribano
Copy link

From what I understand, you’re attempting to use a very large stride value:

00000000000000000000000000000000000000000000000000001000000000000

This is actually interpreted as a hexadecimal number, which ends up being 281,474,976,710,656 in decimal—more than 221 times larger than the 1,000,000,000,000 (1 trillion) steps you intended.

To set your stride to 1 trillion in hexadecimal, you can use:

--stride 0xE8D4A51000

For example:

./bin/cuBitCrack -c -b 448 -t 64 -p 1024 -i walet_list.txt -o result.txt  \
  --keyspace 5A73B2CD70F202ABEE97363FA72D0E542662D71BE262100000005CF3C017EEDB:5A73B2CD70F202ABEE97363FA72D0E542662D71BE2621FFFFFFF5CF3C017EEDB \
  --stride 0xE8D4A51000```

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

No branches or pull requests

2 participants