-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHttp.xml
More file actions
49 lines (41 loc) · 1.59 KB
/
Http.xml
File metadata and controls
49 lines (41 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="utf-8"?>
<Peach xmlns="http://peachfuzzer.com/2012/Peach" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://peachfuzzer.com/2012/Peach ../peach.xsd">
<DataModel name="HttpRequestLine">
<String value="GET" />
<String value=" " token="true" mutable="false" />
<String value="/" />
<String value=" " token="true" mutable="false" />
<String value="HTTP/1.0" />
<String value="\n\n" token="true" mutable="false" />
</DataModel>
<StateModel name="TheStateModel" initialState="TheState">
<State name="TheState">
<Action type="output">
<DataModel ref="HttpRequestLine" />
</Action>
</State>
</StateModel>
<!-- Agents that run localy will be started automatically by Peach -->
<Agent name="RemoteAgent" location="tcp://192.168.1.6:9001">
<Monitor name="Debugger" class="WindowsDebugger">
<Param name="CommandLine" value="C:\Users\dmk\Downloads\tightvnc-1.3.10_winsrc\vnc_winsrc\winvnc\Debug\WinVNC.exe -run -silent"/>
<Param name="WinDbgPath" value="C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\" />
</Monitor>
<!--<Monitor name="Network" class="PcapMonitor">
<Param name="filter" value="tcp and port 5800"/>
</Monitor>-->
</Agent>
<Test name="Default">
<Agent ref="RemoteAgent" />
<StateModel ref="TheStateModel"/>
<Publisher class="TcpClient">
<Param name="Host" value="192.168.1.6" />
<Param name="Port" value="5800" />
</Publisher>
<Logger class="Filesystem">
<Param name="Path" value="Logs" />
</Logger>
</Test>
</Peach>
<!-- end -->