Skip to content

Commit 559f25b

Browse files
authored
Merge pull request BC-SECURITY#46 from BC-SECURITY/3.0-bug-fixes
3.0 bug fixes
2 parents e25593d + 381cbc7 commit 559f25b

File tree

15 files changed

+149
-134
lines changed

15 files changed

+149
-134
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ setup/bomutils/
1616
.venv
1717
.DS_Store
1818
venv/
19-
19+
addons/
20+
.gitignore

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0
1+
3.0.1

changelog

+24-9
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,25 @@
1-
11/26/2019
1+
12/29/2019
22
------------
3-
- Version 3.0 Beta Release
3+
- Version 3.0.1 Master Release
4+
- Fixed sysinfo error - #36 (@Invoke-Mimikatz)
5+
- Fixed Debian 10.x docker - #38 (@Vinnybod)
6+
- Fixed windows/macro stager error - #30 (@Cx01N)
7+
- Fixed upload file error - #30 (@Cx01N)
8+
- Fixed meterpreter error - #42 (@Cx01N)
9+
- Fixed download file error (@Cx01N)
10+
- Fixed scriptcmd error - #45 (@Invoke-Mimikatz)
11+
- Fixed print creds error - #31 (@Hubbl3)
12+
- Cleaned up print results (@Cx01N)
13+
- Fixed long running module issue - #16 (@Hubbl3)
14+
15+
Thank you to the contributors for spending time debugging with our team.
16+
Please contact us at [email protected] if credit is incorrectly cited.
17+
18+
12/22/2019
19+
------------
20+
- Version 3.0 Master Release
421
- Added Python 2.6/7 and 3.x compatibility (@Cx01N, @Hubbl3, @Vinnybod)
5-
- Improved Windows Defender Evasion
22+
- Improved Windows Defender Evasion (@Hubbl3)
623
- Updated mimikatz binary in Invoke-Mimikatz to version 2.2.0 20191125 (@Cx01N)
724
- Fixed port assignment feature to listeners (@Cx01N)
825
- Fixed issues with http_Hop listener (@Cx01N)
@@ -17,15 +34,15 @@
1734
- Added Get-KerberosServiceTIcket (@OneLogicalMyth)
1835
- Added Invoke-RID_Hijack (@r4wd3r)
1936
- Added Invoke-internal_monologue (@audibleblink)
20-
- Added Get-LAPSPasswords (@audibleblink)
37+
- Added Get-LAPSPasswords (@ippsec)
2138
- Added Invoke-SMBLogin (@mvelazc0)
22-
- Added Sherlock (@_RastaMouse, @audibleblink)
39+
- Added Sherlock (@ippsec)
2340
- Added Outlook Sandbox Evasion for Windows Macro launcher (@Cx01N, @Hubbl3)
24-
- Added Randomized JA3S signature (@Hubbl3)
41+
- Added Randomized JA3/S signature (@Hubbl3)
2542
- Added AMSI Bypass based on Tal Liberman's AMSI Bypass (@Hubbl3)
2643
- Added Invoke-CredentialPhisher (@quickbreach)
2744
- Made Security Bypasses configurable for launchers (@phra)
28-
- Updated Readme to include install instruction, EOL of Core Devloper support, new contribution rules
45+
- Updated Readme to include install instruction, EOL of Core Developer support, new contribution rules (@Hubbl3)
2946
- Added OSX shellcode stager (@johneiser)
3047
- Added Invoke-Phant0m (@leesoh)
3148
- Added Get-AppLockerConfig (@matterpreter)
@@ -66,8 +83,6 @@ please contact us at [email protected]
6683
- Added onedrive listener for powershell agent (@mr64bit)
6784
- Added opsec-safe aliases for ls, pwd, rm, mkdir, whoami, and getuid in the python agent
6885
- Updated office macro stager for python agent (@import-au)
69-
70-
7186

7287
01/04/2018
7388
------------

data/agent/agent.ps1

-4
Original file line numberDiff line numberDiff line change
@@ -441,8 +441,6 @@ function Invoke-Empire {
441441
param($JobName)
442442
if($Script:Jobs.ContainsKey($JobName)) {
443443
$Script:Jobs[$JobName]['Buffer'].ReadAll()
444-
$Script:Jobs[$JobName]['PSHost'].Streams.Error
445-
$Script:Jobs[$JobName]['PSHost'].Streams.Error.Clear()
446444
}
447445
}
448446

@@ -455,8 +453,6 @@ function Invoke-Empire {
455453
$Null = $Script:Jobs[$JobName]['PSHost'].Stop()
456454
# get results
457455
$Script:Jobs[$JobName]['Buffer'].ReadAll()
458-
$Script:Jobs[$JobName]['PSHost'].Streams.Error
459-
$Script:Jobs[$JobName]['PSHost'].Streams.Error.Clear()
460456
# unload the app domain runner
461457
$Null = [AppDomain]::Unload($Script:Jobs[$JobName]['AppDomain'])
462458
$Script:Jobs.Remove($JobName)

0 commit comments

Comments
 (0)