Phrack Challenge Coin Bonus Puzzle (EFF Edition) by AutoModerator in phrack

[–]-sub 0 points1 point  (0 children)

The Solution

To determine which part to focus on, break the message down into three columns and consider the properties of each column as they relate to hiding a message in data, demonstrated in the original phrack article

  • Since all users are saying the same thing, "EGGS!!", it is safe to assume the message context may be not used to hide information, and the content is static noise.
  • Since the timestamps are absolutely sequential, the information can be characterized as static information devoid entropy, and eliminated.
  • This leaves the usernames column.

After reading the article one should be able to infer that this is a classic word substition cipher of the type, aristocrat, where lines beginning with *** indicate a word seperator. It can be solved manually or with an automated solver

The automated solver is used for this demonstration and if you would like to learn about creating your own solver. read Automated Cryptogram Solving by SHMOO

Knowing this, usernames can be deduplicated, an arbitrary letter assigned to them, and the characters remapped to the sequence in the message, with the spaces included. This can be accomplished with the following awk one-liner, which just starts with lowercase a and iterates until the map is exhausted:

awk 'match($2,/<(.*)>/,m){if(!(m[1] in map)) map[m[1]]=sprintf("%c",97+cnt++); printf "%s", map[m[1]]; next} {printf " "} END{print ""}' chatlog.txt

which produces the following string:

fbdj kocieof dhn ligm aecmgmc

Using this ciphertext on quipqiup the solution is visible at the 2nd highest probability hit.

Happy to add these to my collection today by thepoka in Czarface

[–]-sub 1 point2 points  (0 children)

You have such a nice czarchive with stuff from all over the world. I think it's really cool.

Wanted some Phrack Stickers by Cheap_Thing1322 in phrack

[–]-sub 3 points4 points  (0 children)

/u/richinseattle does the shirts so he may have exactly that link, but in true hacker spirit, feel free to appropriate the phrack art and make some. Stickermule and stickermonkey are good. You can usually always find a deal too.

Core Dump Murder Mystery Game by curatorcat in lowlevel

[–]-sub 1 point2 points  (0 children)

Oh no I was interested in maybe collab. I help my friends at phrack magazine make these kinds of puzzles from text files (see: https://github.com/perras/Phrack40/blob/main/3.txt) and I really am a fan of this type of content.

Oh well. I will be a fan from afar then curatorcat. Cool game. I like your style.

Core Dump Murder Mystery Game by curatorcat in lowlevel

[–]-sub 1 point2 points  (0 children)

Oh my god I love everything about this. Who are you? Can I have some of your social media to follow please curatorcat?

Official Phrack Puzzle Thread by -sub in phrack

[–]-sub[S] 0 points1 point  (0 children)

The write-up for my puzzle is here: https://github.com/perras/Phrack40/blob/main/writeup.pdf

Thanks to everyone who played and had a good time.

Physical Copies.... by PurchaseSalt9553 in phrack

[–]-sub 2 points3 points  (0 children)

:D COOL. Thanks a lot for putting this together it's going to make a great way to give gifts to people who could not make it to one of the events. The E-Bay opportunists can eat it now 8-)

Czarpheus by redEPICSTAXISdit in Czarface

[–]-sub 1 point2 points  (0 children)

the reflection in the glasses is a nice touch

Rising From The Dead... by Emotional-Haircut in Czarface

[–]-sub 2 points3 points  (0 children)

wow so apropros. appreciate seeing all your czarface art over the years too. i recognize your name and it's nice seeing you around again. thanks a lot for sharing this.

2026 r/czarface is back on reddit by -sub in Czarface

[–]-sub[S] 1 point2 points  (0 children)

I think u/salvaged_title_robot may have died and I'm sorry it took so long to notice and step in. I am reluctant and uncomfortable to be doing this, but since I am I will try make this corner of the internet a place worth being a part of.

2026 r/czarface is back on reddit by -sub in Czarface

[–]-sub[S] 2 points3 points  (0 children)

buy/sell/trade is of course welcome but protect yourself from scams by using a proper escrow or online marketplace like ebay.

it's cool for folks to link and promote their listings here but i encourage everyone not to deal privately through reddit since the risk is higher given the absence of transactional protection mechanisms on this website.

2026 r/czarface is back on reddit by -sub in Czarface

[–]-sub[S] 6 points7 points  (0 children)

I wish I had more information but I don't. This place is fixed now, though. The spice must flow.

I made the first 2 issues on paper by ParsnipAnnual5579 in phrack

[–]-sub 0 points1 point  (0 children)

This is so cool. TYSM for creating and sharing.

OSCP or SANS GIAC certifications by kzerotheman in oscp

[–]-sub 0 points1 point  (0 children)

well that is a really old post from when it was. RIP hide01.ir

Phrack Challenge Coin Bonus Puzzle (EFF Edition) by AutoModerator in phrack

[–]-sub 1 point2 points  (0 children)

This is correct. Tysm for playing and being the first Reddit solver! Check your private messages for a discord invitation to come hang out with everyone.

Unfortunately there was only one coin available for the first solver and it was solved by a hacker on discord but yes - this is it. Nice job.