-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4a19bd3
commit 6fc9138
Showing
7 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "casr" | ||
version = "2.1.1" | ||
version = "2.2.0" | ||
authors = ["Andrey Fedotov <[email protected]>", "Alexey Vishnyakov <[email protected]>", "Georgy Savidov <[email protected]>"] | ||
|
||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ struct AflCrashInfo { | |
|
||
fn main() -> Result<()> { | ||
let matches = App::new("casr-afl") | ||
.version("2.1.1") | ||
.version("2.2.0") | ||
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>") | ||
.about("Triage crashes found by AFL++") | ||
.term_width(90) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,8 +34,8 @@ use casr::report::CrashReport; | |
|
||
fn main() -> Result<()> { | ||
let matches = App::new("casr-cli") | ||
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>") | ||
.version("2.1.1") | ||
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>") | ||
.version("2.2.0") | ||
.about("App provides text-based user interface to view CASR reports") | ||
.term_width(90) | ||
.arg( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -410,8 +410,8 @@ fn dedup(indir: &Path, outdir: Option<PathBuf>) -> Result<(usize, usize)> { | |
|
||
fn main() -> Result<()> { | ||
let matches = App::new("casr-cluster") | ||
.version("2.1.1") | ||
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>") | ||
.version("2.2.0") | ||
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>") | ||
.about("Tool for clustering CASR reports") | ||
.term_width(90) | ||
.arg( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,8 +35,8 @@ use casr::report::*; | |
|
||
fn main() -> Result<()> { | ||
let matches = App::new("casr-core") | ||
.version("2.1.1") | ||
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>") | ||
.version("2.2.0") | ||
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>") | ||
.about("Analyze coredump for security goals and provide detailed report with severity estimation") | ||
.term_width(90) | ||
.arg(Arg::new("mode") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,8 +24,8 @@ use std::path::PathBuf; | |
|
||
fn main() -> Result<()> { | ||
let matches = App::new("casr-gdb") | ||
.version("2.1.1") | ||
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>") | ||
.version("2.2.0") | ||
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>") | ||
.about("Create CASR reports (.casrep) from gdb execution") | ||
.term_width(90) | ||
.arg( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,8 +26,8 @@ use std::process::Command; | |
|
||
fn main() -> Result<()> { | ||
let matches = App::new("casr-san") | ||
.version("2.1.1") | ||
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>") | ||
.version("2.2.0") | ||
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>") | ||
.about("Create CASR reports (.casrep) from sanitizer reports") | ||
.term_width(90) | ||
.arg( | ||
|