Local AI for Cyber Security Finding phpIPAM LFI and myVesta ...#2441
Open
carlospolop wants to merge 1 commit into
Open
Local AI for Cyber Security Finding phpIPAM LFI and myVesta ...#2441carlospolop wants to merge 1 commit into
carlospolop wants to merge 1 commit into
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://projectblack.io/blog/local-ai-for-cyber-security Content Categories: Based on the analysis, this content was categorized under "AI Security > AI Assisted Fuzzing And Vulnerability Discovery; also cross-reference Pentesting Web > File Inclusion/Path traversal and Pentesting Web > Command Injection / PHP Tricks". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Automated Content Update
This PR was automatically generated by the HackTricks News Bot based on a technical blog post.
📝 Source Information
🎯 Content Summary
The blog evaluates whether local AI-assisted code review can reliably find real vulnerabilities. The author benchmarks four approaches against a known phpIPAM authenticated Local File Inclusion issue, then applies the most successful approach to myVesta and discovers an authenticated Remote Code Execution vulnerability.
1. Benchmark vulnerability: phpIPAM authenticated LFI / arbitrary PHP include - CVE-2026-12194
The benchmark issue is a classic authenticated PHP Local...
🔧 Technical Details
Authenticated PHP Local File Inclusion through dynamic controller dispatch: If a PHP application derives a controller name from request-controlled data and concatenates it into
require_once(),include(), or similar PHP include functions without allowlisting and path canonicalisation, an attacker can often use traversal sequences such as../to make the application include an unintended PHP file. The phpIPAM case is a representative pattern: the controller value can come from$_GET,$_POST, JSON, or XML request bodies and flows directly intorequire_once(). If the attacker can cause the path to resolve to a readable.phpfile, PHP will parse and execute it in the web application context. If the attacker can also plant a PHP file, for example one containingphpinfo();or another payload, the LFI becomes code execution.Authenticated command injection through acc...
🤖 Agent Actions
Continuation acknowledged.
Status:
Current working state remains:
src/AI/AI-Assisted-Fuzzing-and-Vulnerability-Discovery.mdThis PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.