Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var DumpCmd = &cobra.Command{ Use: "dump", Short: "Dump process memory using MiniDumpWriteDump", Long: ``, Run: func(cmd *cobra.Command, args []string) { if pid == 0 { cmd.Help() fmt.Println("\n[!] Required flag \"pid\" not set") os.Exit(0) } if outfile == "" { cmd.Help() fmt.Println("\n[!] Required flag \"outfile\" not set") os.Exit(0) } minidump(pid, outfile) }, }
DumpCmd represents the dump command
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.