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

35 lines
1.5 KiB
JSON

{
"name": "Bobo",
"author": "Brendan Coles <bcoles@gmail.com>, Andrew Horton",
"version": "0.2",
"description": "Bobo is a light-weight framework for creating WSGI web applications. It's goal is to be easy to use and remember. It addresses 2 problems: 1) mapping URLs to objects and 2) calling objects to generate HTTP responses. Bobo doesn't have a templating language, a database integration layer, or a number of other features that are better provided by WSGI middle-ware or application-specific libraries. Bobo builds on other frameworks, most notably WSGI and WebOb.",
"website": "http://bobo.digicool.com/",
"matches": [
{
"name": "HTTP Bobo-Exception-Line Header",
"regexp": "(?-mix:)",
"search": "headers[bobo-exception-line]"
},
{
"name": "HTTP Bobo-Exception-Value Header",
"regexp": "(?-mix:)",
"search": "headers[bobo-exception-value]"
},
{
"name": "HTTP Bobo-Exception-File Header",
"search": "headers[bobo-exception-file]",
"regexp": "(?-mix:([^\\r^\\n]+))"
},
{
"name": "HTTP Bobo-Exception-Type Header",
"search": "headers[bobo-exception-type]",
"regexp": "(?-mix:([^\\r^\\n]+))"
},
{
"name": "X-Ksscommands HTTP Header",
"regexp": "(?-mix:)",
"search": "headers[x-ksscommands]"
}
]
}