From b04a0e84e1a92f979b042e47888b98e6beea1999 Mon Sep 17 00:00:00 2001 From: Ceramicskate0 Date: Mon, 22 Oct 2018 12:32:23 -0500 Subject: [PATCH] Update helpers.py --- lib/common/helpers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/common/helpers.py b/lib/common/helpers.py index 641f93ffb..7f459f2d8 100644 --- a/lib/common/helpers.py +++ b/lib/common/helpers.py @@ -169,9 +169,9 @@ def randomize_capitalization(data): def obfuscate_call_home_address(data): """ - Poowershell script to base64 encode variable contents and execute on command as if clear text in powershell + opportunity here to hid call home via this method. TODO Get past AMSI here """ - return '$('+randomize_capitalization('[Text.Encoding]::Unicode.GetString([Convert]::FromBase64String(\'') + enc_powershell(data) +'\')))' + return data def chunks(l, n): """