nyx/tests/fixtures/xxe/ruby/irrelevant_xml_call.rb
2026-05-07 01:29:31 -04:00

8 lines
213 B
Ruby

# Baseline: tainted body flows through a non-parser string operation.
# No XML parser entry point, no XXE label classification.
require "sinatra"
get "/wrap" do
body = params[:xml]
"<wrap>#{body}</wrap>"
end