Skip to content

Commit

Permalink
Fix compilation warning in release mode, add TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
chvancooten committed Jun 16, 2024
1 parent 845d8fa commit 19692ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client-rs/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ fn main() {

// Self-delete the binary if the feature is enabled
#[cfg(feature = "selfdelete")]
if let Err(e) = crate::app::self_delete::perform() {
debug_println!("Failed to self-delete: {:?}", e);
if let Err(_e) = crate::app::self_delete::perform() {
debug_println!("Failed to self-delete: {:?}", _e);
};

app::main();
Expand Down
2 changes: 2 additions & 0 deletions nimplant.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,8 @@ def compile_rust_debug(binary_type, xor_key, config):

def compile_rust(binary_type, xor_key, config, debug=False):
"""Compile the Rust implant."""
# TODO: Fix inline-execute crash when executing after "This BOF expects arguments"

# Construct compilation command
target_path = "client-rs/target/x86_64-pc-windows-gnu/"

Expand Down

0 comments on commit 19692ea

Please sign in to comment.