Skip to content
KitploitKITPLOIT
ツールブログ
提出
ツールブログ
提出

ハッキング、侵入テスト、サイバーセキュリティツールをあなたのセキュリティアーセナルに!

Kitploitはハッキング、サイバーセキュリティ、ペネトレーションテストのツールディレクトリです。最新のプロジェクトアップデートを見つけて、脆弱性の発見、システム分析、テストの自動化、セキュリティの強化を行いましょう。

··フィード·お問い合わせ·プライバシー·© 2026 Kitploit

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
wphardening — あらゆるWordPressインストールのセキュリティを強化します。 | Kitploit
ツール/GitHubGitHub/elcodigok/wphardening
防御ツール脆弱性スキャナー構成監査ウェブセキュリティ設定ミス
GitHubelcodigok/wphardening

wphardening

あらゆるWordPressインストールのセキュリティを強化します。

リポジトリを見る
1603029年前Kitploit レビュー済み

人気

すべて見る →

コミュニティで最も使われているツールを見つけましょう。

すべてのツールを探索

ツールコレクションを閲覧

すべてのツールを見る →
共有
ウェブサイト

WPHardening Build Status Coverage Status

WPHardening

任意のWordPressインストールのセキュリティを強化します。

❮ 注意 ❯ このツールは定期的に新バージョンをリリースしています。最新バージョンを入手するために、依存関係を頻繁に更新してください。新機能については、チェンジログまたはCHANGELOG.mdを確認してください。


インストール

WPHardeningのインストールには、1つのコンソールコマンドを実行する必要があります。

root@kitploit:~
$ pip install -r requirements.txt

使い方

root@kitploit:~
$ python wphardening.py -h 

 __          _______  _    _               _            _
 \ \        / /  __ \| |  | |             | |          (_)
  \ \  /\  / /| |__) | |__| | __ _ _ __ __| | ___ _ __  _ _ __   __ _
   \ \/  \/ / |  ___/|  __  |/ _` | '__/ _` |/ _ \ '_ \| | '_ \ / _` |
    \  /\  /  | |    | |  | | (_| | | | (_| |  __/ | | | | | | | (_| |
     \/  \/   |_|    |_|  |_|\__,_|_|  \__,_|\___|_| |_|_|_| |_|\__, |
                                                                 __/ |
        Fortify the security of any WordPress installation.     |___/

     Caceria de Spammers - http://www.caceriadespammers.com.ar

Usage: python wphardening.py [options]

Options:
  --version             show program's version number and exit
  -h, --help            show this help message and exit
  -v, --verbose         Active verbose mode output results
  --update              Check for WPHardening latest stable version

  Target:
    This option must be specified to modify the package WordPress.

    -d DIRECTORY, --dir=DIRECTORY
                        **REQUIRED** - Working Directory.
    --load-conf=FILE    Load file configuration.

  Hardening:
    Different tools to hardening WordPress.

    -c, --chmod         Chmod 755 in directory and 644 in files.
    -r, --remove        Remove files and directory.
    -b, --robots        Create file robots.txt
    -f, --fingerprinting
                        Deleted fingerprinting WordPress.
    -t, --timthumb      Find the library TimThumb.
    --chown=user:group  Changing file and directory owner.
    --wp-config         Wizard generated wp-config.php
    --plugins           Download Plugins Security.
    --proxy=PROXY       Use a HTTP proxy to connect to the target url for
                        --plugins and --wp-config.
    --indexes           It deny you to display the contents of directories.
    --minify            Compressing static file .css and .js
    --malware-scan      Malware Scan in WordPress project.
    --6g-firewall       6G Firewall.
    --rest-api          Disable REST API.

  Miscellaneous:
    -o FILE, --output=FILE
                        Write log report to FILE.log

例

WordPressプロジェクトの確認

ツールを使用する前に、作業ディレクトリがWordPressであることを確認してください。

root@kitploit:~
$ python wphardening.py -d /home/path/to/wordpress -v

パーミッションの変更

このオプションは、ファイルとディレクトリに正しいパーミッションを設定します。

root@kitploit:~
$ python wphardening.py -d /home/path/to/wordpress --chmod -v

使用しないファイルの削除

システムの強化の一環として、不要なファイル、ディレクトリ、コンポーネントを削除します。

root@kitploit:~
$ python wphardening.py -d /home/path/to/wordpress --remove -v

robots.txtファイルの作成

WordPressのデフォルトではrobots.txtファイルが含まれていませんが、このオプションを使用してカスタマイズできます。

root@kitploit:~
$ python wphardening.py -d /home/path/to/wordpress --robots -v

詳細については robots.txt を参照してください。

フィンガープリンティングとバージョン情報の削除

root@kitploit:~
$ python wphardening.py -d /home/path/to/wordpress --fingerprinting -v

TimThumbライブラリの確認

root@kitploit:~
$ python wphardening.py -d /home/path/to/wordpress --timthumb -v

Indexファイルの作成

このファイルは、ディレクトリの閲覧を防ぐために作成されます。

root@kitploit:~
$ python wphardening.py -d /home/path/to/wordpress --indexes -v

セキュリティプラグインのダウンロード

以下は、自動的にダウンロードできる一般的なセキュリティプラグインのリストです。

  • AntiVirus
  • Bad Behavior
  • Block Bad Queries
  • Exploit Scanner
  • Latch
  • NinjaFirewall
  • Simple History
  • Stream
  • WP Security Scan
  • WP-DBManager
  • WPS Hide Login
root@kitploit:~
$ python wphardening.py -d /home/path/to/wordpress --plugins

wp-config.phpの自動生成ウィザード

このコマンドは、wp-config-wphardening.phpというファイルを自動的に作成します。その後、名前を変更できます。

root@kitploit:~
$ python wphardening.py -d /home/path/to/wordpress --wp-config

6Gファイアウォール

root@kitploit:~
$ python wphardening.py -d /home/path/to/wordpress --6g-firewall

REST APIの無効化

root@kitploit:~
$ python wphardening.py -d /home/path/to/wordpress --rest-api

WPHardeningの更新

このオプションを使用すると、常に最新バージョンのWPHardeningを利用できます。

root@kitploit:~
$ python wphardening.py --update

すべてのオプションを使用

root@kitploit:~
$ python wphardening.py -d /home/path/to/wordpress -c -r -f -t --wp-config --indexes --plugins --6g-firewall --rest-api -o /home/user/wphardening.log

プロジェクトホーム

www.caceriadespammers.com.ar

Gitリポジトリ

https://github.com/elcodigok/wphardening

問題・バグ報告

https://github.com/elcodigok/wphardening/issues

ツールをダウンロード