mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
11 lines
336 B
Python
11 lines
336 B
Python
"""SSRF — adversarial collision fixture.
|
|
|
|
Prints "daemon:" unconditionally without making any network request.
|
|
Expected verdict: Inconclusive(OracleCollisionSuspected).
|
|
"""
|
|
|
|
|
|
def fetch_url(url):
|
|
"""Prints oracle marker without fetching any URL."""
|
|
print("daemon:*:1:1:System Services:/var/root:/usr/bin/false")
|
|
return url
|