forked from WebBreacher/WhatsMyName
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.json
More file actions
36 lines (34 loc) · 1.45 KB
/
Copy pathsample.json
File metadata and controls
36 lines (34 loc) · 1.45 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
{
"_comment1": "Use this file to test sites. Each Python checker as a '-in FILENAME' option",
"_comment2": "you can use like: python3 web_account_list_checker.py -in sample.json",
"_comment3": "When you have the site configured the way you want, add it to the",
"_comment4": "web_accounts_list.json file and do a pull request.",
"_comment5": "Do not submit your changes in this sample.json file as it is only for testing!",
"categories" : ["art","blog","business","coding","dating","finance","gaming","health",
"hobby","images","misc","music","news","political","search","shopping","social",
"tech","video","XXXPORNXXX"],
"sites" : [
{
"name" : "example",
"check_uri" : "https://www.example.com/user/{account}",
"account_existence_code" : "200",
"account_existence_string" : " is on Example.com</title>",
"account_missing_string" : "Oops! No such user.",
"account_missing_code" : "404",
"known_accounts" : ["john", "maria"],
"category" : "social",
"valid" : true
},
{
"name" : "test site name",
"check_uri" : "https://test.com/{account}/",
"account_existence_code" : "200",
"account_existence_string" : "Last logged in: ",
"account_missing_string" : "User not found!",
"account_missing_code" : "404",
"known_accounts" : ["user1", "user2"],
"category" : "business",
"valid" : true
}
]
}