boofuzz を使ってファジングする方法を学んでいます。Windows 7 VM ですべてをセットアップしました。ターゲットは Vulnserver アプリケーションです。TRUN
、GMON
、およびKSTET
コマンドが脆弱であることはわかっているので、これらのコマンドをs_group
リストに記載します。vulnserver.exe
コマンドでプロセスがクラッシュしTRUN
、再起動して、他のコマンドのテストを続行することを期待しています。以下は、私が使用した boofuzz スクリプトです。
#!/usr/bin/python
from boofuzz import *
from boofuzz import pedrpc
host = "172.16.37.201"
port = 9999
# Define request
s_initialize("Vulnserver")
s_group("verbs", values=["TRUN", "GMON", "KSTET"])
if s_block_start("test", group="verbs"):
s_delim(" ")
s_string("AAA")
s_string("\r\n")
s_block_end("test")
# Define Session
logger = FuzzLogger(fuzz_loggers=[FuzzLoggerText()])
session = sessions.Session(log_level=10, sleep_time=0.03, fuzz_data_logger=logger)
connection = SocketConnection(host, port, proto="tcp")
target = sessions.Target(connection)
target.procmon = pedrpc.Client(host, 26002)
target.procmon_options = {
"proc_name":"vulnserver.exe",
"stop_commands":['wmic process where (name="vulnserver.exe") delete'],
"start_commands":['C:\\Temp\\vulnserver.exe 9999'],
}
session.add_target(target)
session.connect(s_get("Vulnserver"))
session.fuzz()
を起動した後vulnserver.exe
、boofuzz スクリプトを実行すると、次のエラーが表示されます。
.....
+0c: 41414141 (1094795585) -> N/A
+10: 41414141 (1094795585) -> N/A
+14: 41414141 (1094795585) -> N/A
disasm around:
0x41414141 Unable to disassemble
SEH unwind:
ffffffff -> ntdll.dll:774d61a5 mov edi,edi
[2016-09-02 13:24:06,178] Test Case: 53
[2016-09-02 13:24:06,178] Info: primitive name: None, type: String, default value: AAA
[2016-09-02 13:24:06,178] Info: Test case 53 of 8352 for this node. 53 of 8352 overall.
Traceback (most recent call last):
File "auto.py", line 34, in <module>
session.fuzz()
File "C:\Python27\lib\site-packages\boofuzz\sessions.py", line 414, in fuzz
self._fuzz_current_case(*fuzz_args)
File "C:\Python27\lib\site-packages\boofuzz\sessions.py", line 846, in _fuzz_current_case
target.open()
File "C:\Python27\lib\site-packages\boofuzz\sessions.py", line 71, in open
self._target_connection.open()
File "C:\Python27\lib\site-packages\boofuzz\socket_connection.py", line 118, in open
self._sock.connect((self.host, self.port))
File "C:\Python27\lib\socket.py", line 228, in meth
return getattr(self._sock,name)(*args)
socket.error: [Errno 10061] No connection could be made because the target machine actively refused it
このエラーは、boofuzz がプロセスを再起動しなかったことを示していvulnserver.exe
ます。以下は、process_monitor.py
それが役立つ場合の出力です。
C:\Tools\boofuzz>python process_monitor.py --crash_bin "crash.bin" --proc_name "vulnserver.exe" --port 26002
[01:23.48] Process Monitor PED-RPC server initialized:
[01:23.48] crash file: C:\Tools\boofuzz\crash.bin
[01:23.48] # records: 0
[01:23.48] proc name: None
[01:23.48] log level: 1
[01:23.48] awaiting requests...
[01:24.01] updating target process name to 'vulnserver.exe'
[01:24.01] updating stop commands to: ['wmic process where (name="vulnserver.exe") delete']
[01:24.01] updating start commands to: ['C:\\Temp\\vulnserver.exe 9999']
[01:24.01] debugger thread-1472837041 looking for process name: vulnserver.exe
[01:24.01] debugger thread-1472837041 found match on pid 1060
[01:24.06] debugger thread-1472837041 caught access violation: '[INVALID]:41414141 Unable to disassemble at 41414141 from thread 1904 caused access violation'
[01:24.06] debugger thread-1472837041 exiting
[01:24.06] debugger thread-1472837046 looking for process name: vulnserver.exe
ありがとう!