-
Notifications
You must be signed in to change notification settings - Fork 291
/
sample.json
37 lines (35 loc) · 1.18 KB
/
sample.json
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
{
"_comment1": "Do not submit your changes in this sample.json file as it is only for testing!",
"categories" : ["archived","art","blog","business","coding","dating","finance","gaming","health",
"hobby","images","misc","music","news","political","search","shopping","social",
"tech","video","xx NSFW xx"],
"sites" : [
{
"name" : "Example GET",
"uri_check" : "https://www.example.com/load_profile_info.php?name={account}",
"uri_pretty" : "https://www.test.com/profile/{account}",
"e_code" : 200,
"e_string" : "regist_at",
"m_code" : 404,
"m_string" : "Account not found",
"known" : ["whoami", "johndoe"],
"cat" : "images"
},
{
"name" : "Example POST",
"uri_check" : "https://www.example.com/interact_api/load_profile_info.php",
"post_body" : "Name=Gareth+Wylie&Age=24&Formula=a%2Bb+%3D%3D+21",
"strip_bad_char" : ".",
"e_code" : 200,
"e_string" : "regist_at",
"m_code" : 404,
"m_string" : "Account not found",
"known" : ["whoami", "johndoe"],
"cat" : "images",
"protection" : ["captcha"],
"headers": {
"accept": "text/html"
}
}
]
}