mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
40 lines
1.0 KiB
Ruby
40 lines
1.0 KiB
Ruby
##
|
|
# 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.
|
|
# https://morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "Entrans"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-02-27
|
|
]
|
|
version "0.1"
|
|
description "Entrans is an online translation tool. The tool can be used by the online community to give suggestions for a list of English words/phrases that needs to be translated into a specific Indic Language."
|
|
website "http://entrans.sourceforge.net/"
|
|
|
|
# Google results as at 2011-02-27 #
|
|
# 6 for "View All Strings" "The tool can be used by the online community"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'"View All Strings" "The tool can be used by the online community"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Default View All Strings HTML
|
|
{ :text=>'<li ><a href="list.php?category=all&page=1" >View All Strings</a> </li>' },
|
|
|
|
# Default Title
|
|
{ :certainty=>25, :text=>"<title>Entrans</title>" },
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|