# frozen_string_literal: true ## # 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 ## WhatWeb::Plugin.define "MongoDB" do @author = "Steve 'Ashcrow' Milner" @version = "0.1" @description = "Identifies the admnistration console of MondoDB. http://www.mongodb.org/" ## # Would be a good idea to find common items in stacktraces which identify # the use of mongodb to expand this beyond just administration console. ## @matches = [ { name: "Title", certainty: 75, regexp: /
db version v[\d\.]+, pdfile version [\d\.]+\ngit hash:/, version: /db version v([\d\.]+){1}/ }, ] end