Sha256: 6634cd6af4bb1b1064ead83421e6333cd67656b5d073a1f2df66053ee5540ab3
Contents?: true
Size: 1.9 KB
Versions: 4
Compression:
Stored size: 1.9 KB
Contents
=begin Copyright 2010-2012 Tasos Laskos <tasos.laskos@gmail.com> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =end # # Looks for sensitive common files on the server. # # @author Tasos "Zapotek" Laskos <tasos.laskos@gmail.com> # # @version 0.2.2 # class Arachni::Modules::CommonFiles < Arachni::Module::Base def self.filenames @filenames ||= read_file( 'filenames.txt' ) end def run path = get_path( page.url ) return if audited?( path ) self.class.filenames.each { |file| log_remote_file_if_exists( path + file ) } audited( path ) end def self.info { name: 'CommonFiles', description: %q{Tries to find common sensitive files on the server.}, elements: [ Element::PATH ], author: 'Tasos "Zapotek" Laskos <tasos.laskos@gmail.com> ', version: '0.2.2', targets: %w(Generic), references: { 'Apache.org' => 'http://httpd.apache.org/docs/2.0/mod/mod_access.html' }, issue: { name: %q{A common sensitive file exists on the server.}, tags: %w(common path file discovery), severity: Severity::LOW, remedy_guidance: %q{Do not expose file and directory information to the user.} } } end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
arachni-0.4.1.3 | modules/recon/common_files.rb |
arachni-0.4.1.2 | modules/recon/common_files.rb |
arachni-0.4.1.1 | modules/recon/common_files.rb |
arachni-0.4.1 | modules/recon/common_files.rb |