stubbing out more plugins
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
0f0ce2af37
commit
c02aa0e395
7 changed files with 171 additions and 62 deletions
23
walker/walkers/chmodFuzz/plugin.go
Normal file
23
walker/walkers/chmodFuzz/plugin.go
Normal file
|
@ -0,0 +1,23 @@
|
|||
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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue