Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PHPを使用してApacheサーバーでmod_securityがアクティブ化されているかどうかを知る方法はありますか?(カールなし)
試すことができることの 1 つは、apache_get_modules を使用して、Apache が現在有効にしているモジュールを検出することです。もちろん、このアプローチは Apache サーバーでのみ機能し、他の一般的な HTTP サーバーでは機能しません。
var_dump (in_array ('mod_security', apache_get_modules ()));