-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.har
More file actions
75 lines (75 loc) · 1.79 KB
/
Copy pathexample.har
File metadata and controls
75 lines (75 loc) · 1.79 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"log": {
"version": "1.2",
"creator": {
"name": "OWASPAttackSimulator",
"version": "1.0"
},
"entries": [
{
"startedDateTime": "2024-01-01T12:00:00.000Z",
"request": {
"method": "GET",
"url": "https://httpbin.org/get?param=test",
"headers": [
{
"name": "User-Agent",
"value": "OWASPAttackSimulator/1.0"
}
],
"queryString": [
{
"name": "param",
"value": "test"
}
]
},
"response": {
"status": 200,
"headers": [
{
"name": "Content-Type",
"value": "application/json"
}
],
"content": {
"size": 100,
"mimeType": "application/json",
"text": "{\"param\": \"test\"}"
}
}
},
{
"startedDateTime": "2024-01-01T12:01:00.000Z",
"request": {
"method": "POST",
"url": "https://httpbin.org/post",
"headers": [
{
"name": "Content-Type",
"value": "application/x-www-form-urlencoded"
}
],
"postData": {
"mimeType": "application/x-www-form-urlencoded",
"text": "username=admin&password=test"
}
},
"response": {
"status": 200,
"headers": [
{
"name": "Content-Type",
"value": "application/json"
}
],
"content": {
"size": 200,
"mimeType": "application/json",
"text": "{\"form\": {\"username\": \"admin\", \"password\": \"test\"}}"
}
}
}
]
}
}