132 lines
3.9 KiB
Ruby
132 lines
3.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
describe WPScan::Finders::DbExports::KnownLocations do
|
|
subject(:finder) { described_class.new(target) }
|
|
let(:target) { WPScan::Target.new(url) }
|
|
let(:url) { 'http://ex.lo/aa/' }
|
|
let(:fixtures) { FINDERS_FIXTURES.join('db_exports') }
|
|
let(:opts) { { list: WPScan::DB_DIR.join('db_exports.txt').to_s } }
|
|
|
|
describe '#potential_urls' do
|
|
before do
|
|
allow(target).to receive(:sub_dir).and_return(false)
|
|
end
|
|
|
|
it 'replaces {domain_name} by its value' do
|
|
expect(finder.potential_urls(opts).keys).to eql %w[
|
|
http://ex.lo/aa/ex.sql
|
|
http://ex.lo/aa/wordpress.sql
|
|
http://ex.lo/aa/backup/ex.zip
|
|
http://ex.lo/aa/backup/mysql.sql
|
|
http://ex.lo/aa/backups/ex.sql.gz
|
|
http://ex.lo/aa/backups/db_backup.sql
|
|
]
|
|
end
|
|
|
|
%w[dev poc www].each do |sub_domain|
|
|
context "when #{sub_domain} sub-domain" do
|
|
let(:url) { "https://#{sub_domain}.domain.tld" }
|
|
|
|
it 'replaces {domain_name} by its correct value' do
|
|
expect(finder.potential_urls(opts).keys).to include "#{url}/domain.sql"
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'when multi-level tlds' do
|
|
let(:url) { 'https://something.com.tr' }
|
|
|
|
it 'replaces {domain_name} by its correct value' do
|
|
expect(finder.potential_urls(opts).keys).to include 'https://something.com.tr/something.sql'
|
|
end
|
|
end
|
|
|
|
context 'when multi-level tlds and sub-domain' do
|
|
let(:url) { 'https://dev.something.com.tr' }
|
|
|
|
it 'replaces {domain_name} by its correct value' do
|
|
expect(finder.potential_urls(opts).keys).to include 'https://dev.something.com.tr/something.sql'
|
|
end
|
|
end
|
|
|
|
context 'when some weird stuff' do
|
|
let(:url) { 'https://098f6bcd4621d373cade4e832627b4f6.aa-bb-ccc-dd.domain-test.com' }
|
|
|
|
it 'replaces {domain_name} by its correct value' do
|
|
expect(finder.potential_urls(opts).keys).to include "#{url}/domain-test.sql"
|
|
end
|
|
end
|
|
|
|
context 'when a non standard URL' do
|
|
let(:url) { 'http://dc-2' }
|
|
|
|
it 'replaces {domain_name} by its correct value' do
|
|
expect(finder.potential_urls(opts).keys).to include "#{url}/dc-2.sql"
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '#aggressive' do
|
|
before do
|
|
allow(target).to receive(:sub_dir).and_return(false)
|
|
expect(target).to receive(:head_or_get_params).and_return(method: :head)
|
|
|
|
finder.potential_urls(opts).each_key do |url|
|
|
stub_request(:head, url).to_return(status: 404)
|
|
end
|
|
end
|
|
|
|
context 'when all files are 404s' do
|
|
it 'returns an empty array' do
|
|
expect(finder.aggressive(opts)).to eql []
|
|
end
|
|
end
|
|
|
|
context 'when a zip returns a 200' do
|
|
xit
|
|
end
|
|
|
|
context 'when some files exist' do
|
|
let(:found_files) { %w[ex.sql backups/db_backup.sql] }
|
|
let(:db_export) { File.read(fixtures.join('dump.sql')) }
|
|
|
|
before do
|
|
found_files.each do |file|
|
|
stub_request(:head, "#{url}#{file}").to_return(status: 200)
|
|
|
|
stub_request(:get, "#{url}#{file}")
|
|
.with(headers: { 'Range' => 'bytes=0-3000' })
|
|
.to_return(body: db_export)
|
|
end
|
|
|
|
expect(target).to receive(:homepage_or_404?).twice.and_return(false)
|
|
end
|
|
|
|
context 'when matching the pattern' do
|
|
it 'returns the expected Array<DbExport>' do
|
|
expected = []
|
|
|
|
found_files.each do |file|
|
|
url = "#{target.url}#{file}"
|
|
expected << WPScan::Model::DbExport.new(
|
|
url,
|
|
confidence: 100,
|
|
found_by: described_class::DIRECT_ACCESS
|
|
)
|
|
end
|
|
|
|
expect(finder.aggressive(opts)).to eql expected
|
|
end
|
|
end
|
|
|
|
context 'when not matching the pattern' do
|
|
let(:db_export) { '' }
|
|
|
|
it 'returns an empty array' do
|
|
expect(finder.aggressive(opts)).to eql []
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|