HELLO v3!!!
This commit is contained in:
14
app/views/cli/core/banner.erb
Normal file
14
app/views/cli/core/banner.erb
Normal file
@@ -0,0 +1,14 @@
|
||||
_______________________________________________________________
|
||||
__ _______ _____
|
||||
\ \ / / __ \ / ____|
|
||||
\ \ /\ / /| |__) | (___ ___ __ _ _ __ ®
|
||||
\ \/ \/ / | ___/ \___ \ / __|/ _` | '_ \
|
||||
\ /\ / | | ____) | (__| (_| | | | |
|
||||
\/ \/ |_| |_____/ \___|\__,_|_| |_|
|
||||
|
||||
WordPress Security Scanner by the WPScan Team
|
||||
Version <%= WPScan::VERSION %>
|
||||
Sponsored by Sucuri - https://sucuri.net
|
||||
@_WPScan_, @ethicalhack3r, @erwan_lr, @_FireFart_
|
||||
_______________________________________________________________
|
||||
|
||||
8
app/views/cli/core/db_update_finished.erb
Normal file
8
app/views/cli/core/db_update_finished.erb
Normal file
@@ -0,0 +1,8 @@
|
||||
<% if @verbose && !@updated.empty? -%>
|
||||
<%= notice_icon %> File(s) Updated:
|
||||
<% @updated.each do |file| -%>
|
||||
| <%= file %>
|
||||
<% end -%>
|
||||
<% end -%>
|
||||
<%= notice_icon %> Update completed.
|
||||
|
||||
1
app/views/cli/core/db_update_started.erb
Normal file
1
app/views/cli/core/db_update_started.erb
Normal file
@@ -0,0 +1 @@
|
||||
<%= notice_icon %> Updating the Database ...
|
||||
1
app/views/cli/core/not_fully_configured.erb
Normal file
1
app/views/cli/core/not_fully_configured.erb
Normal file
@@ -0,0 +1 @@
|
||||
<%= critical_icon %> The Website is not fully configured and currently in install mode. Create a new admin user at <%= @url %>
|
||||
5
app/views/cli/core/version.erb
Normal file
5
app/views/cli/core/version.erb
Normal file
@@ -0,0 +1,5 @@
|
||||
Current Version: <%= WPScan::VERSION %>
|
||||
<% if @last_update -%>
|
||||
Last DB Update: <%= @last_update.strftime('%Y-%m-%d') %>
|
||||
<% end -%>
|
||||
|
||||
11
app/views/cli/enumeration/config_backups.erb
Normal file
11
app/views/cli/enumeration/config_backups.erb
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
<% if @config_backups.empty? -%>
|
||||
<%= notice_icon %> No Config Backups Found.
|
||||
<% else -%>
|
||||
<%= notice_icon %> Config Backup(s) Identified:
|
||||
<% @config_backups.each do |config_backup| -%>
|
||||
|
||||
<%= info_icon %> <%= config_backup %>
|
||||
<%= render('@finding', item: config_backup) -%>
|
||||
<% end -%>
|
||||
<% end %>
|
||||
11
app/views/cli/enumeration/db_exports.erb
Normal file
11
app/views/cli/enumeration/db_exports.erb
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
<% if @db_exports.empty? -%>
|
||||
<%= notice_icon %> No DB Exports Found.
|
||||
<% else -%>
|
||||
<%= notice_icon %> Db Export(s) Identified:
|
||||
<% @db_exports.each do |db_export| -%>
|
||||
|
||||
<%= info_icon %> <%= db_export %>
|
||||
<%= render('@finding', item: db_export) -%>
|
||||
<% end -%>
|
||||
<% end %>
|
||||
11
app/views/cli/enumeration/medias.erb
Normal file
11
app/views/cli/enumeration/medias.erb
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
<% if @medias.empty? -%>
|
||||
<%= notice_icon %> No Medias Found.
|
||||
<% else -%>
|
||||
<%= notice_icon %> Medias(s) Identified:
|
||||
<% @medias.each do |media| -%>
|
||||
|
||||
<%= info_icon %> <%= media %>
|
||||
<%= render('@finding', item: media) -%>
|
||||
<% end -%>
|
||||
<% end %>
|
||||
20
app/views/cli/enumeration/plugins.erb
Normal file
20
app/views/cli/enumeration/plugins.erb
Normal file
@@ -0,0 +1,20 @@
|
||||
|
||||
<% if @plugins.empty? -%>
|
||||
<%= notice_icon %> No plugins Found.
|
||||
<% else -%>
|
||||
<%= notice_icon %> Plugin(s) Identified:
|
||||
<% @plugins.each do |plugin| -%>
|
||||
|
||||
<%= info_icon %> <%= plugin %>
|
||||
<%= render('@wp_item', wp_item: plugin) -%>
|
||||
|
|
||||
<%= render('@finding', item: plugin) -%>
|
||||
|
|
||||
<% if plugin.version -%>
|
||||
| Version: <%= plugin.version %> (<%= plugin.version.confidence %>% confidence)
|
||||
<%= render('@finding', item: plugin.version) -%>
|
||||
<% else -%>
|
||||
| The version could not be determined.
|
||||
<% end -%>
|
||||
<% end -%>
|
||||
<% end %>
|
||||
11
app/views/cli/enumeration/themes.erb
Normal file
11
app/views/cli/enumeration/themes.erb
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
<% if @themes.empty? -%>
|
||||
<%= notice_icon %> No themes Found.
|
||||
<% else -%>
|
||||
<%= notice_icon %> Theme(s) Identified:
|
||||
<% @themes.each do |theme| -%>
|
||||
|
||||
<%= info_icon %> <%= theme %>
|
||||
<%= render('@theme', theme: theme, show_parents: false) -%>
|
||||
<% end -%>
|
||||
<% end %>
|
||||
18
app/views/cli/enumeration/timthumbs.erb
Normal file
18
app/views/cli/enumeration/timthumbs.erb
Normal file
@@ -0,0 +1,18 @@
|
||||
|
||||
<% if @timthumbs.empty? -%>
|
||||
<%= notice_icon %> No Timthumbs Found.
|
||||
<% else -%>
|
||||
<%= notice_icon %> Timthumb(s) Identified:
|
||||
<% @timthumbs.each do |timthumb| -%>
|
||||
|
||||
<%= info_icon %> <%= timthumb %>
|
||||
<%= render('@finding', item: timthumb) -%>
|
||||
|
|
||||
<% if timthumb.version -%>
|
||||
| Version: <%= timthumb.version %>
|
||||
<%= render('@finding', item: timthumb.version) -%>
|
||||
<% else -%>
|
||||
| The version could not be determined.
|
||||
<% end -%>
|
||||
<% end -%>
|
||||
<% end %>
|
||||
11
app/views/cli/enumeration/users.erb
Normal file
11
app/views/cli/enumeration/users.erb
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
<% if @users.empty? -%>
|
||||
<%= notice_icon %> No Users Found.
|
||||
<% else -%>
|
||||
<%= notice_icon %> User(s) Identified:
|
||||
<% @users.each do |user| -%>
|
||||
|
||||
<%= info_icon %> <%= user %>
|
||||
<%= render('@finding', item: user) -%>
|
||||
<% end -%>
|
||||
<% end %>
|
||||
32
app/views/cli/finding.erb
Normal file
32
app/views/cli/finding.erb
Normal file
@@ -0,0 +1,32 @@
|
||||
| Detected By: <%= @item.found_by %>
|
||||
<% @item.interesting_entries.each do |entry| -%>
|
||||
| - <%= entry %>
|
||||
<% end -%>
|
||||
<% unless (confirmed = @item.confirmed_by).empty? -%>
|
||||
<% if confirmed.size == 1 -%>
|
||||
| Confirmed By: <%= confirmed.first.found_by %>
|
||||
<% confirmed.first.interesting_entries.each do |entry| -%>
|
||||
| - <%= entry %>
|
||||
<% end -%>
|
||||
<% else -%>
|
||||
| Confirmed By:
|
||||
<% confirmed.each do |c| -%>
|
||||
| <%= c.found_by %>
|
||||
<% c.interesting_entries.each do |entry| -%>
|
||||
| - <%= entry %>
|
||||
<% end -%>
|
||||
<% end -%>
|
||||
<% end -%>
|
||||
<% end -%>
|
||||
<% if @item.respond_to?(:vulnerabilities) && !(vulns = @item.vulnerabilities).empty? -%>
|
||||
<% vulns_size = vulns.size -%>
|
||||
|
|
||||
| <%= critical_icon %> <%= vulns_size %> <%= vulns_size == 1 ? 'vulnerability' : 'vulnerabilities' %> identified:
|
||||
|
|
||||
<% vulns.each_with_index do |vulnerability, index| -%>
|
||||
<%= render('@vulnerability', v: vulnerability) -%>
|
||||
<% if index != vulns_size -1 -%>
|
||||
|
|
||||
<% end -%>
|
||||
<% end -%>
|
||||
<% end -%>
|
||||
1
app/views/cli/info.erb
Normal file
1
app/views/cli/info.erb
Normal file
@@ -0,0 +1 @@
|
||||
<%= info_icon %> <%= @msg %>
|
||||
6
app/views/cli/main_theme/theme.erb
Normal file
6
app/views/cli/main_theme/theme.erb
Normal file
@@ -0,0 +1,6 @@
|
||||
<% if @theme -%>
|
||||
<%= info_icon %> WordPress theme in use: <%= @theme %>
|
||||
<%= render('@theme', theme: @theme, show_parents: true) -%>
|
||||
<% else -%>
|
||||
<%= notice_icon %> The main theme could not be detected.
|
||||
<% end %>
|
||||
1
app/views/cli/notice.erb
Normal file
1
app/views/cli/notice.erb
Normal file
@@ -0,0 +1 @@
|
||||
<%= notice_icon %> <%= @msg %>
|
||||
9
app/views/cli/password_attack/users.erb
Normal file
9
app/views/cli/password_attack/users.erb
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
<% if @users.empty? -%>
|
||||
<%= notice_icon %> No Valid Passwords Found.
|
||||
<% else -%>
|
||||
<%= notice_icon %> Valid Combinations Found:
|
||||
<% @users.each do |user| -%>
|
||||
| Username: <%= user.username %>, Password: <%= user.password %>
|
||||
<% end -%>
|
||||
<% end %>
|
||||
49
app/views/cli/theme.erb
Normal file
49
app/views/cli/theme.erb
Normal file
@@ -0,0 +1,49 @@
|
||||
<%= render('@wp_item', wp_item: @theme) -%>
|
||||
| Style URL: <%= @theme.style_url %>
|
||||
<% if @theme.style_name -%>
|
||||
| Style Name: <%= @theme.style_name %>
|
||||
<% end -%>
|
||||
<% if @theme.style_uri -%>
|
||||
| Style URI: <%= @theme.style_uri %>
|
||||
<% end -%>
|
||||
<% if @theme.description -%>
|
||||
| Description: <%= @verbose ? @theme.description : @theme.description[0, 100] + '...' %>
|
||||
<% end -%>
|
||||
<% if @theme.author -%>
|
||||
| Author: <%= @theme.author %>
|
||||
<% end -%>
|
||||
<% if @theme.author_uri -%>
|
||||
| Author URI: <%= @theme.author_uri %>
|
||||
<% end -%>
|
||||
<% if @theme.template && @verbose -%>
|
||||
| Template: <%= @theme.template %>
|
||||
<% end -%>
|
||||
<% if @theme.license && @verbose -%>
|
||||
| License: <%= @theme.license %>
|
||||
<% end -%>
|
||||
<% if @theme.license_uri && @verbose -%>
|
||||
| License URI: <%= @theme.license_uri %>
|
||||
<% end -%>
|
||||
<% if @theme.tags && @verbose -%>
|
||||
| Tags: <%= @theme.tags %>
|
||||
<% end -%>
|
||||
<% if @theme.text_domain && @verbose -%>
|
||||
| Text Domain: <%= @theme.text_domain %>
|
||||
<% end -%>
|
||||
|
|
||||
<%= render('@finding', item: @theme) -%>
|
||||
|
|
||||
<% if @theme.version -%>
|
||||
| Version: <%= @theme.version %> (<%= @theme.version.confidence %>% confidence)
|
||||
<%= render('@finding', item: @theme.version) -%>
|
||||
<% else -%>
|
||||
| The version could not be determined.
|
||||
<% end -%>
|
||||
<% if @show_parents && !(parents = @theme.parent_themes).empty? -%>
|
||||
|
|
||||
| Parent Theme(s):
|
||||
<% parents.each do |parent| -%>
|
||||
|
|
||||
<%= render('@theme', theme: parent, show_parents: false) -%>
|
||||
<% end -%>
|
||||
<% end -%>
|
||||
3
app/views/cli/usage.erb
Normal file
3
app/views/cli/usage.erb
Normal file
@@ -0,0 +1,3 @@
|
||||
<%= @msg %>
|
||||
|
||||
Please use --help/-h for the list of available options.
|
||||
14
app/views/cli/vulnerability.erb
Normal file
14
app/views/cli/vulnerability.erb
Normal file
@@ -0,0 +1,14 @@
|
||||
| <%= critical_icon %> Title: <%= @v.title %>
|
||||
<% if @v.fixed_in -%>
|
||||
| Fixed in: <%= @v.fixed_in %>
|
||||
<% end -%>
|
||||
<% unless (references = @v.references_urls).empty? -%>
|
||||
<% if references.size == 1 -%>
|
||||
| Reference: <%= references.first %>
|
||||
<% else -%>
|
||||
| References:
|
||||
<% references.each do |ref| -%>
|
||||
| - <%= ref %>
|
||||
<% end -%>
|
||||
<% end -%>
|
||||
<% end -%>
|
||||
22
app/views/cli/wp_item.erb
Normal file
22
app/views/cli/wp_item.erb
Normal file
@@ -0,0 +1,22 @@
|
||||
| Location: <%= @wp_item.url %>
|
||||
<% if @wp_item.latest_version && !@wp_item.outdated? -%>
|
||||
| Latest Version: <%= @wp_item.latest_version %><% if @wp_item.version %> (up to date)<% end %>
|
||||
<% end -%>
|
||||
<% if @wp_item.last_updated -%>
|
||||
| Last Updated: <%= @wp_item.last_updated %>
|
||||
<% end -%>
|
||||
<% if @wp_item.readme_url -%>
|
||||
| Readme: <%= @wp_item.readme_url %>
|
||||
<% end -%>
|
||||
<% if @wp_item.changelog_url -%>
|
||||
| Changelog: <%= @wp_item.changelog_url %>
|
||||
<% end -%>
|
||||
<% if @wp_item.latest_version && @wp_item.outdated? -%>
|
||||
| <%= warning_icon %> The version is out of date, the latest version is <%= @wp_item.latest_version %>
|
||||
<% end -%>
|
||||
<% if @wp_item.directory_listing? -%>
|
||||
| <%= critical_icon %> Directory listing is enabled
|
||||
<% end -%>
|
||||
<% if @wp_item.error_log? -%>
|
||||
| <%= critical_icon %> An error log file has been found: <%= @wp_item.url('error_log') %>
|
||||
<% end -%>
|
||||
6
app/views/cli/wp_version/version.erb
Normal file
6
app/views/cli/wp_version/version.erb
Normal file
@@ -0,0 +1,6 @@
|
||||
<% if @version -%>
|
||||
<%= info_icon %> WordPress version <%= @version.number %> identified.
|
||||
<%= render('@finding', item: @version) -%>
|
||||
<% else -%>
|
||||
<%= notice_icon %> The WordPress version could not be detected.
|
||||
<% end %>
|
||||
Reference in New Issue
Block a user