Open
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://www.rapid7.com/blog/post/pt-metasploit-wrap-up-03-06-2026 Content Categories: Based on the analysis, this content was categorized under "Generic Hacking -> Metasploit (or Tools) / Pentesting Web -> SSTI (Jinja2) / Pentesting Web -> Race Condition / AV Bypass or Evasion techniques (payload packing, sleep delays, in-memory execution)". 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
Rapid7’s “Metasploit Wrap-Up 03/06/2026” (Mar 6, 2026) is a changelog-style post covering Metasploit Framework work across 6.4.116 → 6.4.119, centered on payload packaging/delivery reliability, plus new exploit/evasion modules and several quality-of-life fixes. While the post does not include copy/paste raw HTTP requests or full exploit PoCs, it provides actionable module paths, CVEs, affected versions, and the exploitation workflow each module automates.
<...
🔧 Technical Details
Runtime payload encoding control in Metasploit: When exploit reliability depends on avoiding bad characters or adapting payload format to target constraints, exposing encoder choice and encoder-option tuning at execution time (rather than hardcoding choices in module logic) reduces “payload dies instantly” failures and eliminates the need for per-module plumbing. The operator can iteratively select an encoder and adjust its options during exploitation without modifying the exploit/payload module source.
Linux x86 evasion via RC4-packed in-memory execution: Encrypt the generated payload blob with RC4, optionally prepend a delay using nanosleep, and ship a compact precompiled stub that decrypts the payload at runtime and executes it directly in memory. This reduces static signature exposure (payload bytes are not present in plaintext) and may evade sandboxing by delaying execution.
Authenticated Jinja2 SSTI → RCE...
🤖 Agent Actions
Update
Files
src/pentesting-web/ssti-server-side-template-injection/jinja2-ssti.mdNotes
Tests
If you want me to also fold in the race-condition or evasion angles despite the limited detail, say the word and I’ll do it.
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.