Documentation
¶
Index ¶
- Variables
- func RunDisasm(r *cmd.Root, c *cmd.Sub)
- func RunLoader(r *cmd.Root, c *cmd.Sub)
- func RunParser(r *cmd.Root, c *cmd.Sub)
- func RunRunner(r *cmd.Root, c *cmd.Sub)
- func RunVersion(r *cmd.Root, c *cmd.Sub)
- type DisasmArgs
- type DisasmFlags
- type GlobalFlags
- type LoadArgs
- type LoadFlags
- type ParserArgs
- type ParserFlags
- type RunArgs
- type RunFlags
- type VersionArgs
- type VersionFlags
Constants ¶
This section is empty.
Variables ¶
View Source
var Disasm = cmd.Sub{ Name: "disasm", Alias: "d", Short: "Disassemble a binary.", Flags: &DisasmFlags{}, Args: &DisasmArgs{}, Run: RunDisasm, }
View Source
var Loader = cmd.Sub{ Name: "load", Alias: "l", Short: "Test laoding a Json output", Flags: &LoadFlags{}, Args: &LoadArgs{}, Run: RunLoader, }
Parser looks at symbols and ABI in Go
View Source
var Parser = cmd.Sub{ Name: "parse", Alias: "p", Short: "Parse a binary.", Flags: &ParserFlags{}, Args: &ParserArgs{}, Run: RunParser, }
Parser looks at symbols and ABI in Go
View Source
var Root *cmd.Root
Root is the main command.
View Source
var Runner = cmd.Sub{ Name: "run", Alias: "r", Short: "Generate a corpus with no Json output", Flags: &RunFlags{}, Args: &RunArgs{}, Run: RunRunner, }
Parser looks at symbols and ABI in Go
View Source
var VersionCmd = cmd.Sub{ Name: "version", Alias: "v", Short: "Print the version to the terminal.", Flags: &VersionFlags{}, Args: &VersionArgs{}, Run: RunVersion, }
Dockerfile updates one or more Dockerfile
Functions ¶
Types ¶
type DisasmArgs ¶
type DisasmArgs struct {
Binary []string `desc:"A binary to dissassemble."`
}
Args and flags for generate
type DisasmFlags ¶
type DisasmFlags struct{}
type ParserArgs ¶
type ParserArgs struct {
Binary []string `desc:"A binary to parse."`
}
Args and flags for generate
type ParserFlags ¶
type ParserFlags struct {
Pretty bool `long:"pretty" desc:"Pretty print the json"`
}
type RunArgs ¶
type RunArgs struct {
Binary []string `desc:"A binary to parse."`
}
Args and flags for generate
type VersionFlags ¶
type VersionFlags struct {
}
Click to show internal directories.
Click to hide internal directories.