When the NASA Ground Station Has No Lock on the Door Unauthe... - #2730
Open
carlospolop wants to merge 1 commit into
Open
When the NASA Ground Station Has No Lock on the Door Unauthe...#2730carlospolop wants to merge 1 commit into
carlospolop wants to merge 1 commit into
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://cycode.com/blog/ait-gui-unauthenticated-command-execution Content Categories: Based on the analysis, this content was categorized under "Pentesting Web > CSRF (Cross Site Request Forgery), with cross-references from File Inclusion/Path Traversal and Web Vulnerabilities Methodology". 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
AIT-GUI unauthenticated command execution (GHSA-p9r8-2q67-fp86) is a critical vulnerability chain affecting the browser-based operator console of NASA/JPL's open-source AMMOS Instrument Toolkit. AIT is a framework for building ground-data systems that communicate with instruments and spacecraft, send commands, and process returned telemetry. AIT-GUI exposes the operator functions used to send individual commands and start scripts or command sequences, so exploitation may affe...
🔧 Technical Details
Ignored network-binding configuration: Trace configuration values to the final socket or server-construction sink rather than assuming a setting is enforced. A service may read a loopback-oriented value such as
host: localhostbut discard it and pass0.0.0.0to the listener. This dead-write pattern silently turns an intended local service into a network-exposed service. Validate it through source review and by inspecting actual listening sockets at runtime.Unauthenticated command-dispatch endpoints: Search for routes that mutate state or control external systems, then inspect their complete middleware and call paths for authentication and authorization. If attacker-controlled fields are parsed and passed to a command dispatcher such as
self.send(name, *args), every command recognized by that dispatcher may become remotely invocable. Test with a harmless supported command and verify the result in app...🤖 Agent Actions
Updated
src/pentesting-web/csrf-cross-site-request-forgery.md.Added:
Validation passed:
git diff --checkmdbook buildwas skipped becausemdbookis not installed.This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.