-
Notifications
You must be signed in to change notification settings - Fork 230
/
devices.cfg
94 lines (93 loc) · 3.89 KB
/
devices.cfg
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"axis": {
"devTypePattern": [["body", "title"], ["regex", "(?i)axis", "(?i)camera"]],
"loginUrlPattern": "document\\.write\\(\"([^\"\\]+)[^\\r\\n]+>Setup<\/a>",
"auth": ["basic", "admin:admin"]
},
"mobotix": {
"devTypePattern": [["body", ""], ["regex", "content=\"MOBOTIX AG"]],
"nextUrl": ["string", "/control/userimage.html" ],
"auth": ["basic", "admin:meinsm"]
},
"basler": {
"devTypePattern": [["body", "title"], ["regex", "Basler AG"]],
"nextUrl": ["string", "/cgi-bin/auth_if.cgi?Login" ],
"auth": ["form", "", "Auth.Username=admin&Auth.Password=admin", "body", "regex", "success: true"]
},
"IQinVision": {
"devTypePattern": [["body", ""], ["substr", "<meta name=\"author\" content=\"Brian Lau, IQinVision\">"]],
"nextUrl": ["string", "/imageset.html" ],
"auth": ["basic", "root:system"]
},
"JVC": {
"devTypePattern": [["header", "server"], ["regex", "^JVC "]],
"nextUrl": ["string", "/cgi-bin/c20display.cgi?c20encodeencode.html" ],
"auth": ["basic", "admin:jvc"]
},
"SAMSUNG TECHWIN NVR": {
"devTypePattern": [["body", "title"], ["==", "SAMSUNG TECHWIN NVR Web Viewer"]],
"nextUrl": ["string", "/index.php/auth/login_confirm" ],
"auth": ["form", "", "id=YWRtaW4%3D&pwd=2558a34d4d20964ca1d272ab26ccce9511d880579593cd4c9e01ab91ed00f325", "body", "substr", "\"is_login_ok\":2"]
},
"Sentry360": {
"devTypePattern": [["header", "server"], ["==", "Sentry360 "]],
"nextUrl": ["string", "/user.set?name=admin1&pwd=admin1&type=1" ],
"auth": ["basic", "admin:1234"]
},
"Speco": {
"devTypePattern": [["body", "title"], ["==", "Speco IP Camera"]],
"nextUrl": ["string", "/httpapi?GetUserLevel&ipAddress=" ],
"auth": ["basic", "admin:1234"]
},
"Stardot": {"comment": "",
"devTypePattern": [["body", "title"], ["==", "NetCamSCD Live Image"]],
"nextUrl": ["string", "/admin.cgi?0" ],
"auth": ["basic", "admin:admin"]
},
"Toshiba eStudio": {
"devTypePattern": [["body", "TITLE"], ["regex", "^TOSHIBA e.STUDIO"]],
"nextUrl": ["string", "/cgi-bin/exportfile/printer/config/secure/settingfile.ucf" ],
"auth": ["expect200"]
},
"Ubiquiti": {"comment": "",
"devTypePattern": [["body", "title"], ["==", "EdgeOS"]],
"nextUrl": ["string", "" ],
"auth": ["form", "", "username=ubnt&password=ubnt", "body", "!substr", "form id=\"LoginForm\""]
},
"W-Box": {
"devTypePattern": [["body", "title"], ["regex", "^W\\-BOX :"]],
"nextUrl": ["string", "" ],
"auth": ["form", "", "action=top&account=admin&password=wbox123&login=Login&parent_id=&app_path=", "body", "!substr", "input type=\"password\""]
},
"Brickcom": {
"devTypePattern": [["header", "www-authenticate"], ["substr", "realm=\"Brickcom"]],
"nextUrl": ["string", "" ],
"auth": ["basic", "admin:admin"]
},
"Arecont": {
"devTypePattern": [["header", "www-authenticate"], ["substr", "realm=\"Arecont Vision"]],
"nextUrl": ["string", "" ],
"auth": ["basic", ""]
},
"American Dynamics": {
"devTypePattern": [["body", "title"], ["substr", "American Dynamics: Video Management Solutions"]],
"nextUrl": ["string", "/video.htm" ],
"auth": ["basic", "admin/admin"]
},
"ACTi": {
"devTypePattern": [["body", "title"], ["substr", "Web Configurator - Version"]],
"nextUrl": ["string", "/video.htm" ],
"auth": ["form", "", "LOGIN_ACCOUNT=admin&LOGIN_PASSWORD=123456&LANGUAGE=0&btnSubmit=Login", "body", "!substr", ">Password<"]
},
"GeoVision": {
"devTypePattern": [["header", "server"], ["==", "GeoHttpServer"]],
"nextUrl": ["string", "/webcam_login" ],
"auth": ["form", "", "id=admin&pwd=admin&ViewType=2&Login=Login", "body", "!substr", "<title>Invalid</title>"]
},
"Grandstream": {
"devTypePattern": [["body", "title"], ["==", "Grandstream Device Configuration"]],
"nextUrl": ["string", "/cgi-bin/dologin" ],
"extractFormData": ["type=hidden value=(.*?)>"],
"auth": ["form", "substitute", "P2=admin&Login=Login&gnkey=$1", "body", "!substr", "Your Login Password is not recognized"]
}
}