-
Notifications
You must be signed in to change notification settings - Fork 916
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/urbanadventurer/WhatWeb
- Loading branch information
Showing
2 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,7 +67,6 @@ http://reddit.com [301 Moved Permanently] Country[UNITED STATES][US], HTTPServer | |
https://www.reddit.com/ [200 OK] Cookies[edgebucket,eu_cookie_v2,loid,rabt,rseor3,session_tracker,token], Country[UNITED STATES][US], Email[[email protected],[email protected]], Frame, HTML5, HTTPServer[snooserv], HttpOnly[token], IP[151.101.37.140], Open-Graph-Protocol[website], Script[text/javascript], Strict-Transport-Security[max-age=15552000; includeSubDomains; preload], Title[reddit: the front page of the internet], UncommonHeaders[fastly-restarts,x-served-by,x-cache-hits,x-timer], Via-Proxy[1.1 varnish], X-Frame-Options[SAMEORIGIN] | ||
``` | ||
|
||
|
||
## Usage | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
## | ||
# This file is part of WhatWeb and may be subject to | ||
# redistribution and commercial restrictions. Please see the WhatWeb | ||
# web site for more information on licensing and terms of use. | ||
# http://www.morningstarsecurity.com/research/whatweb | ||
## | ||
# Version 0.1 # 2020-04-04 # Marcelo Gimenes | ||
# Version 0.2 # 2020-04-21 # Marcelo Gimenes | ||
## | ||
Plugin.define do | ||
name "PHP-Slim" | ||
authors [ | ||
"Marcelo Gimenes <[email protected]>" | ||
] | ||
version "0.2" | ||
description "Slim Framework" | ||
website "https://www.slimframework.com/" | ||
|
||
matches [ | ||
{ :name => 'Slim < 4.0', | ||
:text => "to ensure your URL is spelled correctly. If all else fails, you can", | ||
:url => randstr()}, | ||
{ :name => 'Slim > 4.0', | ||
:text => "The requested resource could not be found. Please verify the URI and try again.", | ||
:url => randstr()} | ||
] | ||
end | ||
|