Reduces confidence of wp-cron detection

This commit is contained in:
erwanlr
2019-03-10 08:02:51 +00:00
parent fee3671e32
commit 23b22f71b8
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ module WPScan
WPScan::WPCron.new(
wp_cron_url,
confidence: 100,
confidence: 60,
found_by: DIRECT_ACCESS,
references: {
url: [

View File

@@ -15,7 +15,7 @@ describe WPScan::Finders::InterestingFindings::WPCron do
it 'returns the InterestingFinding' do
expect(finder.aggressive).to eql WPScan::WPCron.new(
finder.wp_cron_url,
confidence: 100,
confidence: 60,
found_by: described_class::DIRECT_ACCESS
)
end