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 16, 2024
1 parent 965b765 commit 9091da6
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -62,30 +62,30 @@ Password: nottoohardhere
- Legacy folder `/etc/passwd`

```b
$ cat /etc/passwd
$ cat /etc/passwd | grep -i flag01 | awk -F: '{print $2}'
> 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}')
### observation
😀 if we have john we'll able to do:
> john --show <(cat /etc/passwd | grep -i flag01 | awk -F: '{print $2}')
```

- Use our own _`do_john`_ script

```b
$ chmod +x do_john.sh
$ ./do_john.sh
> chmod +x do_john.sh
> ./do_john.sh
```

- or download and use _`john`_

```b
$ 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 __test
$ ./john --show __test
> 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 __test
> ./john --show __test
```

# 01 - token
Expand Down

0 comments on commit 9091da6

Please sign in to comment.