APIドキュメントの移動
API ドキュメントはdocs.recordedfuture.comでご覧いただけます。最新のドキュメントにアクセスするには、新しいサイトをブックマークしてください。
これは、Recorded Future Sandbox が作成する静的 JSON レポートの Go 構造定義です。
タイプ(
静的レポート構造体{
Version string`json:"version"`
Sample ReportSample `json:"sample"`
Task ReportTask `json:"task"`
Analysis ReportAnalysis `json:"analysis"`
Signatures []*Signature `json:"signatures,omitempty"`
Files []*FileReport `json:"files"`
UnpackCount int`json:"unpack_count"`
ErrorCount int`json:"error_count"`
CompatKind string`json:"kind,omitempty"`
Errors []ReportedFailure `json:"errors,omitempty"`
Extracted []*Extract `json:"extracted,omitempty"`}
レポートサンプル構造体{
ID string`json:"sample"`
Kind string`json:"kind,omitempty"`
Size uint64`json:"size,omitempty"`
Target string`json:"target,omitempty"`
Submitted string`json:"submitted,omitempty"`}
レポートタスク構造体{
ID string`json:"task"`
Target string`json:"target,omitempty"`}
レポート分析構造体{
Reported string`json:"reported,omitempty"`
Score int`json:"score,omitempty"`
Tags []string`json:"tags,omitempty"`}
ファイルレポート構造体{
Name string`json:"filename"`
RelPath string`json:"relpath,omitempty"`
Size uint64`json:"filesize"`
Hashes
Extensions []string`json:"exts"`
Tags []string`json:"tags"`
Filetype string`json:"filetype,omitempty"`
Mime string`json:"mime,omitempty"`
Depth int`json:"depth"`
Error string`json:"error,omitempty"`
Kind string`json:"kind"`
Selected bool`json:"selected"`
RunAs string`json:"runas,omitempty"`
Password string`json:"password,omitempty"`}
ハッシュ構造体{
MD5 string`json:"md5,omitempty"`
SHA1 string`json:"sha1,omitempty"`
SHA256 string`json:"sha256,omitempty"`
SHA512 string`json:"sha512,omitempty"`} )