mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
[pitboss/grind] deferred session-0010 (20260520T233019Z-6958)
This commit is contained in:
parent
38cc0ce05f
commit
280121607e
12 changed files with 483 additions and 28 deletions
|
|
@ -9,11 +9,49 @@
|
|||
//! Benign control: a well-formed XML document with no doctype, so the
|
||||
//! parser has nothing to resolve and the shim writes
|
||||
//! `entity_expanded: false`.
|
||||
//!
|
||||
//! OOB-nonce variant (added 2026-05-21): when the runner attaches an
|
||||
//! [`crate::dynamic::oob::OobListener`], the runner materialises this
|
||||
//! payload's bytes as a loopback URL and the Python harness wraps the
|
||||
//! URL into `<!ENTITY xxe SYSTEM "URL">`. Expat's external-entity hook
|
||||
//! performs a real `urllib.request.urlopen` against the URL so the
|
||||
//! listener records the per-finding nonce. Ordered first so the runner
|
||||
//! exercises the OOB observation path before the doctype-entity vuln
|
||||
//! triggers and short-circuits the iteration; runs without a listener
|
||||
//! skip cleanly (the runner's `oob_nonce_slot` branch `continue`s when
|
||||
//! [`crate::dynamic::sandbox::SandboxOptions::oob_listener`] is None).
|
||||
|
||||
use super::super::{CuratedPayload, Oracle, PayloadProvenance, PayloadRef};
|
||||
use crate::dynamic::oracle::ProbePredicate;
|
||||
|
||||
pub const PAYLOADS: &[CuratedPayload] = &[
|
||||
// OOB-nonce XXE variant. Ordered first so the harness exercises the
|
||||
// OOB observation path before the doctype-entity vuln below triggers
|
||||
// and breaks iteration. Self-confirming via [`Oracle::OobCallback`];
|
||||
// no paired benign control because a benign URL can never hit the
|
||||
// per-finding nonce path. Runs only when an [`OobListener`] is
|
||||
// attached; the runner's `oob_nonce_slot` branch skips otherwise.
|
||||
CuratedPayload {
|
||||
bytes: b"",
|
||||
label: "xxe-python-oob-nonce",
|
||||
oracle: Oracle::OobCallback { host: "127.0.0.1" },
|
||||
is_benign: false,
|
||||
provenance: PayloadProvenance::Curated,
|
||||
since_corpus_version: 15,
|
||||
deprecated_at_corpus_version: None,
|
||||
fixture_paths: &[
|
||||
"tests/dynamic_fixtures/xxe/python/vuln.py",
|
||||
],
|
||||
oob_nonce_slot: true,
|
||||
probe_predicates: &[],
|
||||
benign_control: None,
|
||||
no_benign_control_rationale: Some(
|
||||
"OOB-nonce XXE payload self-confirms via the per-finding listener \
|
||||
callback when expat's external-entity hook fetches the loopback \
|
||||
URL; no benign URL can hit the nonce path so no paired control \
|
||||
is meaningful.",
|
||||
),
|
||||
},
|
||||
CuratedPayload {
|
||||
bytes: br#"<?xml version="1.0"?>
|
||||
<!DOCTYPE data [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue