2
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 5 years have passed since last update.

picoCTF 2018 shellcode - Points: 200

Posted at

問題

image.png

解いてみた

ソースとプログラムをリンクからダウンロードします。
ソースを開いてみます。

image.png

結構短めのソースです。
文字を入力してそれを出力してます。
最後のやつはなんでしょう。

((void (*)())buf)();

サーバを見てみます。

image.png

サーバを確認するとflag.txtがあるので、実行ファイルからflag.txtを呼び出す問題のようです。

ではさっきの謎の処理を調べてみます。

(*(void (*)())shellcode) - Qiita
(*(void(*)()) shellcode) - Electric Sheep and Androids

上記2サイト読めば一応理解できました。
とりあえず入力した文字列がここで実行されるということです。

ということは、flag.txtを表示すればいいので

cat flag.txt

と入力すれば良いのでしょうか。
やってみます。

image.png

大事なところは「Segmentation fault (core dumped)」になってしまっています。
やはりshellcodeを書く必要がありそうです。

書けません。

とりあえず流れとしては以下

vulnを実行
↓
/bin/shを実行するshellcodeを入力
↓
cat flag.txtでフラグを表示させる

/bin/shを実行するshellcodeが書けないので探します。

image.png

ヒントにもshellcode探しましょうのようなことが書かれてますね。

「shellcode」で検索していると検索サイトのようなものを見つけた。
Shellcodes Database - shell-storm

種類がたくさんありすぎてどれを採用すればよいのかわからないので、ひとまず環境を確認する。

image.png

Ubuntuの64bitのようです。

image.png

これでしょうか?

image.png

strに書かれている長い文字を放り込めばよさそうです。

image.png

Segmentation faultですね。
調べてみると

echo -e "xxx" | ./aaa

という形ではなく

(echo -e "xxx";cat) | ./aaa

という形にしないと入力を待ち受けてくれないそうです。
ということでこれでやり直し。

image.png

入力は待ち受けるようになったので進めた感はありますが、結果は同じSegmentation faultです。
ということはshellcodeが違うということです。

ふと思ったのがOSは64bitということで64bitのshellcode使用していたけど、そうじゃなくてソフトが何bitかということが大事なんじゃないかと思いました。
普段Linuxあまり使用しませんが、Windowsが64bitだとしてもソフトは32bitでも64bitどちらでも基本的には実行できますし。

ということでソフトが何bitか調べる必要があります。

image.png

fileコマンドを実行してみると32bitだということがわかりました。
なので32bitのshellcodeを探します。

image.png

これですかね。

image.png

できましたー。

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