How to find installed plugins

I been searching long of any way to find the list of the plugins installed in a WordPress site. Though I got a way, the “http-wp-plugins.nse” brute force script but I don’t know how to use this script.

If any body know any way please share.

Related posts

1 comment

  1. On the admin side, which I assume is where you want to run this, the get_plugins function will retrieve an array of plugins along with data about each.

    function dump_plugins() {
      var_dump(get_plugins());
    }
    add_action('admin_init','dump_plugins');
    

    Obviously, that code is illustrative only. It will make a big mess of your site.

Comments are closed.