2017-01-01から1年間の記事一覧

VagrantとVirtualBoxでAnsible Towerをインストールしてみた

事前にVagrantとVirtualboxをインストールしておく。 以下のコマンドを実行し、CentOS7系のboxを入手する。 $ mkdir tower $ cd tower $ vagrant init bento/centos-7.2 $ vagrant up Ansible TowerはRAMが2GB以上でないと動かないのでVagrantfileに以下の内…

pwnable.krのメモ【passcode】

以下、問題文。 Mommy told me to make a passcode based login system. My initial C code was compiled without any error! Well, there was some compiler warning, but who cares about that? ssh passcode@pwnable.kr -p2222 (pw:guest) まず sshで接続…

SECCON2017 writeup

今回はぼっち参加だった。 とりあえず興味のあるCryptoを解いて行こうというお気持ちでスタートした。 解いたのはVigenere3dとSHA-1 is deadとPs and Qsの3問のみ。 Vigenere3d プログラムの以下の箇所より、暗号文は平文の文字と鍵kのi番目と鍵kのlen(k)-i…

pwnable.kr のメモ【flag】

http://pwnable.kr の flag を解いたのでメモ 以下、問題文。とりあえずダウンロードしてみた。 Papa brought me a packed present! let's open it. Download : http://pwnable.kr/bin/flag This is reversing task. all you need is binary ダウンロードし…

pwnable.kr のメモ【bof】

http://pwnable.kr の bof を解いたのでメモ 問題を見ると以下のように書かれていた。とりあえず bof と bof.c をダウンロードする。 Nana told me that buffer overflow is one of the most common software vulnerability. Is that true? Download : http:…