Skip to content

Commit

Permalink
version
Browse files Browse the repository at this point in the history
  • Loading branch information
postrequest committed Oct 6, 2020
1 parent 848e55f commit bfedbb8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xeca"
version = "0.3.0"
version = "0.3.1"
authors = ["postrequest"]
edition = "2018"

Expand Down
12 changes: 6 additions & 6 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ pub mod util;
fn main() {
// parse args
let mut app = App::new("xeca")
.version("0.3.0")
.version("0.3.1")
.author("written by postrequest")
.about("Encrypted payload generator")
.subcommand(
App::new("powershell")
.about("Encrypt PowerShell payload to execute in memory")
.version("0.3.0")
.version("0.3.1")
.author("written by postrequest")
.setting(AppSettings::ArgRequiredElseHelp)
.arg(
Expand Down Expand Up @@ -57,7 +57,7 @@ fn main() {
.subcommand(
App::new("shellcode")
.about("PowerShell payload to execute reflective encrypted DLL shellcode in memory")
.version("0.3.0")
.version("0.3.1")
.author("written by postrequest")
.setting(AppSettings::ArgRequiredElseHelp)
.arg(
Expand Down Expand Up @@ -119,7 +119,7 @@ fn main() {
.subcommand(
App::new("reflective")
.about("PowerShell payload to reflectively execute encrypted PE/DLL in memory")
.version("0.3.0")
.version("0.3.1")
.author("written by postrequest")
.setting(AppSettings::ArgRequiredElseHelp)
.arg(
Expand Down Expand Up @@ -161,7 +161,7 @@ fn main() {
.subcommand(
App::new("donut")
.about("PowerShell payload to execute encrypted Donut shellcode in memory")
.version("0.3.0")
.version("0.3.1")
.author("written by postrequest")
.setting(AppSettings::ArgRequiredElseHelp)
.arg(
Expand Down Expand Up @@ -209,7 +209,7 @@ fn main() {
.subcommand(
App::new("convert")
.about("Convert DLL to shellcode")
.version("0.3.0")
.version("0.3.1")
.author("written by postrequest")
.setting(AppSettings::ArgRequiredElseHelp)
.arg(
Expand Down

0 comments on commit bfedbb8

Please sign in to comment.