Main Cipher Algorithm All Challenge CTF

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3
At a glance
Powered by AI
The document discusses various cipher algorithms including Caesar cipher, ROT cipher, Morse code, XOR cipher, Vigenere cipher, and more.

Some common cipher algorithms discussed include Caesar cipher, ROT cipher, Morse code, tap code, and DNA encoding.

Cipher algorithms that require a key mentioned include XOR cipher, substitution cipher, transposition cipher, and Vigenere cipher.

MAIN CIPHER ALGORITHM

All type of Cryptography Challenges (Walkthrough)

 Hash

MD 5
hello = 5d41402abc4b2a76b9719d911017c592

https://www.md5hashgenerator.com/
https://crackstation.net/

 Bases (32/64/85)

Base 32 : Capital Letter & Number


hello = NBSWY3DP
hello123 = NBSWY3DPGEZDG===
hello how are you = NBSWY3DPEBUG65ZAMFZGKIDZN52Q====
KKSTNIAD2020{i_got_the_flag} =
JNFVGVCOJFAUIMRQGIYHW2K7M5XXIX3UNBSV6ZTMMFTX2IA=

Base 64 : Alphanumeric with = symbol


hello = aGVsbG8=
hello123 = aGVsbG8xMjM=
hello how are you = aGVsbG8gaG93IGFyZSB5b3U=
KKSTNIAD2020{i_got_the_flag} =
S0tTVE5JQUQyMDIwe2lfZ290X3RoZV9mbGFnfSA=

Base 85 : Unreadable
hello = BOu!rD[H
hello123 = BOu!rD_X"'$3
hello how are you = BOu!rD]i_3G9C=7AKZ8:FUA
KKSTNIAD2020{i_got_the_flag} = 91r2_:.[`>1,(I;HYHi"Dff?.BOtO_Cggt)+9

https://cryptii.com/pipes/base32

 Number System (Base-2,8,10,16)

Base 2 = Binary
Base 8 = Octal
Base 10 = Decimal
Base 16 = Hex

https://cryptii.com/pipes/text-octal

 Rot Cipher

hello = ifmmp (ROT1)


hello = jgnnq (ROT2)
hello123 = ifmmp123 (ROT1)
hello123 = jgnnq123 (ROT2)
KKSTNIAD2020{i_got_the_flag} = XXFGAVNQ2020{v_tbg_gur_synt} (ROT13)

https://rot13.com/

 Caeser Cipher

hello = olssv
hello123 = olssv123
hello how are you = olssv ovd hyl fvb
KKSTNIAD2020{i_got_the_flag} = RRZAUPHK2020{p_nva_aol_mshn}

https://cryptii.com/pipes/caesar-cipher
 Morse Code

hello = .... . .-.. .-.. ---


hello123 = .... . .-.. .-.. --- .---- ..--- ...--
KKSTNIAD2020{i_got_the_flag} = -.- -.- ... - -. .. .- -.. ..--- ----- ..--- ----- / .. ..--.- --. --- - ..--.-
- .... . ..--.- ..-. .-.. .- --. /

http://www.unit-conversion.info/texttools/morse-code/
https://www.dcode.fr/morse-code
https://morsedecoder.com/
https://morsecode.world/international/decoder/audio-decoder-adaptive.html

 Tap Code

hello = .. ... . ..... ... . ... . ... ....


hello123 = .. ... . ..... ... . ... . ... ....
KKSTNIAD2020{i_got_the_flag} =
. ... . ... .... ... .... .... ... ... .. .... . . . .... .. .... .. .. ... .... .... .... .... .... .. ... . ..... .. . ... . . . .. ..

https://cryptii.com/pipes/tap-code

 DNA Code

hello = AGGCCCGCATGCATGCTTGC
hello123 = AGGCCCGCATGCATGCTTGCCATAGATATATA
hello how are you =
AGGCCCGCATGCATGCTTGCAAGAAGGCTTGCTCTCAAGACAGCGATCCCGCAAGACGTCT
TGCCCTC
KKSTNIAD2020{i_got_the_flag} =
TGACTGACTACCACCCGTACCGACCAACACACGATAAATAGATAAATATGTCCGGCTTCCTC
GCTTGCACTCTTCCACTCAGGCCCGCTTCCGCGCATGCCAGCTCGCCTTC

http://dnaencoder.dustinmichels.com/

 XOR (Require Key)

-Bruteforce/Test All Keys From 1 To 8 Bits (Single Byte)


-Use The Binary Key
-Use The ASCII Key

Word1 + XOR (key) = Word2


Word2 + XOR (key) = Word1

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

 Substitution Cipher (Require Key)

Cipher yang di dapat dicocokan dengan protap dengan input pada submission box
Contoh :

Didapat
MMUKKCN4214{..}

Disubstitusi dengan protap submission dari juri

KKSTNIAD2020{…}

Masukkan cipher yang di dapat pada box puzzle di quipquip.com


Tuliskan rumus berikut pada box clues quipquip.com
MMUKKCN4214=KKSTNIAD2020
Mesin akan otomatis berjalan dan mempelajari beberapa kemungkinan plaint text yang di dapat

https://quipqiup.com/
 Transpotition Cipher (Require Key)

hello = EOHLL
hello123 = EO3HL2L1
hello how are you = EOWEUHLOROLHAY

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

 Vigenere Cipher (Require Key)

https://www.dcode.fr/vigenere-cipher
https://www.guballa.de/vigenere-solver

 Esoteric Language

https://enkhee-osiris.github.io/Decoder-JSFuck/

You might also like