fix spoiler tags

This commit is contained in:
Christoph J. Scherr 2023-09-04 17:54:47 +02:00
parent ecfc98be04
commit fa615d8321
1 changed files with 12 additions and 6 deletions

View File

@ -11,8 +11,10 @@ programming techniques, only how to use Python.
- You need to explicitly tell your hash to actually process the input. - You need to explicitly tell your hash to actually process the input.
- When printing your results, the result may be interpreted as data for characters. - When printing your results, the result may be interpreted as data for characters.
You want the numeric value of the result in Hexadecimal. You want the numeric value of the result in Hexadecimal.
- Results: <details>
- ||MD5 of `foobar19` is `fa5c65d5438f849387d3fdda2be4dd65`|| <summary>Solution</summary>
MD5 of `foobar19` is `fa5c65d5438f849387d3fdda2be4dd65`
</details>
- [ ] 1. rotate the base string `foobar` with numbers from 0 to 999999 like this: - [ ] 1. rotate the base string `foobar` with numbers from 0 to 999999 like this:
1. `foobar000000` 1. `foobar000000`
2. `foobar000001` 2. `foobar000001`
@ -38,14 +40,18 @@ programming techniques, only how to use Python.
999852 | 006fe04f7d3f710f93d3e6324506154a 999852 | 006fe04f7d3f710f93d3e6324506154a
999902 | 00c063364ddffa1bdf338dfcf0319424 999902 | 00c063364ddffa1bdf338dfcf0319424
``` ```
- Results: <details>
- ||3889 matches for the search parameters.|| <summary>Solution</summary>
3889 matches for the search parameters.
</details>
- [ ] Continuing from the previous task, what is the earliest value for `foobarXXXXXX` (where `X` - [ ] Continuing from the previous task, what is the earliest value for `foobarXXXXXX` (where `X`
is a substitute for the iterating numbers) where the hash starts with `0000`? is a substitute for the iterating numbers) where the hash starts with `0000`?
- Hints: - Hints:
- Stop on the earliest match. - Stop on the earliest match.
- Results: <details>
- || 021820 | 00001c9393b83c8da0db478687211d1d || <summary>Solution</summary>
021820 | 00001c9393b83c8da0db478687211d1d
</details>
## Super basic webserver ## Super basic webserver
- [ ] Make a webserver print "Schlangenjazz" when you connect to it - [ ] Make a webserver print "Schlangenjazz" when you connect to it