
feed-modify-on-your-choice Security & Risk Analysis
wordpress.org/plugins/rss-feed-modify-on-your-choiceThis plugin modifies RSS feeds and ATOM feeds as you want.
Is feed-modify-on-your-choice Safe to Use in 2026?
Generally Safe
Score 85/100feed-modify-on-your-choice has no known CVEs and is actively maintained. It's a solid choice for most WordPress installations.
The "rss-feed-modify-on-your-choice" v1.0 plugin exhibits a generally strong security posture based on the provided static analysis. It has no apparent entry points like AJAX handlers, REST API routes, or shortcodes, which significantly reduces its attack surface. Furthermore, the absence of dangerous functions, file operations, and external HTTP requests are positive indicators. The code also demonstrates good practices by exclusively using prepared statements for SQL queries, indicating a safeguard against SQL injection vulnerabilities.
However, the static analysis reveals a significant concern regarding output escaping, with only 28% of outputs being properly escaped. This suggests a potential risk of cross-site scripting (XSS) vulnerabilities if user-supplied data is rendered directly into the output without adequate sanitization. The lack of capability checks and nonce checks is also a notable weakness, as these are fundamental security mechanisms in WordPress for controlling access and preventing CSRF attacks. The plugin's vulnerability history is clean, with no recorded CVEs, which is a positive sign, but it doesn't negate the risks identified in the code itself.
In conclusion, while the plugin benefits from a limited attack surface and secure database interactions, the poor output escaping and missing authorization/security checks are critical areas of concern. These weaknesses, if exploited, could lead to XSS or unauthorized actions, despite the absence of known historical vulnerabilities.
Key Concerns
- Low percentage of properly escaped output
- Missing capability checks
- Missing nonce checks
feed-modify-on-your-choice Security Vulnerabilities
feed-modify-on-your-choice Code Analysis
Output Escaping
Data Flow Analysis
feed-modify-on-your-choice Attack Surface
WordPress Hooks 4
Maintenance & Trust
feed-modify-on-your-choice Maintenance & Trust
Maintenance Signals
Community Trust
feed-modify-on-your-choice Alternatives
Feed Template Customize
feed-template-customize
This plugin modifies RSS feeds and ATOM feeds as you want.
FeedDisabler Plugin
feed-disabler
Disables all feeds (rdf, rss, rss2, atom).
Feedme
feedme
Feedme is a simple and powerful tool that will surely enhance any WordPress install. As feed readers become more advanced and are capable of handling …
RSSupplement
rssupplement
Adds WP functions, copyright, and more to your RSS feed items.
Disable Feeds
disable-feeds
Disables all RSS/Atom/RDF feeds on your WordPress site.
feed-modify-on-your-choice Developer Profile
3 plugins · 20 total installs
How We Detect feed-modify-on-your-choice
Patterns used to identify this plugin on WordPress sites during automated security audits and web crawling.
Asset Fingerprints
/wp-content/plugins/rss-feed-modify-on-your-choice/feedfile/HTML / DOM Fingerprints
/**
* Atom Feed Template for displaying Atom Posts feed.
*
* @package WordPress
*//**
* WordPress Feed API
*
* Many of the functions used in here belong in The Loop, or The Loop for the
* Feeds.
*
* @package WordPress
* @subpackage Feed
*//**
* RSS container for the bloginfo function.
*
* You can retrieve anything that you can using the get_bloginfo() function.
* Everything will be stripped of tags and characters converted, when the values
* are retrieved for use in the feeds.
*
* @package WordPress
* @subpackage Feed
* @since 1.5.1
* @uses apply_filters() Calls 'get_bloginfo_rss' hook with two parameters.
* @see get_bloginfo() For the list of possible values to display.
*
* @param string $show See get_bloginfo() for possible values.
* @return string
*//**
* Display RSS container for the bloginfo function.
*
* You can retrieve anything that you can using the get_bloginfo() function.
* Everything will be stripped of tags and characters converted, when the values
* are retrieved for use in the feeds.
*
* @package WordPress
* @subpackage Feed
* @since 0.71
* @uses apply_filters() Calls 'bloginfo_rss' hook with two parameters.
* @see get_bloginfo() For the list of possible values to display.
*
* @param string $show See get_bloginfo() for possible values.
*/+2 more