-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathiremocon_command_key.xml
43 lines (35 loc) · 1.12 KB
/
iremocon_command_key.xml
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
<?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/peach.xsd"
version="1.0"
author="Shinichi Noma" description="Fuzzing iRemocon command via Key.">
<DataModel name="DataRequest">
<String value="*" mutable="false" token="true"/>
<String value="" />
<String value="\r\n" mutable="false" token="true"/>
</DataModel>
<DataModel name="DataResponse">
<String value="" />
</DataModel>
<StateModel name="TestState" initialState="Initial">
<State name="Initial">
<Action type="output">
<DataModel ref="DataRequest"/>
</Action>
<Action type="input">
<DataModel ref="DataResponse"/>
</Action>
</State>
</StateModel>
<Test name="Default" description="iRemocon command via Key">
<StateModel ref="TestState"/>
<Publisher class="TcpClient">
<Param name="Host" value="192.168.2.8" />
<Param name="Port" value="51013" />
</Publisher>
<Logger class="Filesystem">
<Param name="Path" value="PeachLogs" />
</Logger>
</Test>
</Peach>
<!-- end -->