Search found 32 matches

by yes-man
Wed Mar 15, 2023 4:51 pm
Forum: Challenges Solved
Topic: Slim Image
Replies: 4
Views: 880

Agreed. This was one of the better challenges. Especially the fact, that most people (including me) ended up with the 'circle + garbage' images first :D
by yes-man
Tue Mar 14, 2023 4:52 pm
Forum: Challenges Solved
Topic: State Your Position
Replies: 2
Views: 807

Without the 'US' hint, this one is really hard.
Of course there is the title, but still.
by yes-man
Tue Mar 14, 2023 4:20 pm
Forum: Challenges Solved
Topic: Something Left Unread
Replies: 4
Views: 945

This one took waaaayy too long. I probably looked at the string 'ANSWER' for hours and couldn't find the final step. That last one is a bit random, for my taste.
by yes-man
Tue Mar 14, 2023 2:32 pm
Forum: Challenges Solved
Topic: Communication of the Past
Replies: 5
Views: 918

Years...

This one took me a while. I always assumed it was some old-ish Layer-1 protocol, but somehow I never ended up at RS-232. Except for today.
Then it was just a matter of messing around for a bit. Does every letter have a Start-Stop envelop? Ahhhh, LSB first... And well, there it was.
by yes-man
Tue Mar 14, 2023 1:31 pm
Forum: Challenges Solved
Topic: Protected Password 3
Replies: 7
Views: 1039

Nice.

Had the browser console running, got the X value from the request, pasted into a small tool I build which downloaded the JAR, unpacked, decompiled (thanks to jd-cli) and gave me the password back :D
No problem in under 20s^^ I want to see the 1s challenge ;D
by yes-man
Tue Mar 14, 2023 10:42 am
Forum: Challenges Solved
Topic: Around the World in 80 Days
Replies: 5
Views: 941

WOW

This challenge took me about 15min .. A LOT of luck was involved, I guess. Decoding the 80s into numbers was straight forward. Looking at them (with 'world' in mind) they seemed like they could be coordinates. One of them starting out with 54 was even better, because Europe and such. Ended up in Rus...
by yes-man
Tue Mar 14, 2023 10:11 am
Forum: Challenges Solved
Topic: Anybody Out There?
Replies: 10
Views: 1236

No idea why there are 12 iterations ...

Got some sample data, ran into exceptions from the formulas pretty fast ... well.
Querried all the data over night (19MB JSON^^). Rendered all layers into their own image and wondering whether I would/could detect anything in there. Realized I overdid it a bit.
by yes-man
Wed Mar 08, 2023 4:27 pm
Forum: Challenges Solved
Topic: Awesome Internets Vid
Replies: 1
Views: 758

Yes, uffff...

This one took quite a while, agreed. So realizing I'm looking at a (half)byte stream of a BMP file was the easy part. What helped A LOT was at least doing the header by hand, to get file dimensions and such. Shotcut produced 365.475 JPG files which matched the 5624 byte file size, given in the heade...
by yes-man
Fri Sep 09, 2022 2:01 pm
Forum: Challenges Solved
Topic: Mainframe
Replies: 15
Views: 1997

This took a few years ... but z390 was the ticket.
by yes-man
Sat Jul 31, 2021 2:12 am
Forum: Challenges Solved
Topic: Under The Sea
Replies: 3
Views: 837

Okay, this one was fun and didn't take too long.
But switching to MD5 on a modern version ... that took a while to find out.
by yes-man
Wed Nov 20, 2019 9:50 pm
Forum: Challenges Solved
Topic: HVM Cipher
Replies: 10
Views: 1205

I just analysed it, too, reduced it to ((p in base 3) + (k in base 5)) from base 7 to base 10. Yup, that's pretty much what I did. Going through the code and having a good, long stare. Outcome was something like this: ... # main_1 60^<0^2? # push 6, duplicate, get mem[6], duplicate, jump 2 (to !) i...
by yes-man
Fri Nov 15, 2019 10:49 am
Forum: Challenges Solved
Topic: Deja Vu
Replies: 17
Views: 2065

Like I already hinted in the non-solver forum, I'm pretty impressed with the design of this challenge. I, like others, used a hashing scheme to identify the duplicate. Good old memory-time trade-off. Glad I remember some of those university lessons ;-D The author basically set up the test sets to me...
by yes-man
Thu Nov 14, 2019 4:21 pm
Forum: Challenges
Topic: Deja Vu impossible?
Replies: 14
Views: 22879

I'm currently working on this challenge and without spoiling too much, I've got to say that the test sets used to validate the code are very specific if not mean :D
by yes-man
Wed Nov 13, 2019 11:35 am
Forum: Challenges Solved
Topic: Broken Key
Replies: 12
Views: 1569

Incomplete

I consider the task (or more the text) to be imcomplete.
The fact that there are only positive integers should be mentioned!
by yes-man
Fri Nov 08, 2019 10:02 am
Forum: Challenges Solved
Topic: String Reversal
Replies: 19
Views: 2359

At first I looked at the SHVM documentation and instantly hated all of it. Put it away for a few years. Now, that I tried it, it's kinda fun. Definitely more than the HVM. I took a pretty straight forward approach to this one. But looking at the other solutions, I'm already learning. * first loop re...