Red Team Guides
Blue Team GuidesRed Team RecipeDevSecOps Guides
  • Introduction
  • Guides
    • Nix
    • Windows
    • Network
    • Tips and Tricks
    • Tool Syntax
    • Web
    • Databases
    • Programming
    • Wireless
    • Reverse
    • Crypto
    • Steg
    • DevOps
    • Cloud
    • Social Engineering
    • OSINT
    • OT
    • IOT
    • Hardware
    • Physical
  • Scenarios
    • Network Scenarios
    • Web Scenarios
    • Mobile Scenarios
    • Phish Scenarios
    • Physical Scenarios
    • OT Scenarios
  • References
    • References
Powered by GitBook
On this page
  • Encryption
  • Useful websites
  • Decode Fernet
  • Decode the Malbolge language
  • Decode Dvorak format keyboards
  • Decode DTFM
  • Decrypt bcrypt
  • Decode Cistercian numbers
  • Convert Multi-tap Phone Code to letters
  • Decode xor message
  • Attack on PKCS#1 in RSA
  • Types of attacks on RSA
  • Decode Vigenere Decoder
  • Base64 decoding in terminal
  1. Guides

Crypto

Encryption

Useful websites

Address
Explanation

https://www.dcode.fr/

encryption and decryption

https://crackstation.net/

Decoding

https://gchq.github.io/CyberChef/

encryption and decryption and …

https://www.base64encode.org/

base64 encoding

https://www.base64decode.org/

base64 decoding

http://rumkin.com/tools/cipher/caesar.php

Decode caesar

https://www.unphp.net

deobfuscate php code

Decode Fernet

https://asecuritysite.com/encryption/ferdecode

Or

from cryptography.fernet import Fernet
key = ""
token = ""
cipher = Fernet(key)
decoded = cipher.decrypt(token)

Decode the Malbolge language

http://www.malbolge.doleczek.pl/
https://zb3.me/malbolge-tools/

Decode Dvorak format keyboards

https://www.geocachingtoolbox.com/index.php?lang=en&page=dvorakKeyboard

Decode DTFM

http://dl.djsoft.net/DTMFChecker.zip
https://www.dcode.fr/prime-numbers-cipher

Decrypt bcrypt

git clone https://github.com/BREAKTEAM/Debcrypt.git
python3 crack.py

Decode Cistercian numbers

https://www.dcode.fr/cistercian-numbers

Convert Multi-tap Phone Code to letters

https://www.dcode.fr/code-multitap-abc
http://rumkin.com/tools/cipher/atbash.php

Decode xor message

python3 crack_repeating_key_xor.py -f <file> -x

Attack on PKCS#1 in RSA

https://programtalk.com/vs2/python/9053/featherduster/tests/test_bleichenbacher.py/

Types of attacks on RSA

For example, decryption of flag.enc file by public key without private key

python3 ./RsaCtfTool/RsaCtfTool.py --publickey ./key.pub --private
openssl rsautl -decrypt -inkey key.pri -in flag.enc -out flag.txt

Decode Vigenere Decoder

https://www.dcode.fr/vigenere-cipher

Base64 decoding in terminal

echo "YToxOntzOjQ6Im5hbWUiO2E6MTp7czoxMDoicGF1bC1jb2xlcyI7YTo5OntzOjI6ImlkIjtzOjEwOiIxNTkyNDgzMjM2IjtzOjQ6Im5hbWUiO3M6 | base64 -d

PreviousReverseNextSteg

Last updated 1 year ago