Files
OneForAll-mirror/data/rules/whatweb/sx-webserver.json
T
2020-07-29 00:02:06 +08:00

39 lines
1.4 KiB
JSON

{
"name": "SX-Webserver",
"author": "Brendan Coles <bcoles@gmail.com>",
"version": "0.1",
"description": "SX-Webserver - a simple tcp socket web server - coded by: neotek of soldierx.com",
"website": null,
"matches": [
{
"status": 400,
"text": "<head></head><body><html><h1>Error 400</h1><p>The server couldn't understand your request.</html></body>\r\n"
},
{
"status": 403,
"text": "<head></head><body><html><h1>Error 403</h1><p>Forbidden.</html></body>\r\n"
},
{
"status": 404,
"text": "<head></head><body><html><h1>Error 404</h1><p>Document not found.</html></body>\r\n"
},
{
"status": 500,
"text": "<head></head><body><html><h1>Error 500</h1><p>The server encountered an unexpected condition which prevented it from fulfilling the request.</html></body>\r\n"
},
{
"status": 501,
"text": "<head></head><body><html><h1>Error 501</h1><p>This feature is not implemented.</html></body>\r\n"
},
{
"status": 505,
"text": "<head></head><body><html><h1>Error 505</h1><p>HTTP Version not supported. This server supports HTTP 1.0 and HTTP 1.1.</html></body>\r\n"
},
{
"search": "headers[server]",
"regexp": "(?-mix:^SX Webserver ([\\d\\.]{1,5}))",
"offset": 1
}
]
}