mirror of
https://github.com/ffuf/ffuf
synced 2024-11-10 06:04:17 +00:00
8883aea432
* New input provider: command * Set env var and move to Windows and POSIX constants for shell instead of CLI flag. * Display position instead of input payload when --input-cmd is used * Update README * Fix README and flags help * Add an example to README
8 lines
85 B
Go
8 lines
85 B
Go
// +build windows
|
|
|
|
package input
|
|
|
|
const (
|
|
SHELL_CMD = "cmd.exe"
|
|
SHELL_ARG = "/C"
|
|
)
|