py-basic/Tasks.md

392 lines
11 KiB
Markdown
Raw Normal View History

2023-09-04 17:44:39 +02:00
# Tasks for beginners
2023-09-07 18:26:55 +02:00
This document contains some tasks for Python beginners. It does not aim to teach general
2023-09-04 23:09:52 +02:00
programming techniques, only how to use Python. I try to avoid unrealistic tasks.
2023-09-04 17:44:39 +02:00
2023-09-07 18:26:55 +02:00
In case you have somehow gotten this document from another source,
[this](https://git.cscherr.de/PlexSheep/py-basic/src/branch/master/Tasks.md) is the original
source, where the links should hopefully work. If something does not work feel free to contact
2023-09-04 23:20:45 +02:00
me at [software@cscherr.de](mailto:admin@cscherr.de).
2023-09-04 17:44:39 +02:00
## MD5 Hashchecker
2023-09-04 23:09:52 +02:00
2023-09-05 10:28:41 +02:00
### A. Produce a single MD5 Hash
2023-09-04 23:09:52 +02:00
Difficulty: 1/5
1. Hash the string `foobar19` with the MD5 hashing algorithm.
<details>
<summary>Hints</summary>
- Use Pythons `hashlib`.
- Your hashing function does not take strings for input, only raw data (bytes).
- You need to explicitly tell your hash to actually process the input.
2023-09-07 18:26:55 +02:00
- When printing your results, the result may be interpreted as data for characters.
2023-09-04 23:09:52 +02:00
You want the numeric value of the result in Hexadecimal.
</details>
<details>
<summary>Solution</summary>
The MD5 hash of `foobar19` is `fa5c65d5438f849387d3fdda2be4dd65`.
[Example Code](src/md5.py)
</details>
2023-09-05 10:28:41 +02:00
### B. Hash multiple values and search for specific ones.
2023-09-04 23:09:52 +02:00
Difficulty: 2/5
2023-09-07 18:26:55 +02:00
1. Find a way to produce strings with the basis `foobar` with appended numbers from `000000` to
2023-09-04 23:09:52 +02:00
`999999`.
```text
1. `foobar000000`
2. `foobar000001`
3. `foobar000002`
2023-09-04 17:44:39 +02:00
...
2023-09-04 23:09:52 +02:00
999998. `foobar999998`
999999. `foobar999999`
```
2. Hash all these with the MD5 hashing algorithm.
3. Find the exact numbers, how many of these hashes start with `00`
2023-09-07 18:26:55 +02:00
4. **Bonus**:
1. If MD5 was a good / perfect Hashing algorithm (it is definitely not),
2023-09-04 23:09:52 +02:00
how many matches for a `00` prefix should exist? Why?
2. How many matches for $0$ to $50000$? How many matches for $0$ to $50.000.000$?
<details>
<summary>Testvectors</summary>
Last 5 Matches
```text
999384 | 009671fd23fa783df1fff63516e5d115
999751 | 00ec2ade58f75c44b7300294497f7fb1
999844 | 009cfd7949b577a3311d9db3ee49c15d
999852 | 006fe04f7d3f710f93d3e6324506154a
999902 | 00c063364ddffa1bdf338dfcf0319424
```
</details>
<details>
<summary>Hints</summary>
- Use a for loop to do the thing X times
- Use Pythons string formatting to put the numbers and string together
- Use Options for the `%d` Placeholder to get $0$ to be displayed as `000000`
2023-09-07 18:26:55 +02:00
- After hashing, check if your current hash matches the search.
2023-09-04 23:09:52 +02:00
Print it if that is the case to see if the match is a false positive.
- Increment a number on each match. The value of that number after the loop is how many
Hashes start with `00` for this task.
</details>
<details>
<summary>Solution</summary>
2023-09-07 18:26:55 +02:00
There are 3889 hashes for `foobar000000` to `foobar999999` that produce an MD5 Hash that starts
2023-09-05 10:26:06 +02:00
with `00`.
2023-09-04 23:09:52 +02:00
[Code Example](src/md5range.py)
2023-09-07 18:26:55 +02:00
**Bonus**
We want $N/16^2$ occurrences for an ideal hashing algorithm, where $N$ is the maximum of our range
$+ 1$.
2023-09-04 23:09:52 +02:00
$16^2$ comes from $2$ characters in a range of `0` to `e` (Hexadecimal).
2023-09-07 18:26:55 +02:00
We want the hashing algorithm to spread out as much as possible, no value should be more common
than any other value. This is essential for the security of the hashing algorithm.
2023-09-04 23:09:52 +02:00
| Value | Ideal Occurences |
|--------------|------------------|
| $1.000.000$ | $\approx 3906$ |
| $500.000$ | $\approx 1953$ |
| $50.000.000$ | $\approx 195312$ |
</details>
2023-09-05 10:28:41 +02:00
### C. Find earliest hash that fits criteria
2023-09-04 23:09:52 +02:00
Difficulty: 2/5
2023-09-07 18:26:55 +02:00
1. Find the earliest integer $X$ for `foobarXXXXXX` (where $X$ is an iterator as in the last
2023-09-05 10:26:06 +02:00
subtask) that produces an MD5 hash that starts with `2718`.
2023-09-04 23:09:52 +02:00
<details>
<summary>Hints</summary>
- You can reuse most code from the last subtask.
2023-09-07 18:26:55 +02:00
- Match against the new prefix, but stop when you find it.
2023-09-04 23:09:52 +02:00
- Display the index number in each loop iteration.
</details>
<details>
<summary>Solution</summary>
The first hash with prefix `2718` occurs at $i=70559$.
```text
070559 | 2718e5ee6d05091ce6dad023e55ee19c
```
[Code Example](src/md5range-4.py)
</details>
## Super basic web server
2023-09-04 23:20:45 +02:00
Difficulty: 3/5
2023-09-04 23:09:52 +02:00
1. Program a Python web server that writes "Python is not so hard" in your Browser (or in `cURL`).
Use `http.server`.
<details>
<summary>Hints</summary>
- Use `http.server.SimpleHTTPRequestHandler` and `io.BytesIO`.
- Define your own class that inherits `SimpleHTTPRequestHandler`.
- You don't need to implement `do_GET()`.
2023-09-07 18:26:55 +02:00
- Implement your own `send_head()` method. This is the method that writes your response (not
completely on it's own, but unless you feel like inspecting standard libraries, just do what
2023-09-04 23:09:52 +02:00
I'm saying.).
- `send_head()` should take no arguments (other than `self`) and return some readable buffer.
- Don't forget to set the headers for HTTP before sending the body.
- Your OS might block hosting to ports < 1000. Try to host your web server to `localhost:8080`.
</details>
<details>
<summary>Solution</summary>
Take a look at the provided Code Example.
[Code Example](src/miniweb.py)
</details>
2023-09-05 10:59:21 +02:00
## Random Password generator
Difficulty: 2/5
1. Generate a string of 16 random alphanumeric characters.
2023-09-07 18:26:55 +02:00
2. When starting your script, take a number for a CLI Argument. Generate a random string of this
2023-09-05 10:59:21 +02:00
length.
2023-09-05 11:16:20 +02:00
3. **Bonus**
- How many possible strings consisting of 16 alphanumeric characters can exist?
2023-09-07 18:26:55 +02:00
- Add the possibility for a second argument `-v` that indicates your script should be more
2023-09-05 11:16:20 +02:00
verbose.
2023-09-07 18:26:55 +02:00
- print the security bits ($log_2(L)$ where $L$ is the total number of possibilities) when the
2023-09-05 11:16:20 +02:00
`-v` flag is applied
2023-09-05 10:59:21 +02:00
Example:
```bash
$ python ./randomString.py 60
n51uxDLu3BnxZ1D00gYKYRcG2jh1Y6uulHgrJ0TK3w5FtWl6wm8U0azNtxw0
# ^^^^ the above is 60 characters ^^^^
```
<details>
<summary>Hints</summary>
- Use `random.choice` to generate a random character
- build your own alphabet string
- Use `sys.argv` to access the CLI Arguments
</details>
<details>
<summary>Solution</summary>
Take a look at the provided Code Example.
[Code Example](src/randomString.py)
2023-09-05 11:16:20 +02:00
**Bonus**
There are 62 alphanumeric characters (A-Z), (a-z), (0-9).
With $N$ characters, there are $62^N$ possible variants.
For $N=16$ that's $62^{16} = 47.672.401.706.823.533.450.263.330.816$ possible variants.
2023-09-07 18:26:55 +02:00
Security people measure security in Bits ($2^x$). You can calculate the bits of security with the
2023-09-05 11:16:20 +02:00
logarithm base 2.
2023-09-07 18:26:55 +02:00
$S = log_2(62^N)$.
2023-09-05 11:16:20 +02:00
We can immediately see that longer passwords are *exponentially* more secure than
2023-09-07 18:26:55 +02:00
more complex passwords (passwords that make use of complicated characters). For each bit, the
2023-09-05 11:16:20 +02:00
security of the password is doubled.
For our example of $N=16$ we can calculate the security of the password like this:
$S=log_2(62^{16}) \approx 95.27$
2023-09-07 18:26:55 +02:00
That number of security bits is pretty good for passwords. However it does not cost you anything to
just make your passwords longer than that, and give attackers no chance to break them by brute
2023-09-05 11:16:20 +02:00
force.
2023-09-05 10:59:21 +02:00
</details>
2023-09-05 15:27:45 +02:00
## String Parsing with Regular Expressions
Difficulty: 2/5
<details>
<summary>Text</summary>
2023-09-07 18:26:55 +02:00
The text is large, read it [here](data/metasyntactic.md) and find the raw text for your program
2023-09-05 15:31:38 +02:00
[here](https://git.cscherr.de/PlexSheep/py-basic/raw/branch/master/data/metasyntactic.md).
2023-09-05 15:27:45 +02:00
</details>
2023-09-05 16:15:17 +02:00
1. Use a regular expression (regex) to find all words that start with a lowercase character with a
2023-09-05 15:27:45 +02:00
following vowel character, in which no 'x', z' or 'y' follows the vowel in the given Text.
2023-09-07 18:26:55 +02:00
It is not allowed to store the text in source code, you must load it from an outside source,
2023-09-05 15:35:03 +02:00
such as a file.
2023-09-05 15:27:45 +02:00
Examples:
| Original | is Match? |
|----------|-----------|
2023-09-05 15:31:38 +02:00
| foo | yes |
2023-09-05 16:15:17 +02:00
| foobar | yes |
| tayfoo | no |
2023-09-05 15:31:38 +02:00
| baz | no |
| qux | no |
| Foo | no |
| bAR | yes |
| far | yes |
2023-09-05 15:27:45 +02:00
2023-09-07 18:26:55 +02:00
A hint that you don't want to miss:
2023-09-05 15:35:03 +02:00
Use [regex101.com](https://regex101.com) if you are not already a REGEX expert.
2023-09-05 15:27:45 +02:00
<details>
<summary>Hints</summary>
2023-09-05 16:19:21 +02:00
- use `open()` to open your file for reading.
- use the `read()` method to read the file out.
- Use the `re` library
- Use `\b` to match a word boundary
- Use ranges `[5-9]`
- You can set a higher precedence by putting things in braces `(ABC)`.
- You can connect two expressions with `A|B` to use either `A` or `B`
- Use global mode.
2023-09-05 15:27:45 +02:00
</details>
<details>
<summary>Solution</summary>
2023-09-05 16:19:21 +02:00
There should be $374$ matches.
2023-09-07 23:35:58 +02:00
A regex that matches the requirements is `\b[a-z][AEIOUaeiou]([a-w]|[A-W])`.
2023-09-05 16:19:21 +02:00
[Code Example](src/tasks/regex.py)
2023-09-05 15:27:45 +02:00
</details>
2023-09-07 18:26:55 +02:00
2023-09-07 23:35:58 +02:00
## Ancient Cryptography
Difficulty: 2/5
<details>
<summary>Text</summary>
```text
Neovim is a refactor, and sometimes redactor, in the tradition of Vim (which itself derives from
Stevie). It is not a rewrite but a continuation and extension of Vim. Many clones and derivatives
exist, some very clever—but none are Vim. Neovim is built for users who want the good parts of
Vim, and more.
````
</details>
1. The text above has been cyphered with the Caesar cipher, a timeless classic
algorithm to abstract the meaning away from a text and arguably an early
form of encryption. Your task is to decipher it back into readable text.
2023-09-07 23:40:02 +02:00
### The Caesar cipher
2023-09-07 23:35:58 +02:00
2023-09-07 23:40:02 +02:00
For the Caesar cipher, all letters are shifted by the value of the key.
2023-09-07 23:35:58 +02:00
**Examples**
2023-09-07 23:40:02 +02:00
`foo Bar` becomes `gpp Cbs` when shifted by $1$.
2023-09-07 23:35:58 +02:00
<details>
<summary>Hints</summary>
</details>
<details>
<summary>Solution</summary>
[Code Example](src/caesar.py)
</details>
2023-09-07 23:40:02 +02:00
2023-09-07 18:26:55 +02:00
## Making a Hexeditor
In this section, we're building a little hexeditor. You will be able to install
it on your system and use it instead of the `hexdump` and `xxd` built into most
Linux distributions.
Hexdumping is actually really simple, all you have to do is read a file and
print it's direct content interpreted as numbers in hexadecimal. Apply some
fancy string formatting and we're done!
The editing part is a lot harder. It requires us to build a functioning TUI -
Terminal User Interface, as working with command line arguments or regular
reading from stdin won't help us much for editing a file. (if that's your thing,
use `ed`.).
Note: If you're looking for a great, fully featured hexeditor, I'd recommend
`bvi` ("binary vi"), which is packaged by most distributions.
-> `apt-get install bvi`
Note: I have no Idea how to install a python script as executable on windows, I
don't like windows either, so no support for installing stuff on windows.
### A. Hexdumper
Difficulty: 2/5
1. Dump the data of [data/metasyntactic.md](./data/metasyntactic.md) -- In
2023-09-07 23:40:02 +02:00
Hexadecimal.
2023-09-07 18:26:55 +02:00
2. Make the dumped Bytes look pretty, something like the example below:
<details>
<summary>Hexdump Example Display</summary>
`data/metasyntactic.md` looks like this when hexdumped:
```text
Line Data
=================================================
0000000 ┃ 6f4e 6574 203a 6854 7369 6920 2073 6874
0000010 ┃ 2065 6957 696b 6570 6964 2061 6170 6567
0000020 ┃ 6620 726f 6d20 7465 7361 6e79 6174 7463
0000030 ┃ 6369 7620 7261 6169 6c62 7365 6920 206e
0000040 ┃ 6e45 6c67 7369 2c68 3220 3230 2d33 3930
0000050 ┃ 302d 2e35 4620 6e69 2064 6874 0a65 7075
0000060 ┃ 7420 206f 6164 6574 6f20 6972 6967 616e
0000070 ┃ 206c 685b 7265 5d65 6828 7474 7370 2f3a
0000080 ┃ 652f 2e6e 6977 696b 6570 6964 2e61 726f
0000090 ┃ 2f67 6977 696b 4d2f 7465 7361 6e79 6174
00000a0 ┃ 7463 6369 765f 7261 6169 6c62 2965 0a2e
00000b0 ┃ 230a 4d20 7465 7361 6e79 6174 7463 6369
00000c0 ┃ 7620 7261 6169 6c62 0a65 230a 2023 6f54
00000d0 ┃ 6c6f 0a73 460a 6f72 206d 6957 696b 6570
00000e0 ┃ 6964 2c61 7420 6568 6620 6572 2065 6e65
00000f0 ┃ 7963 6c63 706f 6465 6169 540a 6968 2073
0000100 ┃ 7261 6974 6c63 2065 7369 6120 6f62 7475
0000110 ┃ 6d20 7465 7361 6e79 6174 7463 6369 7620
...
```
</details>