Skip to content

Commit 4ab8315

Browse files
committed
Armitage 03.06.13
Apparently, my last update came from the future. This modification to that future update fixes an oversight preventing Armitage from connecting to its collaboration server because it would report the wrong application.
1 parent 59d2f05 commit 4ab8315

File tree

6 files changed

+15
-2
lines changed

6 files changed

+15
-2
lines changed

data/armitage/armitage.jar

1 Byte
Binary file not shown.

data/armitage/cortana.jar

1 Byte
Binary file not shown.

data/armitage/whatsnew.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ Armitage Changelog
88
creating additional connections to server to balance messages over
99
- Preferences are now shared among each Armitage connection.
1010

11+
6 Mar 13 (2000h)
12+
--------
13+
- Fixed issue with additional team server connections reporting wrong
14+
application and receiving a summary rejection by the team server.
15+
1116
Cortana Updates (for scripters)
1217
--------
1318
- Added a &publish, &query, &subscribe API to allow inter-script

external/source/armitage/scripts/armitage.sl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ sub _connectToMetasploit {
187187
local('$x $cc');
188188
for ($x = 0; $x < 6; $x++) {
189189
$cc = c_client($1, $2);
190-
call($cc, "armitage.validate", $3, $4, $null, "cobaltstrike", 120326);
190+
call($cc, "armitage.validate", $3, $4, $null, "armitage", 120326);
191191
push(@POOL, $cc);
192192
}
193193
}

external/source/armitage/scripts/preferences.sl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,10 @@ sub loadPreferences {
6868
else {
6969
[$prefs load: resource("resources/armitage.prop")];
7070
}
71-
[$__frame__ setPreferences: $prefs];
71+
72+
if ($__frame__ !is $null) {
73+
[$__frame__ setPreferences: $prefs];
74+
}
7275
}
7376

7477
# parse command line options here.

external/source/armitage/whatsnew.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ Armitage Changelog
88
creating additional connections to server to balance messages over
99
- Preferences are now shared among each Armitage connection.
1010

11+
6 Mar 13 (2000h)
12+
--------
13+
- Fixed issue with additional team server connections reporting wrong
14+
application and receiving a summary rejection by the team server.
15+
1116
Cortana Updates (for scripters)
1217
--------
1318
- Added a &publish, &query, &subscribe API to allow inter-script

0 commit comments

Comments
 (0)