HackingStudio is a powerful toolset for cyber enthusiasts and professionals, developed by Realtin (Coding Boson). It provides a variety of functionalities to prepare and cook cyber recipes, leveraging advanced cryptographic techniques and data manipulation steps.
- Base64 Encoding/Decoding: Encode and decode data using Base64.
- Base58 Encoding/Decoding: Encode and decode data using Base58.
- Encryption/Decryption: AES encryption and decryption.
- Extensible Recipe System: Create and execute custom recipes for data processing.
To install HackingStudio as a .NET tool, run the following command:
git clone https://github.com/CodingBoson/HackingStudio.git
cd ./HackingStudio/HackingStudio.CLI/
./install.ps1 # For Windows
./install.sh # For Linux/MacOS
hs brute find Your_Hash --algorithm SHA256 --list /path/to/words.lst --threads 16
To cook a recipe, use the cook
command:
-d
: The data to be processed.-r
: The recipe file to use.-o
: The output file to save the result (default isstdout
).
To list all available steps for creating recipes, use the steps
command:
To check the validity of a recipe, use the check-recipe
command:
Encrypt data with AES and then encode it with Base64:
<Recipe>
<AesEncrypt key="Your_Password"/>
<Base64Encode />
</Recipe>
Decode data from Base64 then decrypt it with AES:
<Recipe>
<Base64Decode />
<AesDecrypt key="Your_Password"/>
</Recipe>
Contributions are welcome! Please fork the repository and submit a pull request.
This project is licensed under the GPL-3.0 License.