0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Wireshark

Posted at

[picoCTF][Forensics][Eavesdrop]

Writeup

  • pcapファイルなので、とりあえずWireshakで開く。
    HTTPを見ても気になる通信がなかったので、TCPで接続しようとしているパケットを確認。
(http.request or tls.handshake.type eq 1 or (tcp.flags.syn eq 1 and tcp.flags.ack eq 0)) and !(ssdp)

  • 9001番ポートの通信から、Follow TCP Streamで内容を確認。
    screenshot 33.png
  • 内容をDeepLで確認。
    screenshot 29.png
    以下のコマンドで、9002番ポートの通信を復号でするのかな。
openssl des3 -d -salt -in file.des3 -out file.txt -k supersecretpassword123

  • 9002番ポートの通信から、Follow TCP Streamで内容を確認。
    Saltedとあり、ソルトが入っているのかな。
    screenshot 34.png
  • Rawにして、ファイルとして出力
    screenshot 36.png

  • 出力したファイルの名前を変更して、指定のコマンドを実行。
    screenshot 32.png

  • 以上です。
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?