Skip to content

Commit e9f6e05

Browse files
authored
Merge pull request #61 from tls-attacker/update_readme
Update Readme - XML Tags
2 parents 891220c + 064fd02 commit e9f6e05

File tree

1 file changed

+31
-31
lines changed

1 file changed

+31
-31
lines changed

README.md

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,10 @@ If you would use modification from the previous example, the result would look a
113113
```xml
114114
<modifiableByteArray>
115115
<originalValue>01 02 03</originalValue>
116-
<byteArrayInsertModification>
116+
<ByteArrayInsertModification>
117117
<bytesToInsert>02 03</bytesToInsert>
118118
<startPosition>1</startPosition>
119-
</byteArrayInsertModification>
119+
</ByteArrayInsertModification>
120120
</modifiableByteArray>
121121
```
122122

@@ -125,114 +125,114 @@ The following examples should give you a useful list of modifications in modifia
125125
## Integer
126126
- Explicit value:
127127
```xml
128-
<integerExplicitValueModification>
128+
<IntegerExplicitValueModification>
129129
<explicitValue>25872</explicitValue>
130-
</integerExplicitValueModification>
130+
</IntegerExplicitValueModification>
131131
```
132132

133133
- Subtract:
134134
```xml
135-
<integerSubtractModification>
135+
<IntegerSubtractModification>
136136
<subtrahend>30959</subtrahend>
137-
</integerSubtractModification>
137+
</IntegerSubtractModification>
138138
```
139139

140140
- Add:
141141
```xml
142-
<integerAddModification>
142+
<IntegerAddModification>
143143
<summand>960</summand>
144-
</integerAddModification>
144+
</IntegerAddModification>
145145
```
146146

147147
- Right shift:
148148
```xml
149-
<integerShiftRightModification>
149+
<IntegerShiftRightModification>
150150
<shift>13</shift>
151-
</integerShiftRightModification>
151+
</IntegerShiftRightModification>
152152
```
153153

154154
- Left shift:
155155
```xml
156-
<integerShiftLeftModification>
156+
<IntegerShiftLeftModification>
157157
<shift>13</shift>
158-
</integerShiftLeftModification>
158+
</IntegerShiftLeftModification>
159159
```
160160

161161
- XOR:
162162
```xml
163-
<integerXorModification>
163+
<IntegerXorModification>
164164
<xor>22061</xor>
165-
</integerXorModification>
165+
</IntegerXorModification>
166166
```
167167

168168
You can use the same operations for BigInteger data types, for example:
169169
```xml
170-
<bigIntegerAddModification>
170+
<BigIntegerAddModification>
171171
<summand>1</summand>
172-
</bigIntegerAddModification>
172+
</BigIntegerAddModification>
173173
```
174174
ModifiableLong and ModifiableBytes support the following operations: add, explicitValue, subtract, xor
175175

176176
## Byte Array
177177
- Explicit value:
178178
```xml
179-
<byteArrayExplicitValueModification>
179+
<ByteArrayExplicitValueModification>
180180
<explicitValue>
181181
4F 3F 8C FC 17 8E 66 0A 53 DF 4D 4E E9 0B D0
182182
</explicitValue>
183-
</byteArrayExplicitValueModification>
183+
</ByteArrayExplicitValueModification>
184184
```
185185

186186
- XOR:
187187
```xml
188-
<byteArrayXorModification>
188+
<ByteArrayXorModification>
189189
<xor>11 22</xor>
190190
<startPosition>1</startPosition>
191-
</byteArrayXorModification>
191+
</ByteArrayXorModification>
192192
```
193193

194194
- Insert:
195195
```xml
196-
<byteArrayInsertModification>
196+
<ByteArrayInsertModification>
197197
<bytesToInsert>
198198
3D 9F 3B 77 65 03 F9 8A 93 6D 94 CD 7E 4A C5 1B
199199
</bytesToInsert>
200200
<startPosition>0</startPosition>
201-
</byteArrayInsertModification>
201+
</ByteArrayInsertModification>
202202
```
203203

204204
- Delete:
205205
```xml
206-
<byteArrayDeleteModification>
206+
<ByteArrayDeleteModification>
207207
<count>2</count>
208208
<startPosition>0</startPosition>
209-
</byteArrayDeleteModification>
209+
</ByteArrayDeleteModification>
210210
```
211211

212212
- Shuffle:
213213
```xml
214-
<byteArrayShuffleModification>
214+
<ByteArrayShuffleModification>
215215
<shuffle>02 03</shuffle>
216-
</byteArrayShuffleModification>
216+
</ByteArrayShuffleModification>
217217
```
218218

219219
# Boolean
220220
- Explicit value:
221221
```xml
222-
<booleanExplicitValueModification>
222+
<BooleanExplicitValueModification>
223223
<explicitValue>true</explicitValue>
224-
</booleanExplicitValueModification>
224+
</BooleanExplicitValueModification>
225225
```
226226

227227
- Toggle:
228228
```xml
229-
<booleanToggleModification/>
229+
<BooleanToggleModification/>
230230
```
231231

232232
# String
233233
- Explicit value:
234234
```xml
235-
<stringExplicitValueModification>
235+
<StringExplicitValueModification>
236236
<explicitValue>abc</explicitValue>
237-
</stringExplicitValueModification>
237+
</StringExplicitValueModification>
238238
```

0 commit comments

Comments
 (0)