Sha256: af366951250e32dd77c1aeb7eca78959dd97fe924675a2ebd4e13ca9e2b7d885
Contents?: true
Size: 532 Bytes
Versions: 16
Compression:
Stored size: 532 Bytes
Contents
module WPScan # WordPress hosted (*.wordpress.com) class WordPressHostedError < StandardError def to_s 'Scanning *.wordpress.com hosted blogs is not supported.' end end # Not WordPress Error class NotWordPressError < StandardError def to_s 'The remote website is up, but does not seem to be running WordPress.' end end # Invalid Wp Version (used in the WpVersion#new) class InvalidWordPressVersion < StandardError def to_s 'The WordPress version is invalid' end end end
Version data entries
16 entries across 16 versions & 1 rubygems