Skip to content

Commit

Permalink
Merge pull request #146 from Yamato-Security/finalize-2.5.0
Browse files Browse the repository at this point in the history
finalize 2.5.0
  • Loading branch information
YamatoSecurity committed Mar 29, 2024
2 parents 5a1d8b0 + c9df455 commit 7b19632
Show file tree
Hide file tree
Showing 8 changed files with 319 additions and 140 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG-Japanese.md
@@ -1,6 +1,6 @@
# 変更点

## 2.5.0 [xxxx/xx/xx]
## 2.5.0 [2024/03/30] - BSides Tokyo Release

**新機能:**

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,6 +1,6 @@
# Changes

## 2.5.0 [xxxx/xx/xx]
## 2.5.0 [2024/03/30] - BSides Tokyo Release

**New Features:**

Expand Down
269 changes: 223 additions & 46 deletions README.md

Large diffs are not rendered by default.

178 changes: 90 additions & 88 deletions src/takajo.nim

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/takajopkg/automagic.nim
Expand Up @@ -4,7 +4,7 @@ type
AutoMagicCmd* = ref object of AbstractCmd
level: string

proc autoMagic(level: string = "low", skipProgressBar: bool = false,
proc autoMagic(level: string = "informational", skipProgressBar: bool = false,
displayTable: bool = false, output: string = "case-1", quiet: bool = false,
timeline: string) =
checkArgs(quiet, timeline, level)
Expand Down
2 changes: 1 addition & 1 deletion src/takajopkg/extractScriptblocks.nim
Expand Up @@ -142,7 +142,7 @@ method resultOutput*(self: ExtractScriptBlocksCmd) =
self.output & "/*.txt")


proc extractScriptblocks(level: string = "low", skipProgressBar: bool = false,
proc extractScriptblocks(level: string = "informational", skipProgressBar: bool = false,
output: string = "scriptblock-logs", quiet: bool = false,
timeline: string) =
checkArgs(quiet, timeline, level)
Expand Down
2 changes: 1 addition & 1 deletion src/takajopkg/stackCmdlines.nim
Expand Up @@ -20,7 +20,7 @@ method analyze*(self: StackCmdlineCmd, x: HayabusaJson) =
method resultOutput*(self: StackCmdlineCmd) =
outputResult(self, self.stack, isMinColumns = true)

proc stackCmdlines(level: string = "low", ignoreSysmon: bool = false,
proc stackCmdlines(level: string = "informational", ignoreSysmon: bool = false,
ignoreSecurity: bool = false, skipProgressBar: bool = false,
output: string = "", quiet: bool = false, timeline: string) =
checkArgs(quiet, timeline, level)
Expand Down
2 changes: 1 addition & 1 deletion src/takajopkg/stackProcesses.nim
Expand Up @@ -20,7 +20,7 @@ method analyze*(self: StackProcessesCmd, x: HayabusaJson) =
method resultOutput*(self: StackProcessesCmd) =
outputResult(self, self.stack, isMinColumns = true)

proc stackProcesses(level: string = "low", ignoreSysmon: bool = false,
proc stackProcesses(level: string = "informational", ignoreSysmon: bool = false,
ignoreSecurity: bool = false, skipProgressBar: bool = false,
output: string = "", quiet: bool = false, timeline: string) =
checkArgs(quiet, timeline, level)
Expand Down

0 comments on commit 7b19632

Please sign in to comment.