Is there a place from where I can get a list of all existing WordPress plugins located in http://wordpress.org/extend/plugins/
I am trying to test my website for vulnerabilities and need such list.
Thanks
Is there a place from where I can get a list of all existing WordPress plugins located in http://wordpress.org/extend/plugins/
I am trying to test my website for vulnerabilities and need such list.
Thanks
You must be logged in to post a comment.
http://plugins.svn.wordpress.org/
Good luck. It’s a very long list and Otto normally becomes very angry if someone try to scrape the complete SVN-Repo.
SVN
You find a list of all plugins inside the SVN – https://plugins.svn.wordpress.org/
Git
Another option is the mirror on GitHub, there have a more useful API to doing thinks with the list. – https://github.com/wp-plugins
API
Also, you can use the API and his functions to get a more usable solution to parse for changes, etc., see https://developer.wordpress.org/reference/functions/plugins_api/
Additional
An additional service is https://wpdirectory.net/ which gives you also lot of helpful functions. WP Dir is a web service there allowing lightning fast regex searches of the WordPress Plugin/Theme Directories. Especially the regex is really helpful.
Not the best answer but I tried to solve my own problem the best way I could.
Getting a list of plugins
This will not return ALL plugins but it will return the top rated ones:
Save the data as JSON
Since the data that we get is huge and it will be bad for performance, we try to get the
name
and theslug
out of the array and then we write it in a JSON file:Now we have a slim JSON file with only the data that we need.
To keep updating the JSON file, we run that script to create a JSON file every 24 hours by setting up a Cron Job.