diff --git a/chals/crypto/password-cracker/challenge.yml b/chals/crypto/password-cracker/challenge.yml new file mode 100644 index 0000000..8dcdea1 --- /dev/null +++ b/chals/crypto/password-cracker/challenge.yml @@ -0,0 +1,23 @@ +name: "Password Cracking" +author: Sophia +category: Crypto +description: |- + We successfully obtained a SHA-256 hash of a password...all we need to do now is to decrypt it. + + **author**: Sophia +value: 150 +type: dynamic +tags: + - easy +extra: + initial: 150 + decay: 125 + minimum: 100 +flags: + - sigpwny{code_br3aker_!} +files: + - hash.txt + - wordlist.txt +hints: + - How can you perform a dictionary attack with a wordlist? +state: hidden diff --git a/chals/crypto/password-cracker/hash.txt b/chals/crypto/password-cracker/hash.txt new file mode 100644 index 0000000..8856cfb --- /dev/null +++ b/chals/crypto/password-cracker/hash.txt @@ -0,0 +1 @@ +b9f332efc78f678927bd0fa4b6f8873dfa1555fe171edc7240290f02b375b88a \ No newline at end of file diff --git a/chals/crypto/password-cracker/solution.sh b/chals/crypto/password-cracker/solution.sh new file mode 100755 index 0000000..ef5bd95 --- /dev/null +++ b/chals/crypto/password-cracker/solution.sh @@ -0,0 +1,2 @@ +#!/bin/bash +hashcat -a 0 -m 1400 hash.txt wordlist.txt \ No newline at end of file diff --git a/chals/crypto/password-cracker/wordlist.txt b/chals/crypto/password-cracker/wordlist.txt new file mode 100644 index 0000000..1c01eda --- /dev/null +++ b/chals/crypto/password-cracker/wordlist.txt @@ -0,0 +1,95 @@ +secretp@ss123! +guardiancode +mystery_2026 +cryptic_t3st +beyondthevault +codebreaker! +unveilmenow +mindboggler! +ctf_maestro_77 +decrypt_enigma +hunters_haven! +invertthis! +securemeplease! +enlistforquest +accessthehidden! +s0lv3thisch@ll3ng3 +p@ssw0rdninjawarrior +mindpuzzler +code_cracker +epic_p@sskey +ctf_genius_26 +decoding_journey +hackers_alliance +solve_themystery +code_maestro! +k1ngdomofkeys +gloryquest4 +cr@ck_thecodenow! +inspect_this_cipher +shield_mydata +hunterschallenge26 +mystery_decoder +haven_of_hacktivists +unlockthemystic +lockthecode +braintwistmaster +ctf_champion_26 +riddling_guru +mystical_unveiling +myst3ry_sentinel +questmaster_26 +hackerquester +echo_thec0d3 +codeinvestigator +revealthepuzzle +safeguardmenow! +solve_theenigmanow +marsmessagedecoder +p@ssw0rdwizard +braintestmaster +ctf_huntmaster_26 +revealthecypher +enigma_quest +codebreaker_26 +hacker_codemaster +decipherthisplz +echo_thesecret +password_wizardry +brain_test_champion +ctf_mystique_riddle +shield_thecode +hacker_haven_26 +mes3curenow! +unravel_thesecret +awaitthechallenge +vaultof_p@sscodes +cr@ckquest_05 +cipher_creator +code_br3aker_! +lair_of_hacktivists +decode_mymystery +masterbrain_test +revealthe_key +ctf_challenger_26 +enigmasolve26 +guardthecode26 +hackers_network +intriguingmessage +p@sscode_world +geniustestguru +ctf_mastermind_13! +reveal_themystique +master_ofthecode +cr@ckitnow!26 +questmaster_26_keys +unravel_thecode26 +hintthecipher_26 +decode_theriddle_26 +p@sscode_enigma_26 +iloveseals100 +passwordsarehard07 +passwordsarecool_!! +verys3curep@assword123 +password123 +test12345 \ No newline at end of file