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

Last updated at Posted at 2023-11-07

[picoCTF][Forensics][Wireshark twoo twooo two twoo]

Writeup

  • pcapngのファイルなので、とりあえずWiresharkで。
    ファイルの出力を試みる。File Export Objects HTTP
    flags.png

  • flagがたくさんなので、嘘っぽいですね。
    中身もそれっぽくないし。そして案の定の結果に。
    flag_false.png

  • 他に出力できそうなファイルを探したら、メッセージっぽいものが。
    該当する通信を右クリック Follow TCP Streamで確認。
    mes.png
    mes2.png
    trans.png

  • 海老[Shrimp]を探すと、異なるサブドメインへの問い合わせが多い。
    これは怪しいのか。
    shrimp.png

  • とりあえず名前解決に関するパケットを確認してみる。
    Googleは関係ないと思うし、レンスポンスを非表示にして、見る分を減らす。
    dns && ip.addr != 8.8.8.8 && ip.dst == 18.217.1.57
    screenshot.png

  • fQ==って怪しいのか。末尾の0= 9とかも覚えておこう。
    サブドメインを繋げたいので、適当な名前を付けてテキスト出力。
    File Export Packets Dissections As Plain Text
    screenshot 2.png

  • 必要な部分だけ抽出
cat hoge.txt | grep .reddshrimpandherring.com:| cut -d "." -f 1 > result.txt

screenshot 1.png

  • CyberChefでBAKE!した。
    answer.png

参考サイト

https://ichibariki.com/entry/2018/06/03/225649
https://tech.kusuwada.com/entry/2021/04/08/121205
https://www.deepl.com/translator

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?