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 a5fe4f3 commit bbce7e1
Showing 1 changed file with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,35 @@ Password: abcdefg
> xxd level02.pcap | cut -d ' ' -f2-9 | tr -d ' ' 👈 get midfields
```

- use Wireshark
- _Analyze - Follow - TCP Stream_ - copy _TCP Stream_ to text
- use _Wireshark_
- _Analyze - Follow - TCP Stream_
- copy _`TCP Stream`_ to text

```b
000000D6 00 0d 0a 50 61 73 73 77 6f 72 64 3a 20 ...Passw ord:
000000B9 66 f
000000BA 74 t
000000BB 5f _
000000BC 77 w
000000BD 61 a
000000BE 6e n
000000BF 64 d
000000C0 72 r
000000C1 7f .
000000C2 7f .
000000C3 7f .
000000C4 4e N
000000C5 44 D
000000C6 52 R
000000C7 65 e
000000C8 6c l
000000C9 7f .
000000CA 4c L
000000CB 30 0
000000CC 4c L
000000CD 0d .
```


```py
infile = [[n[-2], n[-1]] for n in [_.split() for _ in open(0).read().split('\n') if len(_.split()) == 3]]
Expand Down

0 comments on commit bbce7e1

Please sign in to comment.