language
stringlengths
0
24
filename
stringlengths
9
214
code
stringlengths
99
9.93M
C/C++
wireshark/wsutil/wmem/wmem_allocator_simple.h
/** @file * * Definitions for the Wireshark Memory Manager Simple Allocator * Copyright 2012, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __WMEM_ALLOCATOR...
C
wireshark/wsutil/wmem/wmem_allocator_strict.c
/* wmem_allocator_strict.c * Wireshark Memory Manager Strict Allocator * Copyright 2012, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "config.h" #include ...
C/C++
wireshark/wsutil/wmem/wmem_allocator_strict.h
/** @file * * Definitions for the Wireshark Memory Manager Strict Allocator * Copyright 2012, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __WMEM_ALLOCATOR...
C
wireshark/wsutil/wmem/wmem_array.c
/* wmem_array.c * Wireshark Memory Manager Array * Copyright 2013, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "config.h" #include <string.h> #include <s...
C/C++
wireshark/wsutil/wmem/wmem_array.h
/** @file * Definitions for the Wireshark Memory Manager Array * Copyright 2013, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __WMEM_ARRAY_H__ #define __WME...
C
wireshark/wsutil/wmem/wmem_core.c
/* wmem_core.c * Wireshark Memory Manager Core * Copyright 2012, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #include <stdlib.h> #include <string.h> #include <glib...
C/C++
wireshark/wsutil/wmem/wmem_core.h
/** @file * Definitions for the Wireshark Memory Manager Core * Copyright 2012, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __WMEM_CORE_H__ #define __WMEM_...
C
wireshark/wsutil/wmem/wmem_interval_tree.c
/* wmem_interval_tree.c * Implements an augmented interval tree * Based on the red-black tree implementation in epan/wmem.* * Copyright 2015, Matthieu coudron <matthieu.coudron@lip6.fr> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-Lice...
C/C++
wireshark/wsutil/wmem/wmem_interval_tree.h
/** @file * Definitions for the Wireshark Memory Manager Red-Black Tree * Based on the red-black tree implementation in epan/emem.* * Copyright 2015, Matthieu coudron <matthieu.coudron@lip6.fr> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * S...
C
wireshark/wsutil/wmem/wmem_list.c
/* wmem_list.c * Wireshark Memory Manager Doubly-Linked List * Copyright 2012, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #include <string.h> #include <glib.h> #...
C/C++
wireshark/wsutil/wmem/wmem_list.h
/** @file * Definitions for the Wireshark Memory Manager Doubly-Linked List * Copyright 2012, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __WMEM_LIST_H__ #...
C
wireshark/wsutil/wmem/wmem_map.c
/* wmem_map.c * Wireshark Memory Manager Hash Map * Copyright 2014, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "config.h" #include <glib.h> #include "wm...
C/C++
wireshark/wsutil/wmem/wmem_map.h
/** @file * Definitions for the Wireshark Memory Manager Hash Map * Copyright 2014, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __WMEM_MAP_H__ #define __WM...
C/C++
wireshark/wsutil/wmem/wmem_map_int.h
/** @file * * Definitions for the Wireshark Memory Manager Hash Map Internals * Copyright 2014, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __WMEM_MAP_INT...
C
wireshark/wsutil/wmem/wmem_miscutl.c
/* wmem_miscutl.c * Wireshark Memory Manager Misc Utilities * Copyright 2013, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #include <string.h> #include <glib.h> #i...
C/C++
wireshark/wsutil/wmem/wmem_miscutl.h
/** @file * Definitions for the Wireshark Memory Manager Misc Utilities * Copyright 2013, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __WMEM_MISCUTL_H__ #d...
C
wireshark/wsutil/wmem/wmem_multimap.c
/* wmem_multimap.c * Wireshark Memory Manager Hash Multimap * Copyright 2021, John Thacker <johnthacker@gmail.com> * Copyright 2014, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0...
C/C++
wireshark/wsutil/wmem/wmem_multimap.h
/** @file * * Definitions for the Wireshark Memory Manager Hash Multimap * Copyright 2021, John Thacker <johnthacker@gmail.com> * Copyright 2014, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Ident...
C/C++
wireshark/wsutil/wmem/wmem_queue.h
/** @file * * Definitions for the Wireshark Memory Manager Queue * Copyright 2013, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __WMEM_QUEUE_H__ #define __...
C
wireshark/wsutil/wmem/wmem_stack.c
/* wmem_stack.c * Wireshark Memory Manager Stack * Copyright 2012, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #include <string.h> #include <glib.h> #include "wme...
C/C++
wireshark/wsutil/wmem/wmem_stack.h
/** @file * Definitions for the Wireshark Memory Manager Stack * Copyright 2012, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __WMEM_STACK_H__ #define __WME...
C
wireshark/wsutil/wmem/wmem_strbuf.c
/* wmem_strbuf.c * Wireshark Memory Manager String Buffer * Copyright 2012, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "config.h" #include "wmem_strbuf.h...
C/C++
wireshark/wsutil/wmem/wmem_strbuf.h
/** @file * Definitions for the Wireshark Memory Manager String Buffer * Copyright 2012, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __WMEM_STRBUF_H__ #def...
C
wireshark/wsutil/wmem/wmem_strutl.c
/* wmem_strutl.c * Wireshark Memory Manager String Utilities * Copyright 2012, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #define _GNU_SOURCE #include "config.h" #...
C/C++
wireshark/wsutil/wmem/wmem_strutl.h
/** @file * Definitions for the Wireshark Memory Manager String Utilities * Copyright 2012, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __WMEM_STRUTL_H__ #...
C
wireshark/wsutil/wmem/wmem_test.c
/* wmem_test.c * Wireshark Memory Manager Tests * Copyright 2012, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "config.h" #include <stdio.h> #include <gli...
C/C++
wireshark/wsutil/wmem/wmem_tree-int.h
/** @file * * Definitions for the Wireshark Memory Manager Red-Black Tree * Copyright 2013, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __WMEM_TREE_INT_H_...
C
wireshark/wsutil/wmem/wmem_tree.c
/* wmem_tree.c * Wireshark Memory Manager Red-Black Tree * Based on the red-black tree implementation in epan/emem.* * Copyright 2013, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2...
C/C++
wireshark/wsutil/wmem/wmem_tree.h
/** @file * Definitions for the Wireshark Memory Manager Red-Black Tree * Based on the red-black tree implementation in epan/emem.* * Copyright 2013, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Id...
C
wireshark/wsutil/wmem/wmem_user_cb.c
/* wmem_user_cb.c * Wireshark Memory Manager User Callbacks * Copyright 2012, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "wmem_core.h" #include "wmem_all...
C/C++
wireshark/wsutil/wmem/wmem_user_cb.h
/** @file * Definitions for the Wireshark Memory Manager User Callbacks * Copyright 2012, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __WMEM_USER_CB_H__ #d...
C/C++
wireshark/wsutil/wmem/wmem_user_cb_int.h
/** @file * * Definitions for the Wireshark Memory Manager User Callback Internals * Copyright 2012, Evan Huus <eapache@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __WMEM_US...
YAML
wpscan/.codeclimate.yml
version: "2" # https://docs.codeclimate.com/docs/default-analysis-configuration#sample-codeclimateyml checks: method-complexity: enabled: true config: threshold: 15
wpscan/.dockerignore
git/ bundle/ .idea/ .yardoc/ cache/ coverage/ spec/ .* **/*.md *.md !README.md Dockerfile **/*.orig *.orig bin/wpscan-* .wpscan/ .github/
wpscan/.gitignore
*.gem *.rbc .bundle .config coverage pkg rdoc Gemfile.lock # YARD artifacts .yardoc _yardoc doc/ .wpscan/ .ash_history .DS_Store .DS_Store? .idea/ # Old files from v2 cache/ data/ # Profiling reports bin/memprof*.report
YAML
wpscan/.rubocop.yml
require: rubocop-performance AllCops: NewCops: enable SuggestExtensions: false TargetRubyVersion: 2.5 Exclude: - '*.gemspec' - 'vendor/**/*' Layout/LineLength: Max: 120 Lint/ConstantDefinitionInBlock: Enabled: false Lint/MissingSuper: Enabled: false Lint/UriEscapeUnescape: Enabled: false Metrics/Abc...
wpscan/.simplecov
# frozen_string_literal: true if ENV['GITHUB_ACTION'] require 'simplecov-lcov' SimpleCov::Formatter::LcovFormatter.config do |c| c.single_report_path = 'coverage/lcov.info' c.report_with_single_file = true end SimpleCov.formatter = SimpleCov::Formatter::LcovFormatter end SimpleCov.start do enable_...
wpscan/Dockerfile
FROM ruby:3.0.2-alpine AS builder LABEL maintainer="WPScan Team <contact@wpscan.com>" RUN echo "install: --no-document --no-post-install-message\nupdate: --no-document --no-post-install-message" > /etc/gemrc COPY . /wpscan RUN apk add --no-cache git libcurl ruby-dev libffi-dev make gcc musl-dev zlib-dev procps sqlit...
wpscan/Gemfile
# frozen_string_literal: true source 'https://rubygems.org' gemspec # gem 'cms_scanner', branch: 'xxx', git: 'https://github.com/wpscanteam/CMSScanner.git'
wpscan/LICENSE
WPScan Public Source License The WPScan software (henceforth referred to simply as "WPScan") is dual-licensed - Copyright 2011-2019 WPScan Team. Cases that include commercialization of WPScan require a commercial, non-free license. Otherwise, WPScan can be used without charge under the terms set out below. 1. Defini...
wpscan/Rakefile
# rubocop:disable all require 'bundler/gem_tasks' exec = [] begin require 'rubocop/rake_task' RuboCop::RakeTask.new exec << :rubocop rescue LoadError end begin require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) { |t| t.rspec_opts = %w{--tag ~slow} } exec << :spec rescue LoadError end #...
Markdown
wpscan/README.md
<p align="center"> <a href="https://wpscan.com/"> <img src="https://raw.githubusercontent.com/wpscanteam/wpscan/gh-pages/images/wpscan_logo.png" alt="WPScan logo"> </a> </p> <h3 align="center">WPScan</h3> <p align="center"> WordPress Security Scanner <br> <br> <a href="https://wpscan.com/" title="home...
wpscan/wpscan.gemspec
lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'wpscan/version' Gem::Specification.new do |s| s.name = 'wpscan' s.version = WPScan::VERSION s.platform = Gem::Platform::RUBY s.required_ruby_version = '>= 2.5...
Markdown
wpscan/.github/CONTRIBUTING.md
# Contributing to WPScan ## Licensing By submitting code contributions to the WPScan development team via Github Pull Requests, or any other method, it is understood that the contributor is offering the WPScan company (company number 83421476900012), which is registered in France, the unlimited, non-exclusive right ...
YAML
wpscan/.github/dependabot.yml
# To get started with Dependabot version updates, you'll need to specify which # package ecosystems to update and where the package manifests are located. # Please see the documentation for all configuration options: # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-update...
Markdown
wpscan/.github/PULL_REQUEST_TEMPLATE.md
## Licensing By submitting code contributions to the WPScan development team via Github Pull Requests, or any other method, it is understood that the contributor is offering the WPScan company (company number 83421476900012), which is registered in France, the unlimited, non-exclusive right to reuse, modify, and reli...
Markdown
wpscan/.github/ISSUE_TEMPLATE/bug_report.md
--- name: Bug report about: Create a report to help us improve title: '' labels: '' assignees: '' --- Before submitting an issue, please make sure you fully read any potential error messages output and did some research on your own. ### Subject of the issue Describe your issue here. ### Your environment * Version o...
Markdown
wpscan/.github/ISSUE_TEMPLATE/feature_request.md
--- name: Feature request about: Suggest an idea for this project title: '' labels: '' assignees: '' --- **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd like** A clear and con...
Markdown
wpscan/.github/ISSUE_TEMPLATE/other-issue.md
--- name: Other Issue about: Create a report which is not a related to a Bug or Feature title: '' labels: '' assignees: '' --- Before submitting an issue, please make sure you fully read any potential error messages output and did some research on your own.
YAML
wpscan/.github/workflows/build.yml
name: Build on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: ruby: [2.7, '3.0', 3.1] steps: - name: Checkout code uses: actions/checkout@v3 - name: Set up Ruby ${{ matrix.ruby }} uses: ruby/setup-ruby@v1 with: ruby-version...
YAML
wpscan/.github/workflows/docker.yml
name: Build Docker Images on: push: branches: - master release: types: [published] schedule: - cron: "0 7 * * *" jobs: images: runs-on: ubuntu-latest steps: - name: checkout sources uses: actions/checkout@v3 - name: Set tag to latest if: (github.event_na...
YAML
wpscan/.github/workflows/gempush.yml
name: Ruby Gem on: release: types: [published] jobs: build: name: Build + Publish runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Set up Ruby 2.6 uses: ruby/setup-ruby@v1 with: ruby-version: 2.6 #- name: Publish to GPR # run: | # mkdi...
Ruby
wpscan/app/app.rb
# frozen_string_literal: true require_relative 'models' require_relative 'finders' require_relative 'controllers'
Ruby
wpscan/app/controllers.rb
# frozen_string_literal: true require_relative 'controllers/core' require_relative 'controllers/vuln_api' require_relative 'controllers/custom_directories' require_relative 'controllers/wp_version' require_relative 'controllers/main_theme' require_relative 'controllers/enumeration' require_relative 'controllers/passwo...
Ruby
wpscan/app/finders.rb
# frozen_string_literal: true require_relative 'finders/interesting_findings' require_relative 'finders/wp_items' require_relative 'finders/wp_version' require_relative 'finders/main_theme' require_relative 'finders/timthumb_version' require_relative 'finders/timthumbs' require_relative 'finders/config_backups' requir...
Ruby
wpscan/app/models.rb
# frozen_string_literal: true module WPScan module Model include CMSScanner::Model end end require_relative 'models/interesting_finding' require_relative 'models/wp_version' require_relative 'models/xml_rpc' require_relative 'models/wp_item' require_relative 'models/timthumb' require_relative 'models/media' r...
Ruby
wpscan/app/controllers/aliases.rb
# frozen_string_literal: true module WPScan module Controller # Controller to add the aliases in the CLI class Aliases < CMSScanner::Controller::Base def cli_options [ OptAlias.new(['--stealthy'], alias_for: '--random-user-agent --detection-mode passive --plugin...
Ruby
wpscan/app/controllers/core.rb
# frozen_string_literal: true module WPScan module Controller # Specific Core controller to include WordPress checks class Core < CMSScanner::Controller::Core # @return [ Array<OptParseValidator::Opt> ] def cli_options [OptURL.new(['--url URL', 'The URL of the blog to scan'], ...
Ruby
wpscan/app/controllers/custom_directories.rb
# frozen_string_literal: true module WPScan module Controller # Controller to ensure that the wp-content and wp-plugins # directories are found class CustomDirectories < CMSScanner::Controller::Base def cli_options [ OptString.new(['--wp-content-dir DIR', ...
Ruby
wpscan/app/controllers/enumeration.rb
# frozen_string_literal: true require_relative 'enumeration/cli_options' require_relative 'enumeration/enum_methods' module WPScan module Controller # Enumeration Controller class Enumeration < CMSScanner::Controller::Base def run enum = ParsedCli.enumerate || {} enum_plugins if enum_...
Ruby
wpscan/app/controllers/main_theme.rb
# frozen_string_literal: true module WPScan module Controller # Main Theme Controller class MainTheme < CMSScanner::Controller::Base def cli_options [ OptChoice.new( ['--main-theme-detection MODE', 'Use the supplied mode for the Main theme detection, instead o...
Ruby
wpscan/app/controllers/password_attack.rb
# frozen_string_literal: true module WPScan module Controller # Password Attack Controller class PasswordAttack < CMSScanner::Controller::Base def cli_options [ OptFilePath.new( ['--passwords FILE-PATH', '-P', 'List of passwords to use during the password atta...
Ruby
wpscan/app/controllers/vuln_api.rb
# frozen_string_literal: true module WPScan module Controller # Controller to handle the API token class VulnApi < CMSScanner::Controller::Base ENV_KEY = 'WPSCAN_API_TOKEN' def cli_options [ OptString.new( ['--api-token TOKEN', 'The WPScan API Token to ...
Ruby
wpscan/app/controllers/wp_version.rb
# frozen_string_literal: true module WPScan module Controller # Wp Version Controller class WpVersion < CMSScanner::Controller::Base def cli_options [ OptBoolean.new(['--wp-version-all', 'Check all the version locations'], advanced: true), OptChoice.new( ['--wp-v...
Ruby
wpscan/app/controllers/enumeration/cli_options.rb
# frozen_string_literal: true module WPScan module Controller # Enumeration CLI Options class Enumeration < CMSScanner::Controller::Base def cli_options cli_enum_choices + cli_plugins_opts + cli_themes_opts + cli_timthumbs_opts + cli_config_backups_opts + cli_db_exports_opts + ...
Ruby
wpscan/app/controllers/enumeration/enum_methods.rb
# frozen_string_literal: true module WPScan module Controller # Enumeration Methods class Enumeration < CMSScanner::Controller::Base # @param [ String ] type (plugins or themes) # @param [ Symbol ] detection_mode # # @return [ String ] The related enumration message depending on the P...
Ruby
wpscan/app/finders/config_backups.rb
# frozen_string_literal: true require_relative 'config_backups/known_filenames' module WPScan module Finders module ConfigBackups # Config Backup Finder class Base include CMSScanner::Finders::SameTypeFinder # @param [ WPScan::Target ] target def initialize(target) ...
Ruby
wpscan/app/finders/db_exports.rb
# frozen_string_literal: true require_relative 'db_exports/known_locations' module WPScan module Finders module DbExports # DB Exports Finder class Base include CMSScanner::Finders::SameTypeFinder # @param [ WPScan::Target ] target def initialize(target) finders <<...
Ruby
wpscan/app/finders/interesting_findings.rb
# frozen_string_literal: true require_relative 'interesting_findings/readme' require_relative 'interesting_findings/wp_cron' require_relative 'interesting_findings/multisite' require_relative 'interesting_findings/debug_log' require_relative 'interesting_findings/backup_db' require_relative 'interesting_findings/mu_pl...
Ruby
wpscan/app/finders/main_theme.rb
# frozen_string_literal: true require_relative 'main_theme/css_style_in_homepage' require_relative 'main_theme/css_style_in_404_page' require_relative 'main_theme/woo_framework_meta_generator' require_relative 'main_theme/urls_in_homepage' require_relative 'main_theme/urls_in_404_page' module WPScan module Finders ...
Ruby
wpscan/app/finders/medias.rb
# frozen_string_literal: true require_relative 'medias/attachment_brute_forcing' module WPScan module Finders module Medias # Medias Finder class Base include CMSScanner::Finders::SameTypeFinder # @param [ WPScan::Target ] target def initialize(target) finders << M...
Ruby
wpscan/app/finders/passwords.rb
# frozen_string_literal: true require_relative 'passwords/wp_login' require_relative 'passwords/xml_rpc' require_relative 'passwords/xml_rpc_multicall'
Ruby
wpscan/app/finders/plugins.rb
# frozen_string_literal: true require_relative 'plugins/urls_in_homepage' require_relative 'plugins/urls_in_404_page' require_relative 'plugins/known_locations' # From the DynamicFinders require_relative 'plugins/comment' require_relative 'plugins/xpath' require_relative 'plugins/header_pattern' require_relative 'plug...
Ruby
wpscan/app/finders/plugin_version.rb
# frozen_string_literal: true require_relative 'plugin_version/readme' module WPScan module Finders module PluginVersion # Plugin Version Finder class Base include CMSScanner::Finders::UniqueFinder # @param [ Model::Plugin ] plugin def initialize(plugin) finders <<...
Ruby
wpscan/app/finders/themes.rb
# frozen_string_literal: true require_relative 'themes/urls_in_homepage' require_relative 'themes/urls_in_404_page' require_relative 'themes/known_locations' module WPScan module Finders module Themes # Themes Finder class Base include CMSScanner::Finders::SameTypeFinder # @param [ ...
Ruby
wpscan/app/finders/theme_version.rb
# frozen_string_literal: true require_relative 'theme_version/style' require_relative 'theme_version/woo_framework_meta_generator' module WPScan module Finders module ThemeVersion # Theme Version Finder class Base include CMSScanner::Finders::UniqueFinder # @param [ Model::Theme ] t...
Ruby
wpscan/app/finders/timthumbs.rb
# frozen_string_literal: true require_relative 'timthumbs/known_locations' module WPScan module Finders module Timthumbs # Timthumbs Finder class Base include CMSScanner::Finders::SameTypeFinder # @param [ WPScan::Target ] target def initialize(target) finders << T...
Ruby
wpscan/app/finders/timthumb_version.rb
# frozen_string_literal: true require_relative 'timthumb_version/bad_request' module WPScan module Finders module TimthumbVersion # Timthumb Version Finder class Base include CMSScanner::Finders::UniqueFinder # @param [ Model::Timthumb ] target def initialize(target) ...
Ruby
wpscan/app/finders/users.rb
# frozen_string_literal: true require_relative 'users/author_posts' require_relative 'users/wp_json_api' require_relative 'users/oembed_api' require_relative 'users/rss_generator' require_relative 'users/author_id_brute_forcing' require_relative 'users/login_error_messages' require_relative 'users/author_sitemap' requ...
Ruby
wpscan/app/finders/wp_version.rb
# frozen_string_literal: true require_relative 'wp_version/rss_generator' require_relative 'wp_version/atom_generator' require_relative 'wp_version/rdf_generator' require_relative 'wp_version/readme' require_relative 'wp_version/unique_fingerprinting' module WPScan module Finders # Specific Finders container to...
Ruby
wpscan/app/finders/config_backups/known_filenames.rb
# frozen_string_literal: true module WPScan module Finders module ConfigBackups # Config Backup finder class KnownFilenames < CMSScanner::Finders::Finder include CMSScanner::Finders::Finder::Enumerator # @param [ Hash ] opts # @option opts [ String ] :list # @option o...
Ruby
wpscan/app/finders/db_exports/known_locations.rb
# frozen_string_literal: true module WPScan module Finders module DbExports # DB Exports finder class KnownLocations < CMSScanner::Finders::Finder include CMSScanner::Finders::Finder::Enumerator SQL_PATTERN = /(?:DROP|(?:UN)?LOCK|CREATE|ALTER) (?:TABLE|DATABASE)|INSERT INTO/.freeze ...
Ruby
wpscan/app/finders/interesting_findings/backup_db.rb
# frozen_string_literal: true module WPScan module Finders module InterestingFindings # BackupDB finder class BackupDB < CMSScanner::Finders::Finder # @return [ InterestingFinding ] def aggressive(_opts = {}) path = 'wp-content/backup-db/' res = target.head_and_ge...
Ruby
wpscan/app/finders/interesting_findings/debug_log.rb
# frozen_string_literal: true module WPScan module Finders module InterestingFindings # debug.log finder class DebugLog < CMSScanner::Finders::Finder # @return [ InterestingFinding ] def aggressive(_opts = {}) path = 'wp-content/debug.log' return unless target.deb...
Ruby
wpscan/app/finders/interesting_findings/duplicator_installer_log.rb
# frozen_string_literal: true module WPScan module Finders module InterestingFindings # DuplicatorInstallerLog finder class DuplicatorInstallerLog < CMSScanner::Finders::Finder # @return [ InterestingFinding ] def aggressive(_opts = {}) path = 'installer-log.txt' ...
Ruby
wpscan/app/finders/interesting_findings/emergency_pwd_reset_script.rb
# frozen_string_literal: true module WPScan module Finders module InterestingFindings # Emergency Password Reset Script finder class EmergencyPwdResetScript < CMSScanner::Finders::Finder # @return [ InterestingFinding ] def aggressive(_opts = {}) path = 'emergency.php' ...
Ruby
wpscan/app/finders/interesting_findings/full_path_disclosure.rb
# frozen_string_literal: true module WPScan module Finders module InterestingFindings # Full Path Disclosure finder class FullPathDisclosure < CMSScanner::Finders::Finder # @return [ InterestingFinding ] def aggressive(_opts = {}) path = 'wp-includes/rss-functions.php...
Ruby
wpscan/app/finders/interesting_findings/multisite.rb
# frozen_string_literal: true module WPScan module Finders module InterestingFindings # Multisite checker class Multisite < CMSScanner::Finders::Finder # @return [ InterestingFinding ] def aggressive(_opts = {}) url = target.url('wp-signup.php') res = Bro...
Ruby
wpscan/app/finders/interesting_findings/mu_plugins.rb
# frozen_string_literal: true module WPScan module Finders module InterestingFindings # Must Use Plugins Directory checker class MuPlugins < CMSScanner::Finders::Finder # @return [ InterestingFinding ] def passive(_opts = {}) pattern = %r{#{target.content_dir}/mu-plugins/}i ...
Ruby
wpscan/app/finders/interesting_findings/php_disabled.rb
# frozen_string_literal: true module WPScan module Finders module InterestingFindings # See https://github.com/wpscanteam/wpscan/issues/1593 class PHPDisabled < CMSScanner::Finders::Finder PATTERN = /\$wp_version =/.freeze # @return [ InterestingFinding ] def aggressive(_opts...
Ruby
wpscan/app/finders/interesting_findings/readme.rb
# frozen_string_literal: true module WPScan module Finders module InterestingFindings # Readme.html finder class Readme < CMSScanner::Finders::Finder # @return [ InterestingFinding ] def aggressive(_opts = {}) potential_files.each do |path| res = target.head_and_...
Ruby
wpscan/app/finders/interesting_findings/registration.rb
# frozen_string_literal: true module WPScan module Finders module InterestingFindings # Registration Enabled checker class Registration < CMSScanner::Finders::Finder # @return [ InterestingFinding ] def passive(_opts = {}) # Maybe check in the homepage if there is the regist...
Ruby
wpscan/app/finders/interesting_findings/tmm_db_migrate.rb
# frozen_string_literal: true module WPScan module Finders module InterestingFindings # Tmm DB Migrate finder class TmmDbMigrate < CMSScanner::Finders::Finder # @return [ InterestingFinding ] def aggressive(_opts = {}) path = 'wp-content/uploads/tmm_db_migrate/tmm_db_migrate...
Ruby
wpscan/app/finders/interesting_findings/upload_directory_listing.rb
# frozen_string_literal: true module WPScan module Finders module InterestingFindings # UploadDirectoryListing finder class UploadDirectoryListing < CMSScanner::Finders::Finder # @return [ InterestingFinding ] def aggressive(_opts = {}) path = 'wp-content/uploads/' ...
Ruby
wpscan/app/finders/interesting_findings/upload_sql_dump.rb
# frozen_string_literal: true module WPScan module Finders module InterestingFindings # UploadSQLDump finder class UploadSQLDump < CMSScanner::Finders::Finder SQL_PATTERN = /(?:DROP|CREATE|(?:UN)?LOCK) TABLE|INSERT INTO/.freeze # @return [ InterestingFinding ] def aggressive(...
Ruby
wpscan/app/finders/interesting_findings/wp_cron.rb
# frozen_string_literal: true module WPScan module Finders module InterestingFindings # wp-cron.php finder class WPCron < CMSScanner::Finders::Finder # @return [ InterestingFinding ] def aggressive(_opts = {}) res = Browser.get(wp_cron_url) return unless res.code ...
Ruby
wpscan/app/finders/main_theme/css_style_in_404_page.rb
# frozen_string_literal: true module WPScan module Finders module MainTheme # From the CSS style in the 404 page class CssStyleIn404Page < CssStyleInHomepage def passive(opts = {}) passive_from_css_href(target.error_404_res, opts) || passive_from_style_code(target.error_404_res, opt...
Ruby
wpscan/app/finders/main_theme/css_style_in_homepage.rb
# frozen_string_literal: true module WPScan module Finders module MainTheme # From the CSS style in the homepage class CssStyleInHomepage < CMSScanner::Finders::Finder include Finders::WpItems::UrlsInPage # To have the item_code_pattern method available here def create_theme(slug, st...
Ruby
wpscan/app/finders/main_theme/urls_in_404_page.rb
# frozen_string_literal: true module WPScan module Finders module MainTheme # URLs In 404 Page Finder class UrlsIn404Page < UrlsInHomepage # @return [ Typhoeus::Response ] def page_res @page_res ||= target.error_404_res end end end end end
Ruby
wpscan/app/finders/main_theme/urls_in_homepage.rb
# frozen_string_literal: true module WPScan module Finders module MainTheme # URLs In Homepage Finder class UrlsInHomepage < CMSScanner::Finders::Finder include WpItems::UrlsInPage # @param [ Hash ] opts # # @return [ Array<Theme> ] def passive(opts = {}) ...