ffuf/pkg/input/const.go
Joona Hoikkala 8883aea432
New input provider --input-cmd (#40)
* 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
2019-06-17 00:42:42 +03:00

8 lines
86 B
Go

// +build !windows
package input
const (
SHELL_CMD = "/bin/sh"
SHELL_ARG = "-c"
)