Skip to content
  • Categories
  • Recent
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (Slate)
  • No Skin
Collapse
Brand Logo

hashpwn

Home | Donate | GitHub | Matrix Chat | PrivateBin | Rules

  1. Home
  2. Resources
  3. Contest / CTF
  4. Merry Christmas 2024 - hashpwn Wordlist Challenge

Merry Christmas 2024 - hashpwn Wordlist Challenge

Scheduled Pinned Locked Moved Contest / CTF
24 Posts 7 Posters 1.5k Views 7 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • I Offline
    I Offline
    ivan
    wrote on last edited by
    #15

    @cyclone Thank you so much for the interesting quest, the main problem is poor English language skills. Screenshot 2024-12-23 at 22.53.22.png

    cycloneC 1 Reply Last reply
    🏅
    1
    • I ivan

      @cyclone Thank you so much for the interesting quest, the main problem is poor English language skills. Screenshot 2024-12-23 at 22.53.22.png

      cycloneC Offline
      cycloneC Offline
      cyclone
      Admin Trusted
      wrote on last edited by
      #16

      @ivan Great job completing the challenge! Enjoy the hashpwn wordlist.

      Sysadmin by day | Hacker by night | Go Developer | hashpwn site owner
      3x RTX 4090

      1 Reply Last reply
      0
      • cycloneC Offline
        cycloneC Offline
        cyclone
        Admin Trusted
        wrote on last edited by
        #17

        New hint (#5) dropped.

        Sysadmin by day | Hacker by night | Go Developer | hashpwn site owner
        3x RTX 4090

        1 Reply Last reply
        0
        • cycloneC Offline
          cycloneC Offline
          cyclone
          Admin Trusted
          wrote on last edited by
          #18

          Congrats to the 11 users who have completed the challenge so far!

          The final clue was posted (#6).

          Sysadmin by day | Hacker by night | Go Developer | hashpwn site owner
          3x RTX 4090

          1 Reply Last reply
          1
          • cycloneC Offline
            cycloneC Offline
            cyclone
            Admin Trusted
            wrote on last edited by cyclone
            #19

            Merry Christmas to all those who played along, and congrats to the 14 users who successfully completed the challenge and downloaded the hashpwn wordlist.

            hashpwn wordlist download link:
            https://forum.hashpwn.net/post/237

            Sysadmin by day | Hacker by night | Go Developer | hashpwn site owner
            3x RTX 4090

            1 Reply Last reply
            0
            • C Offline
              C Offline
              casper_
              Trusted
              wrote on last edited by cyclone
              #20

              I was stuck here and couldn't get any further. Thanks for the the challenge 🙂

              "This looks like XOR to me...
              iuuqr;..fnghmd/hn.e.343c`5de,4d4`,5903,`176,d89`17g8c53d"
              
              cycloneC V 2 Replies Last reply
              👍
              2
              • C casper_

                I was stuck here and couldn't get any further. Thanks for the the challenge 🙂

                "This looks like XOR to me...
                iuuqr;..fnghmd/hn.e.343c`5de,4d4`,5903,`176,d89`17g8c53d"
                
                cycloneC Offline
                cycloneC Offline
                cyclone
                Admin Trusted
                wrote on last edited by cyclone
                #21

                @casper_ You made it to the last step! That string is the download URL which has been XOR'd using a key. Spoiler details below:

                To XOR the string, you need to find the XOR key.

                For simplicity, the challenge used HEX 0x01 which could be guessed very easily, especially when brute forcing the key.

                Below are several examples of XORing the string back to plaintext. CyberChef runs in browser, and the Python3, Go and C code can either be run from your local PC or on an online compiler.

                CyberChef:
                https://gchq.github.io/CyberChef/#recipe=XOR({'option':'Hex','string':'1'},'Standard',false)&input=aXV1cXI7Li5mbmdobWQvaG4uZS4zNDNjYDVkZSw0ZDRgLDU5MDMsYDE3NixkODlgMTdnOGM1M2Q

                Python3
                input_str = "iuuqr;..fnghmd/hn.e.343c5de,4d4,5903,176,d8917g8c53d"

                hex_key = 0x01

                output = ''.join(chr(ord(c) ^ hex_key) for c in input_str)

                print(f"String:\t{input_str}")
                print(f"Key:\t{hex(hex_key)}")
                print(f"Output:\t{output}")

                Go
                package main

                import (
                "fmt"
                )

                func xorString(input string, key byte) string {
                output := make([]byte, len(input))
                for i := 0; i < len(input); i++ {
                output[i] = input[i] ^ key
                }
                return string(output)
                }

                func main() {
                inputStr := "iuuqr;..fnghmd/hn.e.343c5de,4d4,5903,176,d8917g8c53d"
                hexKey := byte(0x01)

                    output := xorString(inputStr, hexKey)
                
                    fmt.Printf("String:\t%s\n", inputStr)
                    fmt.Printf("Key:\t0x%X\n", hexKey)
                    fmt.Printf("Output:\t%s\n", output)
                

                }

                C

                #include <stdio.h>
                #include <string.h>

                void xorString(const char *input, char *output, unsigned char key) {
                size_t len = strlen(input);
                for (size_t i = 0; i < len; i++) {
                output[i] = input[i] ^ key;
                }
                output[len] = '\0';
                }

                int main() {
                const char *inputStr = "iuuqr;..fnghmd/hn.e.343c5de,4d4,5903,176,d8917g8c53d";
                unsigned char hexKey = 0x01;
                char output[256];

                xorString(inputStr, output, hexKey);
                
                printf("String:\t%s\n", inputStr);
                printf("Key:\t0x%X\n", hexKey);
                printf("Output:\t%s\n", output);
                
                return 0;
                

                }

                Sysadmin by day | Hacker by night | Go Developer | hashpwn site owner
                3x RTX 4090

                1 Reply Last reply
                👍
                1
                • C casper_

                  I was stuck here and couldn't get any further. Thanks for the the challenge 🙂

                  "This looks like XOR to me...
                  iuuqr;..fnghmd/hn.e.343c`5de,4d4`,5903,`176,d89`17g8c53d"
                  
                  V Offline
                  V Offline
                  v1cvap0r
                  Trusted
                  wrote on last edited by cyclone
                  #22

                  @casper_ said in Merry Christmas 2024 - hashpwn Wordlist Challenge:

                  I was stuck here and couldn't get any further. Thanks for the the challenge 🙂

                  "This looks like XOR to me...
                  iuuqr;..fnghmd/hn.e.343c`5de,4d4`,5903,`176,d89`17g8c53d"
                  

                  Same here. Completely out of my "confort zone".
                  Kudos to @cyclone for his initiative and willingness to help.

                  1x1080 | i7 3770k | 32Gb | lol

                  1 Reply Last reply
                  👍
                  0
                  • cycloneC Offline
                    cycloneC Offline
                    cyclone
                    Admin Trusted
                    wrote on last edited by
                    #23

                    @v1cvap0r @casper_ The XOR string was meant to throw a small curve ball at the end of the challenge. Those familiar with programming and/or cryptography would be familiar with such bitwise ops, but it would likely be something new to other users.

                    Sysadmin by day | Hacker by night | Go Developer | hashpwn site owner
                    3x RTX 4090

                    1 Reply Last reply
                    👍
                    1
                    • karkajoiK Offline
                      karkajoiK Offline
                      karkajoi
                      wrote on last edited by
                      #24

                      Screenshot_3.png
                      @cyclone Thank you to the author for such an interesting puzzle! 🙂

                      1 Reply Last reply
                      👍
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      Who's Online [Full List]

                      4 users active right now (1 members and 3 guests).
                      hashpwn-bot

                      Board Statistics

                      Our members have made a total of 3.7k posts in 150 topics.
                      We currently have 257 members registered.
                      Please welcome our newest member, vioednfekla.
                      The most users online at one time was 49 on Thursday, December 26, 2024.

                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent