cve-2024-38477/httpd-2.4.59/modules/core/test/conf/test60.conf
2025-06-05 15:09:30 +02:00

18 lines
375 B
Plaintext

# @ escaping
<Macro Foo $one $two>
Warning "macro Foo arg 1: $one"
Warning "macro Foo arg 2: $two"
</Macro>
<Macro Bla @first @second>
Warning Macro Bla arg 1: @first
Warning Macro Bla arg 2: @second
Use Foo @first 'second'
Use Foo 'first' @second
Use Foo @first @second
</Macro>
Use Foo hello world
Use Bla "hello world" "thank you"
Error "done on line 17."