
Irisnet API Client – AI child protection plugin Security & Risk Analysis
wordpress.org/plugins/irisnet-apiThe Plugin allows your developer to easily add AI functionality, that blocks or blurs unwanted images in real-time.
Is Irisnet API Client – AI child protection plugin Safe to Use in 2026?
Generally Safe
Score 85/100Irisnet API Client – AI child protection plugin has no known CVEs and is actively maintained. It's a solid choice for most WordPress installations.
The 'irisnet-api' plugin version 2.0.1 presents a mixed security posture. On the positive side, the plugin exhibits no known CVEs in its history, suggesting a generally stable development. The static analysis reveals a notably small attack surface with zero identified entry points like AJAX handlers, REST API routes, or shortcodes, and crucially, no unprotected points. Furthermore, all detected SQL queries are properly prepared, mitigating a common class of vulnerabilities. However, significant concerns arise from the output escaping, with only 19% of 54 outputs being properly escaped. This indicates a high risk of Cross-Site Scripting (XSS) vulnerabilities, where malicious scripts could be injected and executed in users' browsers. The taint analysis also highlights three flows with unsanitized paths, although thankfully these did not escalate to critical or high severity in this specific analysis, the presence of unsanitized paths is a red flag. The plugin also bundles Guzzle, which could potentially be an outdated and vulnerable version if not managed carefully, although no specific vulnerabilities are reported here.
While the plugin excels in preventing direct attack vectors through its limited attack surface and secure SQL practices, the lack of robust output escaping is a critical weakness. The unsanitized paths in the taint analysis, while not currently leading to severe issues, represent a latent risk. The absence of any recorded vulnerabilities in its history is positive, but it does not excuse the current identified security gaps. A balanced conclusion is that the plugin has good foundational security in terms of access control and data handling (SQL), but suffers from significant flaws in output sanitization, which could be exploited.
Key Concerns
- Low percentage of properly escaped output
- Flows with unsanitized paths detected
- Bundled library (Guzzle) without version check
Irisnet API Client – AI child protection plugin Security Vulnerabilities
Irisnet API Client – AI child protection plugin Release Timeline
Irisnet API Client – AI child protection plugin Code Analysis
Bundled Libraries
Output Escaping
Data Flow Analysis
Irisnet API Client – AI child protection plugin Attack Surface
WordPress Hooks 3
Maintenance & Trust
Irisnet API Client – AI child protection plugin Maintenance & Trust
Maintenance Signals
Community Trust
Irisnet API Client – AI child protection plugin Alternatives
Angie – Agentic AI (Beta)
angie
Angie Code: Your expert WordPress developer, powered by AI. Build anything you can imagine without writing a single line of code.
AI
ai
AI features, experiments and capabilities for WordPress.
AutoWP – AI Content Writer & Rewriter
autowp-ai-content-writer-rewriter
AI Content Writer & Rewriter. Write content with AI from zero. Import content from RSS, Wordpress, Google News and rewrite with AI.
LLMs.txt Generator
llms-txt-generator
Optimize your WordPress content for AI discovery and interaction through the llms.txt file, the robots.txt for AI engines.
AI Provider for Anthropic
ai-provider-for-anthropic
Anthropic (Claude) provider for the PHP AI Client SDK.
Irisnet API Client – AI child protection plugin Developer Profile
1 plugin · 0 total installs
How We Detect Irisnet API Client – AI child protection plugin
Patterns used to identify this plugin on WordPress sites during automated security audits and web crawling.
Asset Fingerprints
/wp-content/plugins/irisnet-api-client/assets/styles.css/wp-content/plugins/irisnet-api-client/assets/script.js/wp-content/plugins/irisnet-api-client/assets/script.jsirisnet-api-client/assets/styles.css?ver=irisnet-api-client/assets/script.js?ver=HTML / DOM Fingerprints
flex-containerflex-itempanelpanel-bodypanel-footerpeakinline-blockPlugin Name: Irisnet API Client - AI child protection pluginThis program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses.+2 moredata-target="#tab-1"data-target="#tab-2"data-target="#tab-3"AI<pre class="prettyprint">
// Declare shortcode function
function check_compliant($atts, $content = null) {
$image_path = $atts['image'];
try {
// Check the image using the AI class.
// See Documentation tab for more details.
$aiResult = AI::checkImage($image_path, 'given_ruleset_name', 1);
} catch(IrisnetException $e) {
// Check for possible errors according to the Documentation tab.
}
// do your custom check on $aiResult (example)
$failed = !(isset($aiResult) && $aiResult->getSummary()->getBrokenRulesCount() == 0);
if ($failed) {
return sprintf($content, '/path/to/placeholder/image.png');
} else {
return sprintf($content, $image_path);
}
}
add_shortcode('show_image_if_compliant', 'check_compliant');
</pre><pre class="prettyprint">
[show_image_if_compliant image="/path/to/image.png"]
<img src="%s">
[/show_image_if_compliant]
</pre><pre class="prettyprint">
function check_compliant($imageArray) {
// Iterate over all images an make the check
foreach($imageArray as $image) {
try {
// Call to checkImage function.
$aiResult = AI::checkImage($image, 'given_ruleset_name');
} catch(IrisnetException $e) {
// Check for possible errors according to the Documentation tab.
}
// do your custom check on $aiResult (example)
$failed = !(isset($aiResult) && $aiResult->getSummary()->getBrokenRulesCount() == 0);
if ($failed) {
// Image is not compliant. Delete image form server...
}
}
}
</pre><pre class="prettyprint">
function ai_image_check_after_submission( $entry, $form ) {
$id = '1'; // Update this number to your field id number
// Get path and url of uploaded file
$upload_path