1
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?

【HACKTHEBOX】HACKTHEBOX Photon Lockdownの解説

Posted at

はじめに

ネタバレ注意&筆者はLinuxやCTFに精通しているわけではないので,
理解できていない部分が多くあります.
環境 win11 wsl2 Ubuntu
問題リンク:https://app.hackthebox.com/challenges/Photon%2520Lockdown
問題内容:ハードコーデイングされた認証情報を読み出せ

Photon Lockdownの解説

問題ファイルをDLすると,
fwu_ver hw_ver rootfsが得られる.
rootfsはファイルシステムになっているので,
これをマウントする.

mkdir -p /home/lexic/aso/hackthebox/ONT/tmppp
#マウント先を作成 tmpppという名前にする

sudo mount -o loop /home/lexic/aso/hackthebox/ONT/rootfs /home/lexic/aso/hackthebox/ONT/tmppp
#rootfsをtmpppにマウント

ls /home/lexic/aso/hackthebox/ONT/tmppp/
#マウントしたディレクトリを見る

image.png

いつものlinuxのディレクトリ構造がある.
認証情報はetc以下に保存されることが多い.

cd etc
grep -r "HTB{" .
#HTB形式のフラグを取得

grepコマンドで引っ張ってくることで答えのflagが得られました!

1
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
1
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?