fuzz-walker/walker/walkers/chmodFuzz/plugin.go
Vincent Batts c02aa0e395
stubbing out more plugins
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2018-06-06 11:21:08 -04:00

23 lines
384 B
Go

package main
import (
"os"
"time"
"git.thisco.de/vbatts/fuzz-walker/walker"
)
// NewFuzzer creates the fuzzer for this plugin
func NewFuzzer() (walker.Fuzzer, error) {
return &myFuzzer{}, nil
}
type myFuzzer struct{}
func (mf myFuzzer) Name() string {
return "chmodFuzz"
}
func (mf myFuzzer) Func(path string, info os.FileInfo, timeout time.Duration) error {
return nil
}