Class: WPScan::Model::WPCron

Inherits:
InterestingFinding show all
Defined in:
app/models/interesting_finding.rb

Instance Method Summary collapse

Methods included from References

#references_urls, #wpvulndb_ids, #wpvulndb_url, #wpvulndb_urls

Instance Method Details

#referencesHash

Returns:

  • (Hash)


126
127
128
129
130
131
132
133
# File 'app/models/interesting_finding.rb', line 126

def references
  @references ||= {
    url: [
      'https://www.iplocation.net/defend-wordpress-from-ddos',
      'https://github.com/wpscanteam/wpscan/issues/1299'
    ]
  }
end

#to_sString

Returns:

  • (String)


121
122
123
# File 'app/models/interesting_finding.rb', line 121

def to_s
  @to_s ||= "The external WP-Cron seems to be enabled: #{url}"
end