Irisnet API Client – AI child protection plugin Security & Risk Analysis

wordpress.org/plugins/irisnet-api

The Plugin allows your developer to easily add AI functionality, that blocks or blurs unwanted images in real-time.

0 active installs v2.0.1 PHP 7.4+ WP 5.1+ Updated Dec 1, 2023
aiartificial-intelligenceirisnetporn-blockeryouth-protection
85
A · Safe
CVEs total0
Unpatched0
Last CVENever
Safety Verdict

Is Irisnet API Client – AI child protection plugin Safe to Use in 2026?

Generally Safe

Score 85/100

Irisnet API Client – AI child protection plugin has no known CVEs and is actively maintained. It's a solid choice for most WordPress installations.

No known CVEs Updated 2yr ago
Risk Assessment

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
Vulnerabilities
None known

Irisnet API Client – AI child protection plugin Security Vulnerabilities

No known vulnerabilities — this is a good sign.
Version History

Irisnet API Client – AI child protection plugin Release Timeline

v2.0.1Current
v2.0.0
v1.8.13
v1.7.12
v1.6.11
v1.6.10
v1.6.9
v1.5.9
v1.5.8
v1.5.7
v1.5.6
v1.4.6
v1.4.5
v1.1.4
v1.1.3
v1.0.3
v1.0.2
Code Analysis
Analyzed Mar 17, 2026

Irisnet API Client – AI child protection plugin Code Analysis

Dangerous Functions
0
Raw SQL Queries
0
0 prepared
Unescaped Output
44
10 escaped
Nonce Checks
0
Capability Checks
0
File Operations
2
External Requests
0
Bundled Libraries
1

Bundled Libraries

Guzzle

Output Escaping

19% escaped54 total outputs
Data Flows · Security
3 unsanitized

Data Flow Analysis

3 flows3 with unsanitized paths
selectField (inc\Api\Callbacks\RulesCallbacks.php:155)
Source (user input) Sink (dangerous op) Sanitizer Transform Unsanitized Sanitized
Attack Surface

Irisnet API Client – AI child protection plugin Attack Surface

Entry Points0
Unprotected0
WordPress Hooks 3
actionadmin_menuinc\Api\SettingsApi.php:18
actionadmin_initinc\Api\SettingsApi.php:22
actionadmin_enqueue_scriptsinc\Base\Enqueue.php:13
Maintenance & Trust

Irisnet API Client – AI child protection plugin Maintenance & Trust

Maintenance Signals

WordPress version tested6.4.8
Last updatedDec 1, 2023
PHP min version7.4
Downloads3K

Community Trust

Rating100/100
Number of ratings2
Active installs0
Developer Profile

Irisnet API Client – AI child protection plugin Developer Profile

irisnet.de

1 plugin · 0 total installs

84
trust score
Avg Security Score
85/100
Avg Patch Time
30 days
View full developer profile
Detection Fingerprints

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

Asset Paths
/wp-content/plugins/irisnet-api-client/assets/styles.css/wp-content/plugins/irisnet-api-client/assets/script.js
Script Paths
/wp-content/plugins/irisnet-api-client/assets/script.js
Version Parameters
irisnet-api-client/assets/styles.css?ver=irisnet-api-client/assets/script.js?ver=

HTML / DOM Fingerprints

CSS Classes
flex-containerflex-itempanelpanel-bodypanel-footerpeakinline-block
HTML Comments
Plugin 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 more
Data Attributes
data-target="#tab-1"data-target="#tab-2"data-target="#tab-3"
JS Globals
AI
Shortcode Output
<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"] &lt;img src="%s"&gt; [/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
FAQ

Frequently Asked Questions about Irisnet API Client – AI child protection plugin