language
stringlengths
0
24
filename
stringlengths
9
214
code
stringlengths
99
9.93M
Ruby
wpscan/spec/app/finders/timthumbs/known_locations_spec.rb
# frozen_string_literal: true describe WPScan::Finders::Timthumbs::KnownLocations do subject(:finder) { described_class.new(target) } let(:target) { WPScan::Target.new(url) } let(:url) { 'http://ex.lo/' } let(:fixtures) { FINDERS_FIXTURES.join('timthumbs', 'known_locations') } describe '#aggres...
Ruby
wpscan/spec/app/finders/timthumb_version/bad_request_spec.rb
# frozen_string_literal: true describe WPScan::Finders::TimthumbVersion::BadRequest do subject(:finder) { described_class.new(target) } let(:target) { WPScan::Model::Timthumb.new(url) } let(:url) { 'http://ex.lo/timthumb.php' } let(:fixtures) { FINDERS_FIXTURES.join('timthumb_version', 'bad_reques...
Ruby
wpscan/spec/app/finders/users/author_id_brute_forcing_spec.rb
# frozen_string_literal: true describe WPScan::Finders::Users::AuthorIdBruteForcing do subject(:finder) { described_class.new(target) } let(:target) { WPScan::Target.new(url) } let(:url) { 'http://wp.lab/' } let(:fixtures) { FINDERS_FIXTURES.join('users', 'author_id_brute_forcing') } describe '...
Ruby
wpscan/spec/app/finders/users/author_posts_spec.rb
# frozen_string_literal: true describe WPScan::Finders::Users::AuthorPosts do subject(:finder) { described_class.new(target) } let(:target) { WPScan::Target.new(url) } let(:url) { 'http://wp.lab/' } let(:fixtures) { FINDERS_FIXTURES.join('users', 'author_posts') } describe '#passive' do xit...
Ruby
wpscan/spec/app/finders/users/author_sitemap_spec.rb
# frozen_string_literal: true describe WPScan::Finders::Users::AuthorSitemap do subject(:finder) { described_class.new(target) } let(:target) { WPScan::Target.new(url) } let(:url) { 'http://wp.lab/' } let(:fixtures) { FINDERS_FIXTURES.join('users', 'author_sitemap') } describe '#aggressive' do ...
Ruby
wpscan/spec/app/finders/users/login_error_messages_spec.rb
# frozen_string_literal: true describe WPScan::Finders::Users::LoginErrorMessages do subject(:finder) { described_class.new(target) } let(:target) { WPScan::Target.new(url) } let(:url) { 'http://wp.lab/' } let(:fixtures) { FINDERS_FIXTURES.join('users', 'login_error_messages') } describe '#aggr...
Ruby
wpscan/spec/app/finders/users/oembed_api_spec.rb
# frozen_string_literal: true describe WPScan::Finders::Users::OembedApi do subject(:finder) { described_class.new(target) } let(:target) { WPScan::Target.new(url) } let(:url) { 'http://wp.lab/' } let(:fixtures) { FINDERS_FIXTURES.join('users', 'oembed_api') } describe '#aggressive' do befo...
Ruby
wpscan/spec/app/finders/users/rss_generator_spec.rb
# frozen_string_literal: true describe WPScan::Finders::Users::RSSGenerator do subject(:finder) { described_class.new(target) } let(:target) { WPScan::Target.new(url) } let(:url) { 'http://ex.lo/' } let(:fixtures) { FINDERS_FIXTURES.join('users', 'rss_generator') } let(:rss_fixture) { File.r...
Ruby
wpscan/spec/app/finders/users/wp_json_api_spec.rb
# frozen_string_literal: true describe WPScan::Finders::Users::WpJsonApi do subject(:finder) { described_class.new(target) } let(:target) { WPScan::Target.new(url) } let(:url) { 'http://wp.lab/' } let(:fixtures) { FINDERS_FIXTURES.join('users', 'wp_json_api') } describe '#aggressive' do bef...
Ruby
wpscan/spec/app/finders/users/yoast_seo_author_sitemap_spec.rb
# frozen_string_literal: true describe WPScan::Finders::Users::YoastSeoAuthorSitemap do subject(:finder) { described_class.new(target) } let(:target) { WPScan::Target.new(url) } let(:url) { 'http://wp.lab/' } let(:fixtures) { FINDERS_FIXTURES.join('users', 'yoast_seo_author_sitemap') } describe...
Ruby
wpscan/spec/app/finders/wp_version/atom_generator_spec.rb
# frozen_string_literal: true describe WPScan::Finders::WpVersion::AtomGenerator do subject(:finder) { described_class.new(target) } let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) } let(:url) { 'http://ex.lo/' } let(:fixtures) { FINDERS_FIXTURES.join('wp_...
Ruby
wpscan/spec/app/finders/wp_version/rdf_generator_spec.rb
# frozen_string_literal: true describe WPScan::Finders::WpVersion::RDFGenerator do subject(:finder) { described_class.new(target) } let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) } let(:url) { 'http://ex.lo/' } let(:fixtures) { FINDERS_FIXTURES.join('wp_version',...
Ruby
wpscan/spec/app/finders/wp_version/readme_spec.rb
# frozen_string_literal: true describe WPScan::Finders::WpVersion::Readme do subject(:finder) { described_class.new(target) } let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) } let(:url) { 'http://ex.lo/' } let(:fixtures) { FINDERS_FIXTURES.join('wp_version', 'read...
Ruby
wpscan/spec/app/finders/wp_version/rss_generator_spec.rb
# frozen_string_literal: true describe WPScan::Finders::WpVersion::RSSGenerator do subject(:finder) { described_class.new(target) } let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) } let(:url) { 'http://ex.lo/' } let(:fixtures) { FINDERS_FIXTURES.join('wp_version',...
Ruby
wpscan/spec/app/finders/wp_version/unique_fingerprinting_spec.rb
# frozen_string_literal: true describe WPScan::Finders::WpVersion::UniqueFingerprinting do subject(:finder) { described_class.new(target) } let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) } let(:url) { 'http://ex.lo/' } let(:fixtures) { FINDERS_FIXTURES.join('wp_v...
Ruby
wpscan/spec/app/models/interesting_finding_spec.rb
# frozen_string_literal: true describe WPScan::Model::InterestingFinding do it_behaves_like WPScan::References do subject(:finding) { described_class.new('http://e.org/file.php', opts) } let(:opts) { { references: references } } let(:references) { {} } end end
Ruby
wpscan/spec/app/models/media_spec.rb
# frozen_string_literal: true describe WPScan::Model::Media do subject(:media) { described_class.new(url) } let(:url) { 'http://e.oeg/?attachment_id=2' } describe '#new' do its(:url) { should eql url } end end
Ruby
wpscan/spec/app/models/plugin_spec.rb
# frozen_string_literal: true describe WPScan::Model::Plugin do subject(:plugin) { described_class.new(slug, blog, opts) } let(:slug) { 'spec' } let(:blog) { WPScan::Target.new('http://wp.lab/') } let(:opts) { {} } before { expect(blog).to receive(:content_dir).and_return('wp-content') } ...
Ruby
wpscan/spec/app/models/theme_spec.rb
# frozen_string_literal: true describe WPScan::Model::Theme do subject(:theme) { described_class.new(slug, blog, opts) } let(:slug) { 'spec' } let(:blog) { WPScan::Target.new('http://wp.lab/') } let(:opts) { {} } let(:fixtures) { FIXTURES.join('models', 'theme') } before { expect(blog...
Ruby
wpscan/spec/app/models/timthumb_spec.rb
# frozen_string_literal: true describe WPScan::Model::Timthumb do subject(:timthumb) { described_class.new(url, opts) } let(:url) { 'http://wp.lab/wp-content/timthumb.php' } let(:fixtures) { FIXTURES.join('models', 'timthumb') } let(:opts) { {} } describe '#new' do its(:url) { shoul...
Ruby
wpscan/spec/app/models/wp_item_spec.rb
# frozen_string_literal: true describe WPScan::Model::WpItem do subject(:wp_item) { described_class.new(slug, blog, opts) } let(:slug) { 'test_item' } let(:blog) { WPScan::Target.new(url) } let(:url) { 'http://wp.lab/' } let(:opts) { {} } its(:blog) { should eql blog } ...
Ruby
wpscan/spec/app/models/wp_version_spec.rb
# frozen_string_literal: true describe WPScan::Model::WpVersion do describe '#new' do context 'when invalid number' do it 'raises an error' do expect { described_class.new('aa') }.to raise_error WPScan::Error::InvalidWordPressVersion end end context 'when valid number' do it 'c...
Ruby
wpscan/spec/app/models/xml_rpc_spec.rb
# frozen_string_literal: true describe WPScan::Model::XMLRPC do subject(:xml_rpc) { described_class.new('http//e.org/xmlrpc.php') } describe '#references' do its(:references) { should_not be_empty } end end
Text
wpscan/spec/fixtures/db/db_exports.txt
{domain_name}.sql wordpress.sql backup/{domain_name}.zip backup/mysql.sql backups/{domain_name}.sql.gz backups/db_backup.sql
YAML
wpscan/spec/fixtures/db/dynamic_finders.yml
--- wordpress: AddthisJavascript: class: JavascriptVar xpath: //script[@data-cfasync="false"] pattern: !ruby/regexp /wp_blog_version\s*=\s*"(?<v>\d+\.[\.\d]+)";/i version: true CardealerpressHeader: class: HeaderPattern header: WP-Version pattern: !ruby/regexp /(?<v>\d+\.[\.\d]+)/i v...
JSON
wpscan/spec/fixtures/db/metadata.json
{ "wordpress": { "4.0": { "release_date": "2014-09-04", "status": "latest" }, "3.8.1": { "release_date": "2014-01-23", "status": "outdated" }, "3.8": { "release_date": "2013-12-12", "status": "insecure" } }, "plugins": { "no-vulns-popular": { "...
JSON
wpscan/spec/fixtures/db/wp_fingerprints.json
{ "path-1": { "hash-1": ["4.0", "3.8"], "hash-2": ["4.4"] }, "path-2": { "hash-3": ["3.8.1", "3.8.2", "3.9.1"] } }
JSON
wpscan/spec/fixtures/db/vuln_api/plugins/no-vulns-popular.json
{ "vulnerabilities": [], "popular": true, "latest_version": "2.1", "last_updated": "2015-05-16T00:00:00.000Z-via-api" }
JSON
wpscan/spec/fixtures/db/vuln_api/plugins/vulnerable-introduced-in.json
{ "latest_version": null, "last_updated": null, "popular": false, "vulnerabilities" : [ { "title": "Introduced In 6.4", "id": 1, "introduced_in": "6.4", "fixed_in": "6.5" } ] }
JSON
wpscan/spec/fixtures/db/vuln_api/plugins/vulnerable-not-popular.json
{ "latest_version": null, "last_updated": null, "popular": false, "vulnerabilities" : [ { "title" : "First Vuln \u003c= 6.3.10 - LFI", "fixed_in" : "6.3.10", "id" : 1, "vuln_type": "LFI" }, { "title": "No Fixed In", "id": 2 } ] }
JSON
wpscan/spec/fixtures/db/vuln_api/themes/dignitas-themes.json
{ "popular": true, "latest_version": null, "last_updated": null, "vulnerabilities" : [ { "created_at" : "2015-03-05T19:25:59.000Z", "updated_at" : "2015-03-05T19:37:47.000Z", "references": { "url" : [ "http://research.evex.pw/?vuln=6" ], "packetstorm": [ ...
JSON
wpscan/spec/fixtures/db/vuln_api/themes/no-vulns-popular.json
{ "popular": true, "latest_version": "2.2", "last_updated": "2015-05-16T00:00:00.000Z-via-api", "vulnerabilities": [] }
JSON
wpscan/spec/fixtures/db/vuln_api/themes/vulnerable-not-popular.json
{ "latest_version": null, "last_updated": null, "popular": false, "vulnerabilities" : [ { "title" : "First Vuln", "fixed_in" : "6.3.10", "id" : 1, "vuln_type": "LFI" }, { "title": "No Fixed In", "id": 2 } ] }
JSON
wpscan/spec/fixtures/db/vuln_api/themes/yaaburnee-themes.json
{ "popular": false, "latest_version": null, "last_updated": null, "vulnerabilities" : [ { "created_at" : "2015-03-05T19:25:44.000Z", "updated_at" : "2015-03-05T19:41:14.000Z", "references": { "url" : [ "http://research.evex.pw/?vuln=6", ], "packetstorm": [...
JSON
wpscan/spec/fixtures/db/vuln_api/wordpresses/38.json
{ "release_date" : "2013-12-12", "status": "insecure", "vulnerabilities" : [ { "references": { "url" : ["url-4"], "osvdb" : ["11"] }, "created_at" : "2014-08-01T10:58:19.000Z", "updated_at" : "2014-09-16T15:45:26.000Z", "title" : "WP 3.8 - Vuln 1", "id" : 3,...
JSON
wpscan/spec/fixtures/db/vuln_api/wordpresses/381.json
{ "release_date" : "2014-01-23-via-api", "status": "outdated-via-api", "vulnerabilities" : [ { "created_at" : "2014-08-01T10:58:19.000Z", "updated_at" : "2014-09-16T13:52:17.000Z", "title" : "WP 3.8.1 - Vuln 1", "id" : 1, "vuln_type" : "SQLI", "published_date" : null, ...
YAML
wpscan/spec/fixtures/dynamic_finders/expected.yml
--- wordpress: AddthisJavascript: number: 3.8.1 found_by: Addthis Javascript (Passive Detection) interesting_entries: - 'http://wp.lab/, Match: ''wp_blog_version = "3.8.1";''' CardealerpressHeader: number: 3.8.1 found_by: Cardealerpress Header (Passive Detection) interesting_entries: ...
HTML
wpscan/spec/fixtures/dynamic_finders/plugin_version/comment_passive_all.html
<!-- This file also contains non versionable comment as used to detect the presence of plugins (instead of having two different file) --> <!DOCTYPE html> <html lang="en-US" class="no-js"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width"> <link rel="profile" href="http://gmpg.o...
HTML
wpscan/spec/fixtures/dynamic_finders/plugin_version/header_pattern_passive_all.html
{ "Date": "Sun, 05 Nov 2017 12:14:25 GMT", "Server": "Apache", "X-Powered-By": [ "PHP/5.5.36", "W3 Total Cache/0.9.1" ], "wp-super-cache": "Served supercache file from PHP", "Vary": "Accept-Encoding,User-Agent", "Content-Length": "0", "Content-Type": "text/html", "X-CDP-Version": "4.9.1712.01"...
HTML
wpscan/spec/fixtures/dynamic_finders/plugin_version/javascript_var_passive_all.html
<!-- This one shouldn't be checked --> <script src='//t.js'></script> <!-- AddThis Settings Begin --> <script data-cfasync="false" type="text/javascript"> var addthis_product = "wpp-5.3.5"; var wp_product_version = "wpp-5.3.5"; var wp_blog_version = "4.8"; var addthis_plugin_info = {"info_status":"ena...
HTML
wpscan/spec/fixtures/dynamic_finders/plugin_version/query_parameter_passive_all.html
<!-- 0- some WP versions (not used and should not be detected) --> <script type='text/javascript' src='http://wp.lab/wp-content/themes/hazel/js/default_dynamic.php?ver=4.7.2'></script> <script type='text/javascript' src='http://wp.lab/wp-content/themes/hazel/js/default.min.js?ver=4.7.2'></script> <script type='text/jav...
HTML
wpscan/spec/fixtures/dynamic_finders/plugin_version/xpath_passive_all.html
<!-- This file also contains non versionable xpath as used to detect the presence of plugins (instead of having two different file) --> <!-- 10centmail-subscription-management-and-analytics --> <meta name="tencentmail-plugin-version" content="2.1.50"> <!-- 12-step-meeting-list --> <meta name="12_step_meeting_li...
Portable Object
wpscan/spec/fixtures/dynamic_finders/plugin_version/10bit-paybuttons-easycard/translation_file/languages/10bit-paybuttons-easycard-he_IL.po
msgid "" msgstr "" "Project-Id-Version: Woo Pelecard v1.0.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-07-07 07:09+0200\n" "PO-Revision-Date: 2014-07-07 07:09+0200\n" "Last-Translator: Tzvi Rabinovitch <tzvi.ra@gmail.com>\n" "Language-Team: \n" "Language: he_IL\n" "MIME-Version: 1.0\n" "Content-Type: text/p...
Portable Object
wpscan/spec/fixtures/dynamic_finders/plugin_version/10bit-paybuttons-pelecard/translation_file/languages/10bit-paybuttons-pelecard-he_IL.po
msgid "" msgstr "" "Project-Id-Version: Woo Pelecard v1.0.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-07-09 01:31+0200\n" "PO-Revision-Date: 2014-07-09 01:32+0200\n" "Last-Translator: Tzvi Rabinovitch <tzvi.ra@gmail.com>\n" "Language-Team: \n" "Language: he_IL\n" "MIME-Version: 1.0\n" "Content-Type: text/p...
JSON
wpscan/spec/fixtures/dynamic_finders/plugin_version/24liveblog/composer_file/package.json
{ "name": "liveblog24-live-blogging-tool-cgb-guten-block", "version": "2.0", "private": true, "scripts": { "start": "cgb-scripts start", "build": "cgb-scripts build", "eject": "cgb-scripts eject" }, "dependencies": { "cgb-scripts": "1.23.0" } }
Text
wpscan/spec/fixtures/dynamic_finders/plugin_version/2fas/change_log/changelog.txt
== Changelog == = 2.4.1 (Mar. 24, 2019) = * Fixed migration = 2.4.0 (Mar. 21, 2019) = * Deprecated the legacy mode (users in this mode are forced to configure TOTP) * Added password field to the registration form * Spinner is showed when a QR code is refreshed * Added link to a contact form * Added new notifications ...
Portable Object
wpscan/spec/fixtures/dynamic_finders/plugin_version/2fas/translation_file/languages/2fas-pt_BR.po
# Copyright (C) 2019 Two Factor Authentication Service Inc. # This file is distributed under the same license as the 2FAS — Two Factor Authentication plugin. msgid "" msgstr "" "Project-Id-Version: 2FAS — Two Factor Authentication 2.6.1\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/twofas-wp-plugin\n" ...
Text
wpscan/spec/fixtures/dynamic_finders/plugin_version/2fas-light/change_log/changelog.txt
== Changelog == = 1.1.3 (Mar. 6, 2019) = * Constant DIRECTORY_SEPARATOR is not used anymore * Prevent direct access to twofas_light_init.php file = 1.1.2 (Feb. 18, 2019) = * Fixed setcookie function arguments = 1.1.1 (Aug. 9, 2018) = * Fixed PHP errors and warnings occurring during some actions * Added plugin's requ...
wpscan/spec/fixtures/dynamic_finders/plugin_version/2kb-amazon-affiliates-store/version_log/template/admin/version.phtml
<div class="row" id="kb-amz-version"> <div class="col-sm-12"> <h4>2.1.1</h4> <ul style="list-style-type: disc;"> <li> Security fix, thanks to Ricardo </li> </ul> <h4>2.0.2</h4> <h4>2.1.0</h4> <ul style="list-style-type: disc;"> ...
Text
wpscan/spec/fixtures/dynamic_finders/plugin_version/3-word-address-validation-field/change_log/CHANGELOG.txt
= 4.0.0 = * Released 2021.07.20 * Upgraded to use V4 of the what3words AutoSuggest Component with improved styling and functionality. * Updated admin section interface. * Addition of advanced clipping options to restrict suggestions displayed to a user. * Addition of options to store latitude and longitude coordinates ...
Text
wpscan/spec/fixtures/dynamic_finders/plugin_version/300form/change_log/changelog.txt
** Changelog ** v0.2a - added support for dynamic forms v0.2.1a - wrapped class in conditional statement to avoid php fatal errors
JSON
wpscan/spec/fixtures/dynamic_finders/plugin_version/360-image/composer_file/package.json
{ "name": "algori-360-image-cgb-guten-block", "version": "1.0.0", "private": true, "scripts": { "start": "cgb-scripts start", "build": "cgb-scripts build", "eject": "cgb-scripts eject" }, "dependencies": { "cgb-scripts": "1.9.8" } }
JSON
wpscan/spec/fixtures/dynamic_finders/plugin_version/360-video/composer_file/package.json
{ "name": "algori-360-video-cgb-guten-block", "version": "1.0.0", "private": true, "scripts": { "start": "cgb-scripts start", "build": "cgb-scripts build", "eject": "cgb-scripts eject" }, "dependencies": { "cgb-scripts": "1.9.8" } }
Markdown
wpscan/spec/fixtures/dynamic_finders/plugin_version/404-solution/change_log/CHANGELOG.md
# Changelog # ## Version 2.15.4 (March 28, 2019) ## * FIX: Fix a compatibility issue with PHP versions earlier than 5.5.18 (for thowarth91). ## Version 2.15.3 (March 27, 2019) ## * Feature: Automatically update to major versions after waiting 30 days (configurable) after their release. ## Version 2.15.2 (March 25, 2...
JSON
wpscan/spec/fixtures/dynamic_finders/plugin_version/404-solution/composer_file/package.json
{ "name": "404-solution", "version": "2.5.4", "description": "The 404 Solution Plugin.", "main": "Gulpfile.js", "dependencies": { "autoprefixer": "^6.3.1", "css-mqpacker": "^4.0.0", "del": "^2.2.0", "glob": "^6.0.4", "gulp": "^3.9.1", "gulp-cheerio": "^0.6.2", "gulp-concat": "^2.6....
JavaScript
wpscan/spec/fixtures/dynamic_finders/plugin_version/4nton-extensions/javascript_file/assets/js/script.js
/* Version: 1.2.1 */ jQuery(document).ready(function($){ var to=(function(){var timers={};return function(callback,ms,x_id){if(!x_id){x_id='';}if(timers[x_id]){clearTimeout(timers[x_id]);}timers[x_id]=setTimeout(callback,ms);};})(),id,xstyle,xtop,slr=300,show_popup=false,allottedtime,expiration,ifautofit = 0,rd_bxslid...
Portable Object
wpscan/spec/fixtures/dynamic_finders/plugin_version/4partners/translation_file/languages/4partners-ru_RU.po
# Copyright (C) 2022 4partners # This file is distributed under the GPL2. msgid "" msgstr "" "Project-Id-Version: 4partners 1.0.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/4partners\n" "POT-Creation-Date: 2022-10-13T14:15:50+00:00\n" "PO-Revision-Date: 2022-10-13 17:18+0300\n" "Last-Translator: \n"...
JSON
wpscan/spec/fixtures/dynamic_finders/plugin_version/a-note-above-wp-dashboard-notes/composer_file/package.json
{ "name": "a-note-above", "version": "1.0.1", "description": "A way to keep notes on your dashboard.", "author": "Josh Brown <joshbrown101@gmail.com>", "license": "GPLv2", "private": true, "scripts": { "dev": "webpack --watch --progress --hide-modules", "dev-build": "webpack -d --mode development"...
Markdown
wpscan/spec/fixtures/dynamic_finders/plugin_version/a-z-listing/change_log/changelog.md
# Full Changelog # ## 2.2.0 ## * Add `get_the_item_post_count` and `the_item_post_count` template methods to get or display the number of posts associated with a term. * Add support for `get-all-children` when specifying a `parent-term`. * Add extra filename for template matching: `a-z-listing-$slug.php` where `$slug...
Text
wpscan/spec/fixtures/dynamic_finders/plugin_version/a3-portfolio/change_log/changelog.txt
== Changelog == = 2.7.0 - 2019/01/12 = * This upgrade includes 2 new sort features on the Portfolio Category Widget plus 1 bug fix on it. * Feature - Portfolio Categories widget - Add option to exclude Categories from showing on the frontend * Feature - Portfolio Categories widget - Add sort option for category items ...
Portable Object
wpscan/spec/fixtures/dynamic_finders/plugin_version/ab-human-time/translation_file/languages/ab-human-time-it_IT.po
# Italian translation for ab-human-time # Copyright (C) 2014 AB Human Time # This file is distributed under the same license as the AB Human Time package. msgid "" msgstr "" "Project-Id-Version: AB Human Time 0.1\n" "POT-Creation-Date: 2014-02-26 20:13+0100\n" "PO-Revision-Date: 2014-02-26 21:25+0100\n" "Last-Translato...
JSON
wpscan/spec/fixtures/dynamic_finders/plugin_version/above-the-fold-optimization/composer_file/package.json
{ "name": "abovethefold", "version": "2.9.2", "description": "Above The Fold Optimization", "author": { "name": "info@pagespeed.pro", "email": "info@pagespeed.pro", "web": "pagespeed.pro" }, "engines": { "node": "~0.10" }, "dependencies": { "jquery...
Portable Object
wpscan/spec/fixtures/dynamic_finders/plugin_version/accedeme-for-wp/translation_file/languages/wp-accedeme-es_ES.po
# Copyright (C) 2022 Accedeme # This file is distributed under the GPLv2 or later. msgid "" msgstr "" "Project-Id-Version: Accedeme for WP 0.2\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-accedeme\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "MIME-Versio...
Text
wpscan/spec/fixtures/dynamic_finders/plugin_version/accelerated-mobile-pages/change_log/changelog.txt
== Changelog == = 0.9.97.44 (28th March 2019) = * Added: Captions feature in AMP page builder #2645 * Added: Compatibility with the Youtube Oembed Plyr plugin #1505 * Added: Caption option for gallery/slider module in pagebuilder #2790 * Added: Like & share feature for every image in instant_articles #2764 * Added: Ge...
JSON
wpscan/spec/fixtures/dynamic_finders/plugin_version/accordion-blocks/composer_file/package.json
{ "name": "accordion-blocks", "version": "1.0.1", "description": "Gutenberg blocks for creating responsive accordion drop-downs.", "main": "js/accordion-blocks.js", "scripts": { "dev": "webpack --watch", "build": "NODE_ENV=production webpack" }, "author": "pbuchanan", "license": "ISC", "devDep...
JSON
wpscan/spec/fixtures/dynamic_finders/plugin_version/accordion-faq-block/composer_file/package.json
{ "name": "my-block-cgb-guten-block", "version": "1.0.0", "private": true, "scripts": { "start": "cgb-scripts start", "build": "cgb-scripts build", "eject": "cgb-scripts eject" }, "dependencies": { "@fortawesome/fontawesome-svg-core": "^1.2.12", "@fortawesome/free-brands-svg-icons": "^5....
Markdown
wpscan/spec/fixtures/dynamic_finders/plugin_version/aceide/change_log/CHANGELOG.md
## AceIDE Changelog #### 2.6.2 * See github issue #32. Adds precision to backup naming. * Reverts breaking changes made by commit 80e8adf to fix #15. #### 2.6.1 * See github issue #27. Fixes issue introduced in 2.6.0, attempting to fix noise in AJAX. * See github issue #26. Fixes CSS highlighting not working. * Bumpe...
Markdown
wpscan/spec/fixtures/dynamic_finders/plugin_version/acf-beautiful-flexible/change_log/CHANGELOG.md
# Changelog ## ## 1.0.3 - 05 Mai 2022 * Publish on WP directory ## 1.0.1 - 30 Apr 2018 * Compatibility with latest versions of ACF and WordPress. * Look for nested fields into repeaters and flexibles. ## 1.0.0 * FIX [#10](https://github.com/BeAPI/acf-beautiful-flexible/issues/10): fix warning * Update readme with ne...
JSON
wpscan/spec/fixtures/dynamic_finders/plugin_version/acf-conditional-logic-advanced/composer_file/composer.json
{ "name": "andrejpavlovic/acf-conditional-logic-advanced", "description": "Adds an Advanced Conditional Logic field setting to ACF that can show/hide individual fields based on post template, format, and/or category.", "version": "1.1.3", "type": "wordpress-plugin", "license": "GPL-2.0" }
JSON
wpscan/spec/fixtures/dynamic_finders/plugin_version/acf-content-analysis-for-yoast-seo/composer_file/package-lock.json
{ "name": "yoast-acf-analysis", "version": "2.0.1", "lockfileVersion": 1, "requires": true, "dependencies": { "JSONStream": { "version": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.1.tgz", "integrity": "sha1-cH92HgHa6eFvG8+TcDt4xwlmV5o=", "dev": true, "requires": { ...
Portable Object
wpscan/spec/fixtures/dynamic_finders/plugin_version/acf-field-selector-field/translation_file2/lang/translation.po
msgid "" msgstr "" "Project-Id-Version: ACF Field Selector 4.0.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-04-21 23:13+0100\n" "PO-Revision-Date: 2015-04-21 23:13+0100\n" "Last-Translator: Daniel Pataki <contact@tastique.org>\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=U...
Portable Object
wpscan/spec/fixtures/dynamic_finders/plugin_version/acf-field-selector-field/translation_file3/lang/acf-field-selector-field-hu_HU.po
msgid "" msgstr "" "Project-Id-Version: ACF Field Selector 4.0.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-04-21 23:13+0100\n" "PO-Revision-Date: 2015-04-21 23:13+0100\n" "Last-Translator: Daniel Pataki <contact@tastique.org>\n" "Language-Team: Daniel Pataki <hello@danielpataki.com>\n" "Language: Hungarian...
Markdown
wpscan/spec/fixtures/dynamic_finders/plugin_version/acf-options-for-polylang/change_log/CHANGELOG.md
# Changelog ## 1.1.6 - 19 Mar 2019 * FIX [#32](https://github.com/BeAPI/acf-options-for-polylang/issues/32) & [#40](https://github.com/BeAPI/acf-options-for-polylang/issues/40) : fix `get_field()` if an object is provided (WP Term, WP Post, WP Comment) ## 1.1.5 - 11 Dec 2018 * FIX wrong constant ## 1.1.4 - 13 Nov 20...
Portable Object
wpscan/spec/fixtures/dynamic_finders/plugin_version/acf-pro-show-fields-shortcode/translation_file/languages/uk_UA.po
msgid "" msgstr "" "Project-Id-Version: xq-xe-xt-xy 1.0\n" "POT-Creation-Date: 2018-07-11 09:44+0300\n" "PO-Revision-Date: 2018-07-11 09:44+0300\n" "Last-Translator: \n" "Language-Team: Marko Maksym\n" "Language: uk_UA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit...
Portable Object
wpscan/spec/fixtures/dynamic_finders/plugin_version/acf-sidebar-selector-field/translation_file3/lang/acf-sidebar-selector-field-hu_HU.po
msgid "" msgstr "" "Project-Id-Version: ACF Sidebar Selector 3.0.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-04-21 21:13+0100\n" "PO-Revision-Date: 2015-04-21 21:14+0100\n" "Last-Translator: Daniel Pataki <contact@tastique.org>\n" "Language-Team: Daniel Pataki <hello@danielpataki.com>\n" "Language: Hungari...
JSON
wpscan/spec/fixtures/dynamic_finders/plugin_version/acf-to-rest-api/composer_file/composer.json
{ "name": "airesvsg/acf-to-rest-api", "description": "Exposes Advanced Custom Fields Endpoints in the WordPress REST API", "type": "wordpress-plugin", "version": "3.1.0", "keywords": ["wordpress", "wp", "rest-api", "acf", "wp-api", "json", "wordpres-plugin", "fields"], "homepage": "https://github.com/airesv...
JSON
wpscan/spec/fixtures/dynamic_finders/plugin_version/acf-to-rest-api/composer_file_/composer.json
{ "name": "airesvsg/acf-to-rest-api", "description": "Exposes Advanced Custom Fields Endpoints in the WordPress REST API", "type": "wordpress-plugin", "version": "3.1.0", "keywords": ["wordpress", "wp", "rest-api", "acf", "wp-api", "json", "wordpres-plugin", "fields"], "homepage": "https://github.com/airesv...
Text
wpscan/spec/fixtures/dynamic_finders/plugin_version/action-scheduler/change_log/changelog.txt
*** Changelog *** = 3.2.0 - 2021-06-03 = * Fix - Add "no ordering" option to as_next_scheduled_action(). * Fix - Add secondary scheduled date checks when claiming actions (DBStore) | #634. * Fix - Add secondary scheduled date checks when claiming actions (wpPostStore) | #634. * Fix - Adds a new index to the action tab...
Portable Object
wpscan/spec/fixtures/dynamic_finders/plugin_version/active-directory-authentication-integration/translation_file3/languages/default.po
# Copyright (C) 2010 Active Directory Authentication Integration # This file is distributed under the same license as the Active Directory Authentication Integration package. msgid "" msgstr "" "Project-Id-Version: Active Directory Authentication Integration 0.6a\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/activ...
Markdown
wpscan/spec/fixtures/dynamic_finders/plugin_version/actus-animated-tags/change_log/CHANGELOG.md
# Changelog ## [Unreleased] ## [1.2.0] - 2019-03-09 ### Added * (09 March 2019). * Clickable tags. * Upload your own image as a background. ## [1.1.0] - 2017-06-23 ### Added * (23 June 2017). Settings Button for plugins page. ## [1.0.0] - 2017-06-20 * (19 June 2017). Revived ID system. * (19 June 2017). Added Widg...
Text
wpscan/spec/fixtures/dynamic_finders/plugin_version/acumulus/change_log/lib/siel/acumulus/changelog.txt
Changelog Acumulus webkoppelingen ================================= ALL = Alle webshops. HS = HikaShop (Joomla) JOO = Joomla (HikaShop + VirtueMart3) MA = Magento (alle ondersteunde versies) MA1 = Magento 1 MA2 = Magento 2 (MA20, MA21 = specifieke minor versie binnen major versie 2) OC = OpenCart (alle ondersteunde...
JSON
wpscan/spec/fixtures/dynamic_finders/plugin_version/acumulus/composer_file/libraries/Siel/composer.json
{ "name": "siel/acumulus-lib", "description": "Siel Acumulus Web API library, common for all web shops", "version": "4.9.2", "license": [ "GPL-3.0" ], "autoload": { "psr-4": { "Siel\\Acumulus\\": "" } } }
JavaScript
wpscan/spec/fixtures/dynamic_finders/plugin_version/ad-inserter/javascript_var/js/ad-inserter.js
var javascript_version = "2.3.3"; var ignore_key = true; var start = 1; var end = 16; var active_tab = 1; var active_tab_0 = 0; var tabs_to_configure = new Array(); var debug = false; var debug_title = false; var current_tab = 0; var next_tab = 0; var syntax_highlighting = false; var settings_page = ""; var dateFo...
wpscan/spec/fixtures/dynamic_finders/plugin_version/ad-inserter/style_var/css/ad-inserter.css
#ai-data { font-family: "2.3.3"; /* Used for version number of the file */ } #blocked-warning { display: none; } .ui-widget, .ai-form td { font-family: sans-serif,Arial,Verdana; font-size: 12px!important; } .ai-form .ui-widget { position: relative; } .ui-widget input, .ui-widget select, .ui-widget tex...
wpscan/spec/fixtures/dynamic_finders/plugin_version/adamrob-parallax-scroll/style_comment/css/parallax.css
/******************************** ** adamrob.co.uk - 20JAN2015 ** Parallax Scroll Wordpress Plugin ** ** CSS Styles ** ** 22MAR2016 - V2.0 - Updated for new version ********************************/ /* ============================================================ USER CUSTOMIZABLE STYLES =============================...
Text
wpscan/spec/fixtures/dynamic_finders/plugin_version/adaptive-learning-with-learndash/change_log/CHANGELOG.txt
== Changelog == = 1.4 = * Fix: Remove direct db call, used LearnDash provided functions * Fix: Fix ajax 500 error issue = 1.3 = * Fix: Made add-on compatible with WordPress 5.1 and Learndash 2.6.4 * New: Added animated notification when enrolled to associated course * New: Displayed associated course on course detail...
Markdown
wpscan/spec/fixtures/dynamic_finders/plugin_version/adblock-notify-by-bweb/change_log/CHANGELOG.md
### v2.4.0 - 2019-03-21 **Changes:** - Upgraded Freemius SDK. - Integration with Admiral (http://getadmiral.com). ### v2.2.3 - 2017-08-16 **Changes:** ### v2.2.2 - 2017-08-14 **Changes:** * Small improvement with themes compatibility. ### v2.2.1 - 2017-05-11 **Changes:** - Updated contributors and links. - A...
JSON
wpscan/spec/fixtures/dynamic_finders/plugin_version/add-amazon-block/composer_file/package.json
{ "name": "amazon-block", "version": "0.2.1", "description": "A WordPress plugin that provides 'Amazon' block for Gutenberg editor.", "main": "index.js", "scripts": { "build": "cross-env BABEL_ENV=default NODE_ENV=production webpack --config webpack.prod.js", "dev": "cross-env BABEL_ENV=default webpac...
Text
wpscan/spec/fixtures/dynamic_finders/plugin_version/add-from-server/change_log/changelog.txt
= 3.3.3 = * Fixes some scenario's where the translation warning sticks around for translated (and other english locales) * Fixes a PHP Warning * Support per-user locales * Bumps required version of WordPress to 4.5+ = 3.3.2 = * Security Fix: Fixes a CSRF vulnerability which could be used to trick a user into impo...
Text
wpscan/spec/fixtures/dynamic_finders/plugin_version/add-on-contact-form-7-mailpoet/change_log/changelog.txt
== Changelog == = 1.3.2 – 2019-02-28 = * Fixes - Infinite loading of submit button. * Fixes - Issues with newest Mailpoet v3.19.3 = 1.3.1 – 2018-06-12 = * Designed a new shortcode for the opt out or Unsubscribe option. = 1.3.0 – 2018-06-11 = * Added a new option for ‘Privacy Policy Notice Page’ that is for the GDPR ...
Text
wpscan/spec/fixtures/dynamic_finders/plugin_version/add-on-gravity-forms-mailpoet/change_log/changelog.txt
== Changelog == = 1.1.5 - 2019-02-28 = * Fixes - Issues with latest Mailpoet v3.19.3 * Fixes - Issues with WordPress 5.1 * Fixes - Issues related to Mailpoet lists not updating and confirmation email not sent. = 1.1.4 - 2019-01-17 = * Feature - Set option to not send subscription confirmation email. Thanks Jonathan ...
Text
wpscan/spec/fixtures/dynamic_finders/plugin_version/add-on-woocommerce-mailpoet/change_log/changelog.txt
== Changelog == = 1.1.2 - 2018-01-11 = * Bugfix - Fixed subscription confirmation and status change not happening with previous bugfix. * Bugfix - Fixed issue of "subscription fields not showing" when the form position is before or after order submit. = 1.1.1 - 2018-01-08 = * Bugfix - Fixed 'confirmation email not se...
Text
wpscan/spec/fixtures/dynamic_finders/plugin_version/addon-library/release_log/release_log.txt
version 1.3.73 -feature: done admin notice version 1.3.72 -feature: add custom post support -bug fix: fixed general settings controls version 1.3.71 -bug fix: fixed brocken output content from previous version version 1.3.70 -bug fix: fixed encoded content output version 1.3.69 -bug fix: fixed some compatabili...
Text
wpscan/spec/fixtures/dynamic_finders/plugin_version/addon-library-layouts/release_log/release_log.txt
version 1.1.2 -bug fix: fixed editor mode menu bug version 1.1.1 - bgu fix: fixed backward compatability for old layouts shortcode version 1.1 - make sure that all the layouts bug fixes are in place
JSON
wpscan/spec/fixtures/dynamic_finders/plugin_version/addonify-quick-view/composer_file/package.json
{ "name": "addonify-quick-view", "version": "1.0.0", "description": "Addonify WooCoomerce Quick View plugin adds functionality to have a WooCoomerce product quick view preview on a modal window.", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "repository": {...
Markdown
wpscan/spec/fixtures/dynamic_finders/plugin_version/addressfinder-woo/change_log/CHANGELOG.md
# AddressFinder 1.2.10 (January 16, 2017) * Emit a change event when field values are updated # AddressFinder 1.2.9 (November 15, 2017) * Documentation update # AddressFinder 1.2.8 (November 6, 2017) * Fix configuration loading fault * Load Javascript with external file rather than embedding # AddressFinder 1.2.7...
JavaScript
wpscan/spec/fixtures/dynamic_finders/plugin_version/addressfinder-woo/javascript_var/addressfinder.js
!function(e){function n(i){if(t[i])return t[i].exports;var o=t[i]={i:i,l:!1,exports:{}};return e[i].call(o.exports,o,o.exports,n),o.l=!0,o.exports}var t={};n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:i})},n.n=function(e){var t=e&&e.__esModule?function(){return ...
Markdown
wpscan/spec/fixtures/dynamic_finders/plugin_version/addy-autocomplete-woocommerce/change_log/CHANGELOG.md
# NZ Address Autocomplete for WooCommerce 2.1.2 # * Call update events when an address is auto-completed # NZ Address Autocomplete for WooCommerce 2.1.1 # * Added additional filters and configuration options # NZ Address Autocomplete for WooCommerce 2.1.0.2 # * Use Mailtown instead of City by default # NZ Addres...
Portable Object
wpscan/spec/fixtures/dynamic_finders/plugin_version/admin-bar/translation_file/lang/ru_RU.po
# Copyright (C) 2010 Admin Bar # This file is distributed under the same license as the Admin Bar package. msgid "" msgstr "" "Project-Id-Version: Admin Bar 1.0\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/admin-bar\n" "POT-Creation-Date: 2011-02-25 12:13:19+00:00\n" "MIME-Version: 1.0\n" "Content-Type: text/plai...
Portable Object
wpscan/spec/fixtures/dynamic_finders/plugin_version/admin-bar-backend-search/translation_file/lang/ab-backend-search-de_DE.po
msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: \n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Poedit-Lan...