0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

WordPressのプラグインを特定する方法

Posted at

wappalyzerなどのツールを使わず、自力で、WordPressプラグインを特定する方法

トップページのソースを表示する

wp-content/pluginsを検索

wp-content/pluginsを含む行
<script type='text/javascript' src='https://example.or.jp/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=5.6.4' id='swv-js'></script>
<script type='text/javascript' src='https://example.or.jp/wp-content/plugins/contact-form-7/includes/js/index.js?ver=5.6.4' id='contact-form-7-js'></script>
<script type='text/javascript' src='https://example.or.jp/wp-content/plugins/contact-form-7/modules/recaptcha/index.js?ver=5.6.4' id='wpcf7-recaptcha-js'></script>
<link rel='stylesheet' id='contact-form-7-css'  href='https://example.or.jp/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.6.4' type='text/css' media='all' />
<link rel='stylesheet' id='wp-v-icons-css-css'  href='https://example.or.jp/wp-content/plugins/wp-visual-icon-fonts/css/wpvi-fa4.css?ver=5.9.10' type='text/css' media='all' />
<link rel='stylesheet' id='wp-pagenavi-css'  href='https://example.or.jp/wp-content/plugins/wp-pagenavi/pagenavi-css.css?ver=2.70' type='text/css' media='all' />

プラグインを特定
contact-form-7
wp-visual-icon-fonts
wp-pagenavi

なお、ここで見えているバージョンは、プラグインのバージョンではないので注意が必要

readme.txtにアクセスして、プラグインのバージョンを特定

プラグインのバージョンを特定するURL
https://example.or.jp/wp-content/plugins/contact-form-7/readme.txt
https://example.or.jp/wp-content/plugins/wp-visual-icon-fonts/readme.txt
https://example.or.jp/wp-content/plugins/wp-pagenavi/readme.txt

readme.txt内の Stable tag: がプラグインのバージョン

=== Contact Form 7 ===
Contributors: takayukister
Donate link: https://contactform7.com/donate/
Tags: contact, form, contact form, feedback, email, ajax, captcha, akismet, multilingual
Requires at least: 5.9
Tested up to: 6.1
Stable tag: 5.6.4  <--★バージョン
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?