-
Notifications
You must be signed in to change notification settings - Fork 11
/
Utils.xml
52 lines (46 loc) · 1.8 KB
/
Utils.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
44
45
46
47
48
49
50
51
52
<?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"
author="Brad Antoniewicz ([email protected])">
<!--
General Peach Data Models that can be used for various purposes
Dependencies:
This PeachPit requres the following set in a PitDefine:
Username
Domain
-->
<!--
Domain\Username DataModel
-->
<DataModel name="Domain-Username">
<Block name="Domain-Prefix" minOccurs="0">
<String name="Domain" value="##Domain##" />
<String value="\" token="true"/>
</Block>
<String name="Username" value="##Username##" />
</DataModel>
<!-- Cisco's State Attribute included in RADIUS messages
This is a replacement for AVP-String
State:33-30-53-65-73-73-69-6F-6E-49-44-3D-61-63-73-2F-31-38-32-39-38-38-31-32-30-2F-32-31-37-30-36-34-3B
State:30SessionID=acs/182988120/217064;
-->
<DataModel name="Cisco-State">
<Number name="Type" size="8" value="24"/>
<Number name="Length" size="8">
<Relation type="size" of="Cisco-State" />
</Number>
<String name="Size" length="2">
<Relation type="size" of="SessionID"/>
</String>
<Block name="SessionID">
<String name="Field" value="SessionID"/>
<String value="=" token="true"/>
<String name="host" value="acs"/>
<String value="/" token="true"/>
<String name="SessionID-1"/>
<String value="/" token="true"/>
<String name="SessionID-2"/>
</Block>
<String value=";" token="true"/>
</DataModel>
</Peach>