Unless otherwise noted, the password for all example hashes is hashcat
| Hash-Mode | Hash-Name | Example |
|---|---|---|
| 0 | MD5 | 8743b52063cd84097a65d1633f5c74f5 |
| 10 | md5($pass.$salt) | 01dfae6e5d4d90d9892622325959afbe:7050461 |
| #printing hello world in python | |
| print("Hello world") | |
| print('Hello world') | |
| #it's wrong ๐๐ฝ | |
| print("Hello world') | |
| print('Hello world") |
| print("Hello world") | |
| print("Hello world") | |
| print("Hello world") |
| print("Hello world\nHello world\nHello world") |
| print("Hello\tworld\tHello\tworld") |
| #adding two words in a string ๐๐ฝ | |
| print("Hello" + "World") | |
| #to leave gap between two words | |
| print("Hello" + " World") | |
| #Found the gap โ | |
| #Fix the code below ๐ | |
| print(Day 1 - String Manipulation") | |
| print("String Concatenation is done with the "+" sign.") | |
| print('e.g. print("Hello " + "world")') | |
| print(("New lines can be created with a backslash and n.") |
| #Fix the code below ๐ | |
| #string is missing at the first | |
| print(Day 1 - String Manipulation") | |
| #thi code seems good ๐ | |
| print("String Concatenation is done with the "+" sign.") | |
| #Here the indent is moven forward | |
| print('e.g. print("Hello " + "world")') |
| #Fixed the code below ๐ | |
| print("Day 1 - String Manipulation") | |
| print("String Concatenation is done with the "+" sign.") | |
| print('e.g. print("Hello " + "world")') | |
| print(("New lines can be created with a backslash and n.")) |
| print("Hello " + input("What is your name")+"!") | |
| print("Iam " + input("How old are you") + "๐") |