Skip to content

Commit

Permalink
show READMEs daily
Browse files Browse the repository at this point in the history
  • Loading branch information
nuoxoxo committed Nov 15, 2024
1 parent aca742d commit 6a6a46a
Showing 1 changed file with 34 additions and 34 deletions.
68 changes: 34 additions & 34 deletions README.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
# Level 01 - solution

```
$ su level01
$ Password: x24ti5gi3x0ol2eh4esiuxias
```
- take a look at the legacy `/etc/passwd`
```
$ cat /etc/passwd
$ cat /etc/passwd | grep -i flag01 | awk -F: '{print $2}'
😀 if we have john we'll able to do:
$ john --show <(cat /etc/passwd | grep -i flag01 | awk -F: '{print $2}')
```
- on host:
```
$ wget https://download.openwall.net/pub/projects/john/contrib/macosx/john-1.8.0.9-jumbo-macosx_sse4.zip
$ tar -xvf john-1.8.0.9-jumbo-macosx_sse4.zip
$ cd john-1.8.0.9-jumbo-macosx_sse4
$ echo 42hDRfypTqqnw $ __test
$ ./john --show __test
```
- VM
```
$ su flag01
Password: abcdefg
```

# Level 01 - token

```r
x24ti5gi3x0ol2eh4esiuxias
```


# Level 00 - solution
Expand Down Expand Up @@ -42,38 +76,4 @@ on host do
```


# Level 01 - solution

```
$ su level01
$ Password: x24ti5gi3x0ol2eh4esiuxias
```
- take a look at the legacy `/etc/passwd`
```
$ cat /etc/passwd
$ cat /etc/passwd | grep -i flag01 | awk -F: '{print $2}'
😀 if we have john we'll able to do:
$ john --show <(cat /etc/passwd | grep -i flag01 | awk -F: '{print $2}')
```
- on host:
```
$ wget https://download.openwall.net/pub/projects/john/contrib/macosx/john-1.8.0.9-jumbo-macosx_sse4.zip
$ tar -xvf john-1.8.0.9-jumbo-macosx_sse4.zip
$ cd john-1.8.0.9-jumbo-macosx_sse4
$ echo 42hDRfypTqqnw $ __test
$ ./john --show __test
```
- VM
```
$ su flag01
Password: abcdefg
```

# Level 01 - token

```r
x24ti5gi3x0ol2eh4esiuxias
```

0 comments on commit 6a6a46a

Please sign in to comment.