https://github.com/scripttiger/brutecycle
Cycles through any given character set in any given order and outputs to standard output or to a file. For larger data sets, like 128-bit MD5 hashes, 160-bit SHA-1, 256-bit SHA-256, etc., it is recommended to only do a couple character combinations at a time, unless you plan on having the script run for days on end uninterrupted.
https://github.com/scripttiger/brutecycle
brute-force hash hashes hashing rainbow-table scripttiger
Last synced: 3 months ago
JSON representation
Cycles through any given character set in any given order and outputs to standard output or to a file. For larger data sets, like 128-bit MD5 hashes, 160-bit SHA-1, 256-bit SHA-256, etc., it is recommended to only do a couple character combinations at a time, unless you plan on having the script run for days on end uninterrupted.
- Host: GitHub
- URL: https://github.com/scripttiger/brutecycle
- Owner: ScriptTiger
- License: mit
- Created: 2017-08-23T06:05:07.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-01-15T03:21:40.000Z (5 months ago)
- Last Synced: 2025-02-09T03:42:15.170Z (5 months ago)
- Topics: brute-force, hash, hashes, hashing, rainbow-table, scripttiger
- Language: Batchfile
- Homepage: https://scripttiger.github.io/more/
- Size: 17.6 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://docs.google.com/forms/d/e/1FAIpQLSfBEe5B_zo69OBk19l3hzvBmz3cOV6ol1ufjh0ER1q3-xd2Rg/viewform)
# Brutecycle
Cycles through any given character set in any given order and outputs to standard output or to a file. For larger data sets, like 128-bit MD5 hashes, 160-bit SHA-1, 256-bit SHA-256, etc., it is recommended to only do a couple character combinations at a time, unless you plan on having the script run for days on end uninterrupted.Can run interactively or scripted and with or without progress updates (silent or not).
To output all possible hexidecimal byte combinations with no progress to the console:
Brutecycle.cmd 2 "0 1 2 3 4 5 6 7 8 9 a b c d e f" con 0To output all possible octal byte combinations with no progress to the console:
Brutecycle.cmd 3 "0 1 2 3 4 5 6 7" con 0To output all possible binary byte combinations with no progress to the console:
Brutecycle.cmd 8 "0 1" con 0You can download this repo from the below link to get started:
https://github.com/ScriptTiger/Brutecycle/archive/master.zip# More About ScriptTiger
For more ScriptTiger scripts and goodies, check out ScriptTiger's GitHub Pages website:
https://scripttiger.github.io/