Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
105d06c8f8 | ||
|
|
82941906ca | ||
|
|
470fbb1ff3 | ||
|
|
8c6234879e | ||
|
|
689252c715 | ||
|
|
19cf00227b | ||
|
|
c9795dc560 |
@@ -8,13 +8,13 @@ module WPScan
|
||||
def cli_options
|
||||
[OptURL.new(['--url URL', 'The URL of the blog to scan'],
|
||||
required_unless: %i[update help hh version], default_protocol: 'http')] +
|
||||
super.drop(1) + # delete the --url from CMSScanner
|
||||
super.drop(2) + # delete the --url and --force from CMSScanner
|
||||
[
|
||||
OptChoice.new(['--server SERVER', 'Force the supplied server module to be loaded'],
|
||||
choices: %w[apache iis nginx],
|
||||
normalize: %i[downcase to_sym],
|
||||
advanced: true),
|
||||
OptBoolean.new(['--force', 'Do not check if the target is running WordPress']),
|
||||
OptBoolean.new(['--force', 'Do not check if the target is running WordPress or returns a 403']),
|
||||
OptBoolean.new(['--[no-]update', 'Whether or not to update the Database'])
|
||||
]
|
||||
end
|
||||
|
||||
@@ -6,6 +6,7 @@ require_relative 'interesting_findings/multisite'
|
||||
require_relative 'interesting_findings/debug_log'
|
||||
require_relative 'interesting_findings/backup_db'
|
||||
require_relative 'interesting_findings/mu_plugins'
|
||||
require_relative 'interesting_findings/php_disabled'
|
||||
require_relative 'interesting_findings/registration'
|
||||
require_relative 'interesting_findings/tmm_db_migrate'
|
||||
require_relative 'interesting_findings/upload_sql_dump'
|
||||
@@ -26,7 +27,7 @@ module WPScan
|
||||
%w[
|
||||
Readme DebugLog FullPathDisclosure BackupDB DuplicatorInstallerLog
|
||||
Multisite MuPlugins Registration UploadDirectoryListing TmmDbMigrate
|
||||
UploadSQLDump EmergencyPwdResetScript WPCron
|
||||
UploadSQLDump EmergencyPwdResetScript WPCron PHPDisabled
|
||||
].each do |f|
|
||||
finders << InterestingFindings.const_get(f).new(target)
|
||||
end
|
||||
|
||||
21
app/finders/interesting_findings/php_disabled.rb
Normal file
21
app/finders/interesting_findings/php_disabled.rb
Normal file
@@ -0,0 +1,21 @@
|
||||
# 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 = {})
|
||||
path = 'wp-includes/version.php'
|
||||
|
||||
return unless PATTERN.match?(target.head_and_get(path).body)
|
||||
|
||||
Model::PHPDisabled.new(target.url(path), confidence: 100, found_by: DIRECT_ACCESS)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -132,5 +132,19 @@ module WPScan
|
||||
}
|
||||
end
|
||||
end
|
||||
|
||||
class PHPDisabled < InterestingFinding
|
||||
# @return [ String ]
|
||||
def to_s
|
||||
@to_s ||= 'PHP seems to be disabled'
|
||||
end
|
||||
|
||||
# @return [ Hash ]
|
||||
def references
|
||||
@references ||= {
|
||||
url: ['https://github.com/wpscanteam/wpscan/issues/1593']
|
||||
}
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.12'
|
||||
VERSION = '3.8.13'
|
||||
end
|
||||
|
||||
50
spec/app/finders/interesting_findings/php_disabled_spec.rb
Normal file
50
spec/app/finders/interesting_findings/php_disabled_spec.rb
Normal file
@@ -0,0 +1,50 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
describe WPScan::Finders::InterestingFindings::PHPDisabled 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('interesting_findings', 'php_disabled') }
|
||||
let(:file_path) { 'wp-includes/version.php' }
|
||||
let(:file_url) { target.url(file_path) }
|
||||
|
||||
describe '#aggressive' do
|
||||
before do
|
||||
expect(target).to receive(:sub_dir).at_least(1).and_return(false)
|
||||
expect(target).to receive(:head_or_get_params).and_return(method: :head)
|
||||
end
|
||||
|
||||
context 'when not a 200' do
|
||||
it 'return nil' do
|
||||
stub_request(:head, file_url).to_return(status: 404)
|
||||
|
||||
expect(finder.aggressive).to eql nil
|
||||
end
|
||||
end
|
||||
|
||||
context 'when a 200' do
|
||||
before do
|
||||
stub_request(:head, file_url)
|
||||
stub_request(:get, file_url).to_return(body: body)
|
||||
end
|
||||
|
||||
context 'when the body does not match' do
|
||||
let(:body) { '' }
|
||||
|
||||
its(:aggressive) { should be_nil }
|
||||
end
|
||||
|
||||
context 'when the body matches' do
|
||||
let(:body) { File.read(fixtures.join('version.php')) }
|
||||
|
||||
it 'returns the PHPDisabled' do
|
||||
expect(finder.aggressive).to eql WPScan::Model::PHPDisabled.new(
|
||||
file_url,
|
||||
confidence: 100,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -10,7 +10,7 @@ describe WPScan::Finders::InterestingFindings::Base do
|
||||
%w[
|
||||
Readme DebugLog FullPathDisclosure
|
||||
Multisite MuPlugins Registration UploadDirectoryListing TmmDbMigrate
|
||||
UploadSQLDump
|
||||
UploadSQLDump PHPDisabled
|
||||
]
|
||||
end
|
||||
|
||||
|
||||
277
spec/fixtures/db/dynamic_finders.yml
vendored
277
spec/fixtures/db/dynamic_finders.yml
vendored
@@ -1105,6 +1105,9 @@ plugins:
|
||||
version: true
|
||||
Readme:
|
||||
path: readme.txt
|
||||
accept-bitcoin:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
accept-disclaimer-overlayer:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -2984,6 +2987,9 @@ plugins:
|
||||
admin-post-navigation:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
admin-post-notifier:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
admin-post-reminder:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -3801,6 +3807,8 @@ plugins:
|
||||
QueryParameter:
|
||||
files:
|
||||
- styling/asp-frontend.css
|
||||
- styling/css/asp-frontend.css
|
||||
- styling/media-player/asp-media-player.css
|
||||
version: true
|
||||
advanced-settings:
|
||||
Readme:
|
||||
@@ -4219,6 +4227,14 @@ plugins:
|
||||
affinityclick-blog-integration:
|
||||
Readme:
|
||||
path: README.txt
|
||||
affliates-manager-prime-for-wc-lite:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: languages/ciwcamp-affliate-manager.pot
|
||||
pattern: !ruby/regexp '/d\-Version: Wordpress Contact Form 7 PDF\-(?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
Readme:
|
||||
path: readme.txt
|
||||
affylite:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -4371,6 +4387,14 @@ plugins:
|
||||
agregador-de-links-pastando:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
agy-verification:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: languages/agy-verification.pot
|
||||
pattern: !ruby/regexp '/"Project\-Id\-Version: Agy Verification (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
Readme:
|
||||
path: readme.txt
|
||||
ah-o2:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -5316,6 +5340,9 @@ plugins:
|
||||
path: changelog.txt
|
||||
pattern: !ruby/regexp /^= (?<v>\d+\.[\.\d]+)/i
|
||||
version: true
|
||||
altchecker:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
alter:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -6318,6 +6345,9 @@ plugins:
|
||||
version: true
|
||||
Readme:
|
||||
path: readme.txt
|
||||
api2cart-live-shipping-4-woocommerce:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
apijoin-gumroad:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -6454,6 +6484,9 @@ plugins:
|
||||
appleicons:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
applicantpro:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
application-banner-google-playstore-applestore:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -7174,6 +7207,12 @@ plugins:
|
||||
assign-wp-roles-for-ithemes-exchange:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
assistant7:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/css/assistant7-public.css
|
||||
- public/js/assistant7-public.js
|
||||
version: true
|
||||
associative-dictionary-widget:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -9313,6 +9352,9 @@ plugins:
|
||||
- public/css/azwwfu-woocommerce-file-uploads-public.css
|
||||
- public/js/azwwfu-woocommerce-file-uploads-public.js
|
||||
version: true
|
||||
b-forms:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
b-pinterest-feed:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -10409,6 +10451,9 @@ plugins:
|
||||
path: CHANGELOG.MD
|
||||
pattern: !ruby/regexp /\#\# (?<v>\d+\.[\.\d]+)/
|
||||
version: true
|
||||
beachliga-iframe:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
beacon-for-helpscout:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -11101,6 +11146,9 @@ plugins:
|
||||
bettings-widget:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
beycanpress-advanced-story:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
beyond-job-search:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -14060,6 +14108,9 @@ plugins:
|
||||
path: languages/bridgy.pot
|
||||
pattern: !ruby/regexp /"Project\-Id\-Version:\ Bridgy (?<v>\d+\.[\.\d]+)/i
|
||||
version: true
|
||||
brief-message:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
brightcove-video-connect:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
@@ -15142,6 +15193,9 @@ plugins:
|
||||
bulk-product-price-change:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
bulk-products-add:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
bulk-resize-media:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -17731,6 +17785,9 @@ plugins:
|
||||
version: true
|
||||
Readme:
|
||||
path: readme.txt
|
||||
change-password-protected-message:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
change-permalink-helper:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -20776,6 +20833,12 @@ plugins:
|
||||
conditional-statements:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
conditional-taxonomy-option:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/css/cto-acf-public.css
|
||||
- public/js/cto-acf-public.js
|
||||
version: true
|
||||
conductrics-webactions:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -22206,6 +22269,9 @@ plugins:
|
||||
- public/js/corona-virus-data-public.js
|
||||
- public/js/utils.js
|
||||
version: true
|
||||
corona-virus-live-ticker:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
coronavirus:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -25069,6 +25135,13 @@ plugins:
|
||||
dark-site:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
darklup-lite-wp-dark-mode:
|
||||
QueryParameter:
|
||||
files:
|
||||
- assets/css/darkluplite-style.css
|
||||
version: true
|
||||
Readme:
|
||||
path: readme.txt
|
||||
darkmode:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -27703,6 +27776,9 @@ plugins:
|
||||
doar-paypal-brasil:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
dobar:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
dobsondev-shortcodes:
|
||||
ChangeLog:
|
||||
class: BodyPattern
|
||||
@@ -28280,6 +28356,9 @@ plugins:
|
||||
dream-broker-embed:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
dreamapi:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
dreamfox-helpspot-live-lookup:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -28937,9 +29016,15 @@ plugins:
|
||||
e-namad-shamed-logo-manager:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
e-pos:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
e-prime-grammar-checker-by-metapult:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
e-sitef-payment-gateway:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
e-transactions-wc:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -30690,6 +30775,9 @@ plugins:
|
||||
edd-product-faq:
|
||||
Readme:
|
||||
path: Readme.txt
|
||||
edd-product-slider:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
edd-purchase-details:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
@@ -31792,6 +31880,9 @@ plugins:
|
||||
embed-light-field-photos:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
embed-link:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
embed-mixcloud-advanced:
|
||||
Readme:
|
||||
path:
|
||||
@@ -33537,6 +33628,9 @@ plugins:
|
||||
export-2-multisite:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
export-assist:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
export-comments:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -33626,6 +33720,9 @@ plugins:
|
||||
express-checkout:
|
||||
Readme:
|
||||
path: README.txt
|
||||
express-pay-card:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
express-pay-erip:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -36979,6 +37076,9 @@ plugins:
|
||||
- vendor/world-flags-sprite/stylesheets/flags16.css
|
||||
- public/js/anwpfl-public.min.js
|
||||
- public/css/styles-compatible.css
|
||||
- public/css/styles.min.css
|
||||
- vendor/modaal/modaal.min.css
|
||||
- vendor/modaal/modaal.min.js
|
||||
version: true
|
||||
ChangeLog:
|
||||
class: BodyPattern
|
||||
@@ -37461,6 +37561,9 @@ plugins:
|
||||
forumconverter:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
forumial-sso:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
fossin-badge:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -37999,6 +38102,9 @@ plugins:
|
||||
frontrom:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
fs-lazy-load:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
fs-link-posts:
|
||||
Readme:
|
||||
path: README.txt
|
||||
@@ -40388,6 +40494,9 @@ plugins:
|
||||
version: true
|
||||
Readme:
|
||||
path: readme.txt
|
||||
go-wagon:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
goabroad-hq:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -43517,6 +43626,9 @@ plugins:
|
||||
hh-sortable:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
hhd-flatsome-vertical-menu:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
hicopy:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -43644,6 +43756,9 @@ plugins:
|
||||
hide-featured-image:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
hide-featured-image-on-all-single-pagepost:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
hide-fields:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -44415,6 +44530,15 @@ plugins:
|
||||
hotscot-page-gallery:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
hotspot:
|
||||
QueryParameter:
|
||||
files:
|
||||
- assets/frontend/css/xolo-hotspot-public.css
|
||||
- assets/frontend/js/jquery.powertip.min.js
|
||||
- assets/frontend/js/xolo-hotspot-public.js
|
||||
version: true
|
||||
Readme:
|
||||
path: readme.txt
|
||||
hotspots:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -45680,6 +45804,9 @@ plugins:
|
||||
im-yell:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
image-align-addon:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
image-alt-tag-reminder:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -48361,6 +48488,9 @@ plugins:
|
||||
japanese-font-for-tinymce:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
japanese-lorem-block:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
japansoc-voting-button-for-blogs:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -49908,9 +50038,25 @@ plugins:
|
||||
kaskus-emoticons:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
kassa-at-for-woocommerce:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: languages/kassa-at-for-woocommerce-de_DE_formal.po
|
||||
pattern: !ruby/regexp '/ct\-Id\-Version: KASSA\.AT For WooCommerce (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
Readme:
|
||||
path: readme.txt
|
||||
kata-plus:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
QueryParameter:
|
||||
files:
|
||||
- assets/src/css/libraries/grid.css
|
||||
- assets/src/css/frontend/theme-styles.css
|
||||
- assets/src/css/frontend/sticky-box.css
|
||||
- assets/src/js/frontend/sticky-box.js
|
||||
- assets/src/js/frontend/kata-plus-inline.js
|
||||
version: true
|
||||
katalyst-timthumb:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -51660,6 +51806,9 @@ plugins:
|
||||
layouts-for-wpbakery:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
layouts-importer:
|
||||
Readme:
|
||||
path: README.txt
|
||||
lazy-blog-stats:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -53586,6 +53735,12 @@ plugins:
|
||||
lktags-linkedin-insight-tags:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
llc-tax:
|
||||
QueryParameter:
|
||||
files:
|
||||
- assets/css/llc_main.css
|
||||
- assets/js/llc_main.js
|
||||
version: true
|
||||
lm-easy-emoticons:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -55545,6 +55700,14 @@ plugins:
|
||||
- inc/frontend/css/mana-gateway-frontend.css
|
||||
- inc/frontend/js/mana-gateway-frontend.js
|
||||
version: true
|
||||
manage-admin-columns:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: languages/manage-admin-columns.pot
|
||||
pattern: !ruby/regexp '/roject\-Id\-Version: Manage Admin Columns (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
Readme:
|
||||
path: readme.txt
|
||||
manage-inactive-subsites:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
@@ -58242,6 +58405,9 @@ plugins:
|
||||
music-player-for-easy-digital-downloads:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
music-player-for-elementor:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
music-player-for-woocommerce:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -58436,6 +58602,14 @@ plugins:
|
||||
path: package.json
|
||||
key: version
|
||||
version: true
|
||||
my-fastapp:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: languages/my-fastapp.pot
|
||||
pattern: !ruby/regexp '/"Project\-Id\-Version: MyFastApp \(DEV\) (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
Readme:
|
||||
path: readme.txt
|
||||
my-faves:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -58833,6 +59007,9 @@ plugins:
|
||||
version: true
|
||||
Readme:
|
||||
path: readme.txt
|
||||
namaste-lms-bridge-for-gamipress:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
namaz-vakti:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -59019,6 +59196,9 @@ plugins:
|
||||
path: package.json
|
||||
key: version
|
||||
version: true
|
||||
nelio-unlocker:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
neo-bootstrap-carousel:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -59863,6 +60043,9 @@ plugins:
|
||||
version: true
|
||||
Readme:
|
||||
path: readme.txt
|
||||
notice-before-tables:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
notice-block:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -60094,6 +60277,12 @@ plugins:
|
||||
files:
|
||||
- public/css/nutritionwp-public.css
|
||||
version: true
|
||||
nutsforpress:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
nutsforpress-smtp-mail:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
nuttifox-support:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -61896,6 +62085,9 @@ plugins:
|
||||
password-policy:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
password-policy-manager:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
password-protect-page:
|
||||
Readme:
|
||||
path: README.txt
|
||||
@@ -63340,6 +63532,9 @@ plugins:
|
||||
polylang:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
pomo-uploader:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
poor-mans-wp-seo:
|
||||
Comment:
|
||||
pattern: !ruby/regexp /Poor Man's WordPress SEO (?<v>\d+\.[\.\d]+)/i
|
||||
@@ -63889,6 +64084,16 @@ plugins:
|
||||
post-snippets:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
post-status-indicator:
|
||||
Readme:
|
||||
path:
|
||||
- readme.txt
|
||||
- README.md
|
||||
ComposerFile:
|
||||
class: ConfigParser
|
||||
path: package.json
|
||||
key: version
|
||||
version: true
|
||||
post-tags-and-categories-for-pages:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -64690,6 +64895,9 @@ plugins:
|
||||
primary-addon-for-elementor:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
primary-cat:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
primer-by-chloedigital:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -68305,6 +68513,9 @@ plugins:
|
||||
version: true
|
||||
Readme:
|
||||
path: README.txt
|
||||
roam-block:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
rob-rat-out-blocker:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -68889,6 +69100,9 @@ plugins:
|
||||
sakolawp-lite:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
saksh-escrow-system:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
saksh-private-ielts-preparation:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -69664,6 +69878,11 @@ plugins:
|
||||
version: true
|
||||
Readme:
|
||||
path: README.txt
|
||||
searchili:
|
||||
Readme:
|
||||
path:
|
||||
- readme.txt
|
||||
- README.md
|
||||
searching-for-posts:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -70353,6 +70572,9 @@ plugins:
|
||||
serviceform-pixel:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
session-mirror:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
sessions:
|
||||
ChangeLog:
|
||||
class: BodyPattern
|
||||
@@ -71064,6 +71286,14 @@ plugins:
|
||||
show-preview-for-revision:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
show-product-variations-for-woocommerce:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/css/wsv-public.css
|
||||
- public/css/datatables.min.css
|
||||
- public/js/datatables.min.js
|
||||
- public/js/wsv-public.js
|
||||
version: true
|
||||
show-remote-ip:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -76904,6 +77134,14 @@ plugins:
|
||||
the-preloader:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
the-publisher-desk-ads:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
ComposerFile:
|
||||
class: ConfigParser
|
||||
path: package.json
|
||||
key: version
|
||||
version: true
|
||||
the-publisher-desk-ads-txt:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -78145,6 +78383,9 @@ plugins:
|
||||
tracking-code-manager:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
tracking-for-ups:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
tracking-la-poste-for-woocommerce:
|
||||
ChangeLog:
|
||||
class: BodyPattern
|
||||
@@ -78407,6 +78648,9 @@ plugins:
|
||||
version: true
|
||||
Readme:
|
||||
path: README.txt
|
||||
truepush-free-web-push-notifications:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
trusona:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -78553,6 +78797,9 @@ plugins:
|
||||
tutor-lms-author:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
tutor-lms-elementor-addons:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
tutor-lms-migration-tool:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -79367,6 +79614,9 @@ plugins:
|
||||
ultimate-social-media-plus:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
ultimate-social-share:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
ultimate-tables:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -79568,6 +79818,9 @@ plugins:
|
||||
umba-payment-gateway-free-for-woocommerce:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
unbloater:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
unbounce:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -80425,6 +80678,9 @@ plugins:
|
||||
path: package.json
|
||||
key: version
|
||||
version: true
|
||||
value-auth-two-factor-and-access-control:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
value-converter:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -81507,6 +81763,9 @@ plugins:
|
||||
walee-tracking:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
walili-pricing-table:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
wallet-system-for-woocommerce:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
@@ -82210,6 +82469,9 @@ plugins:
|
||||
wc-shippo-shipping:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
wc-shipstation-shipping:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
wc-shortcodes:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -84867,6 +85129,9 @@ plugins:
|
||||
files:
|
||||
- assets/css/style.css
|
||||
version: true
|
||||
woo-products-slider-pro:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
woo-products-widgets-for-elementor:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -86415,6 +86680,9 @@ plugins:
|
||||
path: langs/wordpresscom-stats-smiley-remover-fr_FR.po
|
||||
pattern: !ruby/regexp '/on: WordPress\.com Stats Smiley Remover v(?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
work-time-allocator:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
worker:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -86917,6 +87185,9 @@ plugins:
|
||||
- public/css/wp-awesome-insta-widget-public.css
|
||||
- public/js/wp-awesome-insta-widget-public.js
|
||||
version: true
|
||||
wp-awesome-quotes:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
wp-aws-s3:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
@@ -87937,6 +88208,9 @@ plugins:
|
||||
- public/css/wp-discord.css
|
||||
- public/js/wp-discord.js
|
||||
version: true
|
||||
wp-discord-invite:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
wp-dispensary:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -95340,6 +95614,9 @@ plugins:
|
||||
zhanzhangb-tcdn:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
zhu-development-tools:
|
||||
Readme:
|
||||
path: readme.txt
|
||||
zi-hide-featured-image:
|
||||
ComposerFile:
|
||||
class: ConfigParser
|
||||
|
||||
119
spec/fixtures/dynamic_finders/expected.yml
vendored
119
spec/fixtures/dynamic_finders/expected.yml
vendored
@@ -1825,7 +1825,9 @@ plugins:
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/advanced-sermons/styling/asp-frontend.css?ver=1.8
|
||||
confidence: 10
|
||||
- http://wp.lab/wp-content/plugins/advanced-sermons/styling/css/asp-frontend.css?ver=1.8
|
||||
- http://wp.lab/wp-content/plugins/advanced-sermons/styling/media-player/asp-media-player.css?ver=1.8
|
||||
confidence: 30
|
||||
advanced-spoiler:
|
||||
QueryParameter:
|
||||
number: 2.02
|
||||
@@ -2070,6 +2072,13 @@ plugins:
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/affilicious/package.json, Match: ''0.9.14'''
|
||||
affliates-manager-prime-for-wc-lite:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/affliates-manager-prime-for-wc-lite/languages/ciwcamp-affliate-manager.pot,
|
||||
Match: ''d-Version: Wordpress Contact Form 7 PDF-1.0.0'''
|
||||
afs-analytics-for-woocommerce:
|
||||
Comment:
|
||||
number: '1.1'
|
||||
@@ -2141,6 +2150,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/agile-whatsapp-share/languages/agile_whatsapp_share.po,
|
||||
Match: ''"Project-Id-Version: Whatsapp Share v1.0'''
|
||||
agy-verification:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/agy-verification/languages/agy-verification.pot,
|
||||
Match: ''"Project-Id-Version: Agy Verification 1.0.0'''
|
||||
ahachat-messenger-marketing:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
@@ -3480,6 +3496,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/assign-missing-categories/languages/assign-missing-categories.pot,
|
||||
Match: ''t-Id-Version: Assign Missing Categories 1.2'''
|
||||
assistant7:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/assistant7/public/css/assistant7-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/assistant7/public/js/assistant7-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
asterisk-web-callback:
|
||||
TranslationFile:
|
||||
number: '0.1'
|
||||
@@ -9967,6 +9991,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/conditional-popup-creator/assets/js/jBox.all.min.js?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/conditional-popup-creator/assets/js/main.js?ver=1.0
|
||||
confidence: 40
|
||||
conditional-taxonomy-option:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/conditional-taxonomy-option/public/css/cto-acf-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/conditional-taxonomy-option/public/js/cto-acf-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
conekta-payment-gateway:
|
||||
ChangeLog:
|
||||
number: 3.0.5
|
||||
@@ -11753,6 +11785,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/dark-login-screen/langs/dark_login_screen-en_AU.po,
|
||||
Match: ''Project-Id-Version: Stronger Admin Bar v1.0'''
|
||||
darklup-lite-wp-dark-mode:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/darklup-lite-wp-dark-mode/assets/css/darkluplite-style.css?ver=1.0.0
|
||||
confidence: 10
|
||||
darkmode:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -17020,7 +17059,10 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/vendor/world-flags-sprite/stylesheets/flags16.css?ver=0.4.2
|
||||
- http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/public/js/anwpfl-public.min.js?ver=0.4.2
|
||||
- http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/public/css/styles-compatible.css?ver=0.4.2
|
||||
confidence: 50
|
||||
- http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/public/css/styles.min.css?ver=0.4.2
|
||||
- http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/vendor/modaal/modaal.min.css?ver=0.4.2
|
||||
- http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/vendor/modaal/modaal.min.js?ver=0.4.2
|
||||
confidence: 80
|
||||
ChangeLog:
|
||||
number: 0.10.4
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
@@ -20334,6 +20376,15 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/hotmart-wp/languages/hotmart-wp-pt_BR.po,
|
||||
Match: ''"Project-Id-Version: Hotmart WP 0.3.3'''
|
||||
hotspot:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/hotspot/assets/frontend/css/xolo-hotspot-public.css?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/hotspot/assets/frontend/js/jquery.powertip.min.js?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/hotspot/assets/frontend/js/xolo-hotspot-public.js?ver=1.0
|
||||
confidence: 30
|
||||
hover-effects:
|
||||
QueryParameter:
|
||||
number: '2.1'
|
||||
@@ -22660,6 +22711,24 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/kanzu-support-desk/assets/css/ksd-public.css?ver=2.4.5
|
||||
- http://wp.lab/wp-content/plugins/kanzu-support-desk/assets/js/ksd-public.js?ver=2.4.5
|
||||
confidence: 20
|
||||
kassa-at-for-woocommerce:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/kassa-at-for-woocommerce/languages/kassa-at-for-woocommerce-de_DE_formal.po,
|
||||
Match: ''ct-Id-Version: KASSA.AT For WooCommerce 1.0.0'''
|
||||
kata-plus:
|
||||
QueryParameter:
|
||||
number: 1.0.3
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/kata-plus/assets/src/css/libraries/grid.css?ver=1.0.3
|
||||
- http://wp.lab/wp-content/plugins/kata-plus/assets/src/css/frontend/theme-styles.css?ver=1.0.3
|
||||
- http://wp.lab/wp-content/plugins/kata-plus/assets/src/css/frontend/sticky-box.css?ver=1.0.3
|
||||
- http://wp.lab/wp-content/plugins/kata-plus/assets/src/js/frontend/sticky-box.js?ver=1.0.3
|
||||
- http://wp.lab/wp-content/plugins/kata-plus/assets/src/js/frontend/kata-plus-inline.js?ver=1.0.3
|
||||
confidence: 50
|
||||
katalyst-video-plus:
|
||||
QueryParameter:
|
||||
number: 3.2.1
|
||||
@@ -24324,6 +24393,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/livetwitch/public/css/twitch-public.css?ver=0.0.2
|
||||
- http://wp.lab/wp-content/plugins/livetwitch/public/js/twitch-public.js?ver=0.0.2
|
||||
confidence: 20
|
||||
llc-tax:
|
||||
QueryParameter:
|
||||
number: '1.1'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/llc-tax/assets/css/llc_main.css?ver=1.1
|
||||
- http://wp.lab/wp-content/plugins/llc-tax/assets/js/llc_main.js?ver=1.1
|
||||
confidence: 20
|
||||
lnd-for-wp:
|
||||
QueryParameter:
|
||||
number: 0.1.0
|
||||
@@ -25435,6 +25512,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/mana-gateway/inc/frontend/css/mana-gateway-frontend.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/mana-gateway/inc/frontend/js/mana-gateway-frontend.js?ver=1.0.0
|
||||
confidence: 20
|
||||
manage-admin-columns:
|
||||
TranslationFile:
|
||||
number: 1.4.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/manage-admin-columns/languages/manage-admin-columns.pot,
|
||||
Match: ''roject-Id-Version: Manage Admin Columns 1.4.0'''
|
||||
manage-inactive-subsites:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
@@ -27750,6 +27834,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/my-eyes-are-up-here/package.json, Match:
|
||||
''1.1.9'''
|
||||
my-fastapp:
|
||||
TranslationFile:
|
||||
number: 1.0.1
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/my-fastapp/languages/my-fastapp.pot, Match:
|
||||
''"Project-Id-Version: MyFastApp (DEV) 1.0.1'''
|
||||
my-faves:
|
||||
QueryParameter:
|
||||
number: 1.1.1
|
||||
@@ -31831,6 +31922,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/post-sliders/js/owl.carousel.js?ver=1.0
|
||||
confidence: 10
|
||||
post-status-indicator:
|
||||
ComposerFile:
|
||||
number: 1.0.1
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/post-status-indicator/package.json, Match:
|
||||
''1.0.1'''
|
||||
post-theming:
|
||||
TranslationFile:
|
||||
number: '0.3'
|
||||
@@ -37381,6 +37479,16 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/show-posts/atw-posts-style.min.css?ver=1.3.9
|
||||
confidence: 10
|
||||
show-product-variations-for-woocommerce:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/css/wsv-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/css/datatables.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/js/datatables.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/js/wsv-public.js?ver=1.0.0
|
||||
confidence: 40
|
||||
show-remote-ip:
|
||||
QueryParameter:
|
||||
number: 0.0.1
|
||||
@@ -41988,6 +42096,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/the-post-grid/assets/css/thepostgrid.css?ver=2.2.2
|
||||
confidence: 10
|
||||
the-publisher-desk-ads:
|
||||
ComposerFile:
|
||||
number: 1.0.0
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/the-publisher-desk-ads/package.json, Match:
|
||||
''1.0.0'''
|
||||
the-publisher-desk-read-more:
|
||||
ComposerFile:
|
||||
number: 1.0.0
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,220 @@
|
||||
# Agy is a powerful solution to add any kind of verification restriction on your website. Easy to setup, optimized for all devices, and modern design option to match your
|
||||
# Copyright (C) YEAR Marko Radulovic
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <upss070288@gmail.com>, 2021.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Agy Verification 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-01-05 19:48+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: agy-verification.php:69
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: agy-verification.php:83
|
||||
msgid "Docs & FAQs"
|
||||
msgstr ""
|
||||
|
||||
#: agy-verification.php:88
|
||||
msgid "GitHub"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:24
|
||||
msgid "You have successfully saved your settings."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:93
|
||||
#, php-format
|
||||
msgid "<a href=\"%s\" target=\"%s\" class=\"%s\">"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:145
|
||||
#, php-format
|
||||
msgid "<a href=\"%s\" target=\"%s\"><img src=\"%s\" class=\"%s\"></a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:159
|
||||
msgid "_blank"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:161
|
||||
msgid "agy-logo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:176 includes/Agy_Dashboard.php:262
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:177 includes/Agy_Dashboard.php:267
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:179 includes/Agy_Dashboard.php:272
|
||||
msgid "Design"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:186
|
||||
msgid "Agy Verification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:222
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:244
|
||||
msgid "Set your General settings."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:249
|
||||
msgid "Set all of the text for your modal verification."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:254
|
||||
msgid "Set the desirable design for the modal verification."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:278
|
||||
msgid "Enable / Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:283
|
||||
msgid "Show for unregistered users only"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:288
|
||||
msgid "Activate Debug mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:293
|
||||
msgid "Exit URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:299
|
||||
msgid "Headline"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:304
|
||||
msgid "Subtitle"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:309
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:314
|
||||
msgid "Enter Button Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:319
|
||||
msgid "Exit Button Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:324
|
||||
msgid "Separator Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:329
|
||||
msgid "Slogan"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:335
|
||||
msgid "Background color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:340
|
||||
msgid "Z-Index ( Overlay )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:345
|
||||
msgid "Content Box width ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:350
|
||||
msgid "Headline Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:355
|
||||
msgid "Headline Font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:360
|
||||
msgid "Subtitle Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:365
|
||||
msgid "Subtitle Font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:370
|
||||
msgid "Message Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:375
|
||||
msgid "Message Font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:380
|
||||
msgid "Enter Button background color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:385
|
||||
msgid "Enter Button font color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:390
|
||||
msgid "Enter Button border style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:395
|
||||
msgid "Enter Button border color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:400
|
||||
msgid "Enter Button font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:405
|
||||
msgid "Exit Button background color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:410
|
||||
msgid "Exit Button font color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:415
|
||||
msgid "Exit Button border style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:420
|
||||
msgid "Exit Button border color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:425
|
||||
msgid "Exit Button font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:430
|
||||
msgid "Separator Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:435
|
||||
msgid "Separator Font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:440
|
||||
msgid "Slogan Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:445
|
||||
msgid "Slogan Font size ( in px )"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,159 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: KASSA.AT For WooCommerce 1.0.0\n"
|
||||
"POT-Creation-Date: 2020-12-29 09:28+0100\n"
|
||||
"PO-Revision-Date: 2020-12-29 09:28+0100\n"
|
||||
"Last-Translator: manuelschultz\n"
|
||||
"Language-Team: KASSA.AT\n"
|
||||
"Language: de_DE@formal\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.4.2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_attr_e;esc_html__\n"
|
||||
"X-Poedit-SearchPath-0: api-connection.php\n"
|
||||
"X-Poedit-SearchPath-1: create-menus.php\n"
|
||||
"X-Poedit-SearchPath-2: kassa-at-for-woocommerce.php\n"
|
||||
"X-Poedit-SearchPath-3: stock-syncro.php\n"
|
||||
|
||||
#: create-menus.php:33
|
||||
msgid "You do not have sufficient permissions to access this page."
|
||||
msgstr ""
|
||||
"Sie haben nicht die nötigen Berechtigungen um auf die Seite zuzugreifen."
|
||||
|
||||
#: create-menus.php:152
|
||||
msgid "KASSA.AT connection:"
|
||||
msgstr "Verbindung zu KASSA.AT:"
|
||||
|
||||
#: create-menus.php:155
|
||||
msgid "You are already connected to a KASSA.AT account."
|
||||
msgstr "Sie sind bereits mit einer KASSA.AT-Konto. verbunden."
|
||||
|
||||
#: create-menus.php:158
|
||||
msgid "Remove connection to KASSA.AT."
|
||||
msgstr "Entfernen Sie die Verbindung zu KASSA.AT."
|
||||
|
||||
#: create-menus.php:166
|
||||
msgid "Connect with KASSA.AT account"
|
||||
msgstr "Mit KASSA.AT Verbinden"
|
||||
|
||||
#: create-menus.php:171
|
||||
msgid "Dont have a KASSA.AT account? Create one!"
|
||||
msgstr "Haben Sie kein KASSA.AT-Konto? Erstellen Sie eines!"
|
||||
|
||||
#: create-menus.php:177
|
||||
msgid "Synchronize Stocks:"
|
||||
msgstr "Synchronisieren Sie den Lagerstand:"
|
||||
|
||||
#: create-menus.php:178
|
||||
msgid "Choose warehouse:"
|
||||
msgstr "Wählen Sie ein Lager:"
|
||||
|
||||
#: create-menus.php:188
|
||||
msgid "Save changes!"
|
||||
msgstr "Änderungen speichern!"
|
||||
|
||||
#: create-menus.php:195
|
||||
msgid "Synchronize stocks with KASSA.AT."
|
||||
msgstr "Lagerstände mit KASSA.AT synchronisieren."
|
||||
|
||||
#: create-menus.php:196
|
||||
msgid "Use KASSA.AT-data"
|
||||
msgstr "KASSA.AT-Daten als Master verwenden"
|
||||
|
||||
#: create-menus.php:203
|
||||
msgid "Synchronize!"
|
||||
msgstr "Synchronisieren!"
|
||||
|
||||
#: kassa-at-for-woocommerce.php:167
|
||||
msgid "Please follow these instructions to use the plugin:"
|
||||
msgstr "Bitte folgen Sie den Anweisungen, um das Plugin einzurichten:"
|
||||
|
||||
#: kassa-at-for-woocommerce.php:171
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you don't have a KASSA.AT account please create one <a href=\"%s\">here</"
|
||||
"a>."
|
||||
msgstr ""
|
||||
"Wenn Sie kein KASSA.AT Konto haben erstellen Sie eines <a href=\"%s\">hier</"
|
||||
"a>."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:172
|
||||
msgid ""
|
||||
"Use the Button \"Connect with KASSA.AT account\" to connect to the register-"
|
||||
"service."
|
||||
msgstr ""
|
||||
"Klicken Sie den Knopf \"Mit KASSA.AT Verbinden\" um die Verbindung "
|
||||
"herzustellen."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:176
|
||||
msgid ""
|
||||
"Login the KASSA.AT site and create your articles. Note that in order to have "
|
||||
"connect the WP-site and the KASSA.AT-account, you need to fill in the "
|
||||
"\"Artikelnummer\"-field with your article numbers."
|
||||
msgstr ""
|
||||
"Loggen Sie sich in Ihr KASSA.AT Konto ein und legen Sie Ihre Artikel an. "
|
||||
"Beachten Sie, dass Sie das Feld \"Artikelnummer\" ausfüllen (Dies wird "
|
||||
"später noch wichtig)."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:177
|
||||
msgid ""
|
||||
"In your KASSA.AT account, create a warehouse and assign the articles to it."
|
||||
msgstr ""
|
||||
"Legen Sie dann ein Lager in Ihrem KASSA.AT Konto an und befüllen Sie dieses "
|
||||
"mit Ihren Artikeln."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:178
|
||||
msgid ""
|
||||
"Go back to your WordPress page, choose your register-warehouse from your "
|
||||
"KASSA.AT's warehouses."
|
||||
msgstr ""
|
||||
"Gehen Sie nun zurück zu Ihrer WordPress Seite und wählen Sie das Lager aus, "
|
||||
"das Sie eben befüllt haben."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:179
|
||||
msgid ""
|
||||
"Go to your woocommerce-article section and create or edit your articles, use "
|
||||
"the article-number from your KASSA.AT-articles in the \"SKU\"-field and "
|
||||
"activate stock-management."
|
||||
msgstr ""
|
||||
"Gehen Sie zu der Artikelübersicht von Woocommerce und erstellen Sie hier "
|
||||
"Ihre Artikel oder bearbeiten Sie diese. Achten Sie bitte darauf, dass Sie "
|
||||
"die Artikelnummer Ihrer KASSA.AT Artikel in das \"Artikelnummer\"-Feld "
|
||||
"eintragen und aktivieren Sie \"Lagerbestand verwalten\"."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:180
|
||||
msgid ""
|
||||
"Go to the KASSA.AT-menu in your wordpress-site and press the \"Synchronize!"
|
||||
"\" Button."
|
||||
msgstr ""
|
||||
"Gehen Sie auf Ihrer WordPress-Seite in das KASSA.AT Menü zurück und drücken "
|
||||
"Sie auf den \"Synchronisieren!\"-Knopf."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:182
|
||||
msgid ""
|
||||
"And here we go. Whenever a customer buys anything in your local store or a "
|
||||
"customer orders something in your online-store, your KASSA.AT-service will "
|
||||
"have trace of that and will always check, that the onlineshop displays the "
|
||||
"correct amount of items in stock."
|
||||
msgstr ""
|
||||
"Und schon sind wir fertig. Wann immer ein Kunde etwas in Ihrem Geschäft "
|
||||
"kauft, oder etwas in Ihrem Onlineshop bestellt Werden die Lagerstände von "
|
||||
"beiden Systemen angepasst, sodass Sie immer den korrekten Lagerstand im "
|
||||
"Blick haben können."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:188
|
||||
#, php-format
|
||||
msgid "If you have any questions with the setting up, feel free to %s."
|
||||
msgstr "Wenn Sie irgendwelche Fragen haben, %s."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:192
|
||||
msgid "contact us"
|
||||
msgstr "kontaktieren Sie uns"
|
||||
|
||||
#: stock-syncro.php:96
|
||||
#, php-format
|
||||
msgid "Woocommerce Invoice: %s"
|
||||
msgstr "Woocommerce-Rechnung: %s"
|
||||
@@ -0,0 +1,101 @@
|
||||
# Copyright (C) 2021 Santiago Becerra
|
||||
# This file is distributed under the same license as the Manage Admin Columns plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Manage Admin Columns 1.4.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/manage-admin-columns\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-01-04T01:22:42+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: manage-admin-columns\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Manage Admin Columns"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/sanbec/manage-admin-columns"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin adds a featured image column to the WordPress admin."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Santiago Becerra"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpcombo.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:83
|
||||
#: includes/class-firstcolumnfeaturedimage.php:97
|
||||
msgid "Manage Admin Columns Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:98
|
||||
msgid "Featured Image Column"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:116
|
||||
msgid "Style Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:123
|
||||
msgid "Choose the size and shape of the featured image at the list table"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:134
|
||||
msgid "Featured Image Size:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:163
|
||||
msgid "Shape:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:174
|
||||
msgid "Circle"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:177
|
||||
msgid "Square"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:188
|
||||
msgid "Lightbox"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:199
|
||||
msgid "Open lightbox on image click"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:209
|
||||
msgid "Border"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:220
|
||||
msgid "Show border on hover"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:225
|
||||
msgid "Post Types"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:233
|
||||
msgid "Select the post types where you want the featured image column to be displayed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:307
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:363
|
||||
#: includes/class-firstcolumnfeaturedimage.php:364
|
||||
msgid "No image"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,52 @@
|
||||
# Copyright (C) 2020 Teamonair s.r.l.
|
||||
# This file is distributed under the same license as the My FastAPP plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: MyFastApp (DEV) 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/my-fastapp\n"
|
||||
"Last-Translator: Francesco Colombo <francesco@teamonair.com>\n"
|
||||
"Language-Team: Francesco Colombo <francesco@teamonair.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-12-07T19:25:08+01:00\n"
|
||||
"PO-Revision-Date: 2020-12-07 10:10+02\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: my-fastapp\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "MyFastApp"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.myfastapp.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin allows you to use your WordPress site as a backend to create your mobile application for iOS and Android. Configure and build your mobile applications directly from the WordPress site."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Teamonair s.r.l."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://myfastapp.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:29
|
||||
#: includes/class-admin.php:30
|
||||
msgid "My FastAPP"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:38
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:39
|
||||
msgid "Menu"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:40
|
||||
msgid "Download Builds"
|
||||
msgstr ""
|
||||
51
spec/fixtures/dynamic_finders/plugin_version/post-status-indicator/composer_file/package.json
vendored
Normal file
51
spec/fixtures/dynamic_finders/plugin_version/post-status-indicator/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
{
|
||||
"name": "psi-react-app",
|
||||
"version": "1.0.1",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@wordpress/components": "^11.1.3",
|
||||
"react": "^16.14.0",
|
||||
"react-dom": "^16.14.0",
|
||||
"react-router-dom": "^5.1.2",
|
||||
"use-debounce": "^5.1.0"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "webpack --watch",
|
||||
"build": "cross-env NODE_ENV=production node_modules/.bin/webpack"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "react-app"
|
||||
},
|
||||
"browserslist": {
|
||||
"production": [
|
||||
">0.2%",
|
||||
"not dead",
|
||||
"not op_mini all"
|
||||
],
|
||||
"development": [
|
||||
"last 1 chrome version",
|
||||
"last 1 firefox version",
|
||||
"last 1 safari version"
|
||||
]
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.9.0",
|
||||
"@babel/preset-env": "^7.9.0",
|
||||
"@babel/preset-react": "^7.9.4",
|
||||
"babel-loader": "^8.1.0",
|
||||
"browser-sync": "^2.26.7",
|
||||
"browser-sync-webpack-plugin": "^2.2.2",
|
||||
"cross-env": "^7.0.2",
|
||||
"css-loader": "^3.4.2",
|
||||
"file-loader": "^6.0.0",
|
||||
"mini-css-extract-plugin": "^0.9.0",
|
||||
"node-sass": "^4.13.1",
|
||||
"sass-loader": "^8.0.2",
|
||||
"webpack": "^4.42.1",
|
||||
"webpack-cli": "^3.3.11"
|
||||
},
|
||||
"description": "Post Status Indicator WordPress plugin React dashboard",
|
||||
"main": "webpack.config.js",
|
||||
"author": "Sean Hayes",
|
||||
"license": "GPL-2.0+"
|
||||
}
|
||||
@@ -572,6 +572,8 @@
|
||||
|
||||
<!-- advanced-sermons -->
|
||||
<link rel="stylesheet" id="asp-frontend-styling-css" href="http://wp.lab/wp-content/plugins/advanced-sermons/styling/asp-frontend.css?ver=1.8" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="asp-frontend-styling-css" href="http://wp.lab/wp-content/plugins/advanced-sermons/styling/css/asp-frontend.css?ver=1.8" media="all">
|
||||
<link rel="stylesheet" id="asp-media-player-css" href="http://wp.lab/wp-content/plugins/advanced-sermons/styling/media-player/asp-media-player.css?ver=1.8" media="all">
|
||||
|
||||
|
||||
<!-- advanced-spoiler -->
|
||||
@@ -1202,6 +1204,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/aspen-to-weaver-xtreme/js/aspen2wx_jslib.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- assistant7 -->
|
||||
<link rel="stylesheet" id="assistant7-css" href="http://wp.lab/wp-content/plugins/assistant7/public/css/assistant7-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/assistant7/public/js/assistant7-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- astra-widgets -->
|
||||
<link rel="stylesheet" id="astra-widgets-style-css" href="http://wp.lab/wp-content/plugins/astra-widgets/assets/css/unminified/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
@@ -3574,6 +3581,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/conditional-popup-creator/assets/js/main.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- conditional-taxonomy-option -->
|
||||
<link rel="stylesheet" id="cto-acf-css" href="http://wp.lab/wp-content/plugins/conditional-taxonomy-option/public/css/cto-acf-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/conditional-taxonomy-option/public/js/cto-acf-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- conformis-cookie-banner -->
|
||||
<script src="http://wp.lab/wp-content/plugins/conformis-cookie-banner/js/main.js?ver=0.1.0"></script>
|
||||
<link rel="stylesheet" id="conformis_style-css" href="http://wp.lab/wp-content/plugins/conformis-cookie-banner/css/main.css?ver=0.1.0" media="all">
|
||||
@@ -4222,6 +4234,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/dakpion/public/js/dakpion-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- darklup-lite-wp-dark-mode -->
|
||||
<link rel="stylesheet" id="darkluplite-style-css" href="http://wp.lab/wp-content/plugins/darklup-lite-wp-dark-mode/assets/css/darkluplite-style.css?ver=1.0.0" media="">
|
||||
|
||||
|
||||
<!-- darkmode -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/darkmode/js/darkmode.min.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -6007,6 +6023,9 @@
|
||||
<link rel="stylesheet" id="anwpfl_flags_16-css" href="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/vendor/world-flags-sprite/stylesheets/flags16.css?ver=0.4.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/public/js/anwpfl-public.min.js?ver=0.4.2"></script>
|
||||
<link rel="stylesheet" id="anwpfl_styles-css" href="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/public/css/styles-compatible.css?ver=0.4.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="anwpfl_styles-css" href="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/public/css/styles.min.css?ver=0.4.2" media="all">
|
||||
<link rel="stylesheet" id="modaal-css" href="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/vendor/modaal/modaal.min.css?ver=0.4.2" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/vendor/modaal/modaal.min.js?ver=0.4.2"></script>
|
||||
|
||||
|
||||
<!-- football-match-tracker -->
|
||||
@@ -7237,6 +7256,12 @@
|
||||
<link rel="stylesheet" id="hpr-style-css" href="http://wp.lab/wp-content/plugins/hotline-phone-ring/assets/css/app.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- hotspot -->
|
||||
<link rel="stylesheet" id="xolo-hotspot-public-css" href="http://wp.lab/wp-content/plugins/hotspot/assets/frontend/css/xolo-hotspot-public.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/hotspot/assets/frontend/js/jquery.powertip.min.js?ver=1.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/hotspot/assets/frontend/js/xolo-hotspot-public.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- hover-effects -->
|
||||
<link rel="stylesheet" id="hover-effects-css" href="http://wp.lab/wp-content/plugins/hover-effects/asset/css/hover.css?ver=2.1" type="text/css" media="all">
|
||||
|
||||
@@ -8076,6 +8101,14 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kanzu-support-desk/assets/js/ksd-public.js?ver=2.4.5"></script>
|
||||
|
||||
|
||||
<!-- kata-plus -->
|
||||
<link rel="stylesheet" id="grid-css" href="http://wp.lab/wp-content/plugins/kata-plus/assets/src/css/libraries/grid.css?ver=1.0.3" media="all">
|
||||
<link rel="stylesheet" id="kata-plus-theme-styles-css" href="http://wp.lab/wp-content/plugins/kata-plus/assets/src/css/frontend/theme-styles.css?ver=1.0.3" media="all">
|
||||
<link rel="stylesheet" id="kata-plus-sticky-box-css" href="http://wp.lab/wp-content/plugins/kata-plus/assets/src/css/frontend/sticky-box.css?ver=1.0.3" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/kata-plus/assets/src/js/frontend/sticky-box.js?ver=1.0.3"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/kata-plus/assets/src/js/frontend/kata-plus-inline.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- katalyst-video-plus -->
|
||||
<link rel="stylesheet" id="katalyst-video-plus-css" href="http://wp.lab/wp-content/plugins/katalyst-video-plus/assets/css/kvp.css?ver=3.2.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/katalyst-video-plus/assets/js/kvp.js?ver=3.2.1"></script>
|
||||
@@ -8701,6 +8734,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/livetwitch/public/js/twitch-public.js?ver=0.0.2"></script>
|
||||
|
||||
|
||||
<!-- llc-tax -->
|
||||
<link rel="stylesheet" id="llc_main-css" href="http://wp.lab/wp-content/plugins/llc-tax/assets/css/llc_main.css?ver=1.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/llc-tax/assets/js/llc_main.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- lnd-for-wp -->
|
||||
<link rel="stylesheet" id="lnd-for-wp-css" href="http://wp.lab/wp-content/plugins/lnd-for-wp/public/css/lnd-for-wp-public.css?ver=0.1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lnd-for-wp/public/js/lnd-for-wp-public.js?ver=0.1.0"></script>
|
||||
@@ -13649,6 +13687,13 @@
|
||||
<link rel="stylesheet" id="atw-posts-style-sheet-css" href="http://wp.lab/wp-content/plugins/show-posts/atw-posts-style.min.css?ver=1.3.9" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- show-product-variations-for-woocommerce -->
|
||||
<link rel="stylesheet" id="wsv-css" href="http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/css/wsv-public.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="wsv-dataTables-min-css" href="http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/css/datatables.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/js/datatables.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/js/wsv-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- show-remote-ip -->
|
||||
<link rel="stylesheet" id="show-remote-ip-css" href="http://wp.lab/wp-content/plugins/show-remote-ip/public/css/show-remote-ip-public.css?ver=0.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/show-remote-ip/public/js/show-remote-ip-public.js?ver=0.0.1"></script>
|
||||
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/the-publisher-desk-ads/composer_file/package.json
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/the-publisher-desk-ads/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "tpd-ads-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.21.0"
|
||||
}
|
||||
}
|
||||
44
spec/fixtures/finders/interesting_findings/php_disabled/version.php
vendored
Normal file
44
spec/fixtures/finders/interesting_findings/php_disabled/version.php
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
/**
|
||||
* WordPress Version
|
||||
*
|
||||
* Contains version information for the current WordPress release.
|
||||
*
|
||||
* @package WordPress
|
||||
* @since 1.1.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* The WordPress version string.
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.6';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
*
|
||||
* @global int $wp_db_version
|
||||
*/
|
||||
$wp_db_version = 49752;
|
||||
|
||||
/**
|
||||
* Holds the TinyMCE version.
|
||||
*
|
||||
* @global string $tinymce_version
|
||||
*/
|
||||
$tinymce_version = '49110-20201110';
|
||||
|
||||
/**
|
||||
* Holds the required PHP version.
|
||||
*
|
||||
* @global string $required_php_version
|
||||
*/
|
||||
$required_php_version = '5.6.20';
|
||||
|
||||
/**
|
||||
* Holds the required MySQL version.
|
||||
*
|
||||
* @global string $required_mysql_version
|
||||
*/
|
||||
$required_mysql_version = '5.0';
|
||||
@@ -21,14 +21,14 @@ Gem::Specification.new do |s|
|
||||
s.executables = ['wpscan']
|
||||
s.require_paths = ['lib']
|
||||
|
||||
s.add_dependency 'cms_scanner', '~> 0.12.2'
|
||||
s.add_dependency 'cms_scanner', '~> 0.13.0'
|
||||
|
||||
s.add_development_dependency 'bundler', '>= 1.6'
|
||||
s.add_development_dependency 'memory_profiler', '~> 1.0.0'
|
||||
s.add_development_dependency 'rake', '~> 13.0'
|
||||
s.add_development_dependency 'rspec', '~> 3.10.0'
|
||||
s.add_development_dependency 'rspec-its', '~> 1.3.0'
|
||||
s.add_development_dependency 'rubocop', '~> 1.7.0'
|
||||
s.add_development_dependency 'rubocop', '~> 1.8.0'
|
||||
s.add_development_dependency 'rubocop-performance', '~> 1.9.0'
|
||||
s.add_development_dependency 'simplecov', '~> 0.21.0'
|
||||
s.add_development_dependency 'simplecov-lcov', '~> 0.8.0'
|
||||
|
||||
Reference in New Issue
Block a user