Skip to content

Commit bb728c4

Browse files
authored
Merge pull request #20560 from cdelafuente-r7/feat/mitre/T1021
Add T1021 "Remote Services" MITRE technique and sub-technique references
2 parents 374074c + 179a545 commit bb728c4

File tree

65 files changed

+134
-55
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+134
-55
lines changed

modules/auxiliary/admin/smb/change_password.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ def initialize(info = {})
2626
],
2727
'References' => [
2828
['URL', 'https://github.com/fortra/impacket/blob/master/examples/changepasswd.py'],
29+
[ 'ATT&CK', Mitre::Attack::Technique::T1021_002_SMB_WINDOWS_ADMIN_SHARES ]
2930
],
3031
'Notes' => {
3132
'Stability' => [CRASH_SAFE],

modules/auxiliary/admin/smb/check_dir_file.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ def initialize
3131
'j0hn__f'
3232
],
3333
'References' => [
34+
[ 'ATT&CK', Mitre::Attack::Technique::T1021_002_SMB_WINDOWS_ADMIN_SHARES ]
3435
],
3536
'License' => MSF_LICENSE,
3637
'Notes' => {

modules/auxiliary/admin/smb/delete_file.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ def initialize
3030
'mubix' # copied from hdm upload_file module
3131
],
3232
'License' => MSF_LICENSE,
33+
'References' => [
34+
[ 'ATT&CK', Mitre::Attack::Technique::T1021_002_SMB_WINDOWS_ADMIN_SHARES ]
35+
],
3336
'Notes' => {
3437
'Stability' => [OS_RESOURCE_LOSS],
3538
'SideEffects' => [],

modules/auxiliary/admin/smb/download_file.rb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@ def initialize
2929
'Stability' => [CRASH_SAFE],
3030
'SideEffects' => [],
3131
'Reliability' => []
32-
}
32+
},
33+
'References' => [
34+
[ 'ATT&CK', Mitre::Attack::Technique::T1021_002_SMB_WINDOWS_ADMIN_SHARES ]
35+
]
3336
)
3437

3538
register_options([

modules/auxiliary/admin/smb/list_directory.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ def initialize
2727
'hdm'
2828
],
2929
'References' => [
30+
[ 'ATT&CK', Mitre::Attack::Technique::T1021_002_SMB_WINDOWS_ADMIN_SHARES ]
3031
],
3132
'License' => MSF_LICENSE,
3233
'Notes' => {

modules/auxiliary/admin/smb/ms17_010_command.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ def initialize(info = {})
4141
[ 'URL', 'https://github.com/worawit/MS17-010' ],
4242
[ 'URL', 'https://hitcon.org/2017/CMT/slide-files/d2_s2_r0.pdf' ],
4343
[ 'URL', 'https://blogs.technet.microsoft.com/srd/2017/06/29/eternal-champion-exploit-analysis/' ],
44+
[ 'ATT&CK', Mitre::Attack::Technique::T1021_002_SMB_WINDOWS_ADMIN_SHARES ],
4445
],
4546
'DisclosureDate' => '2017-03-14',
4647
'Notes' => {

modules/auxiliary/admin/smb/psexec_ntdsgrab.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ def initialize(info = {})
3535
'References' => [
3636
[ 'URL', 'http://sourceforge.net/projects/smbexec' ],
3737
[ 'URL', 'https://www.optiv.com/blog/owning-computers-without-shell-access' ],
38-
[ 'ATT&CK', Mitre::Attack::Technique::T1003_003_NTDS ]
38+
[ 'ATT&CK', Mitre::Attack::Technique::T1003_003_NTDS ],
39+
[ 'ATT&CK', Mitre::Attack::Technique::T1021_002_SMB_WINDOWS_ADMIN_SHARES ]
3940
],
4041
'Notes' => {
4142
'Stability' => [CRASH_SAFE],

modules/auxiliary/admin/smb/samba_symlink_traversal.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ def initialize
2929
'References' => [
3030
['CVE', '2010-0926'],
3131
['OSVDB', '62145'],
32-
['URL', 'http://www.samba.org/samba/news/symlink_attack.html']
32+
['URL', 'http://www.samba.org/samba/news/symlink_attack.html'],
33+
['ATT&CK', Mitre::Attack::Technique::T1021_002_SMB_WINDOWS_ADMIN_SHARES]
3334
],
3435
'License' => MSF_LICENSE,
3536
'Notes' => {

modules/auxiliary/admin/smb/upload_file.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ def initialize
2626
'hdm' # metasploit module
2727
],
2828
'References' => [
29+
[ 'ATT&CK', Mitre::Attack::Technique::T1021_002_SMB_WINDOWS_ADMIN_SHARES ]
2930
],
3031
'License' => MSF_LICENSE,
3132
'Notes' => {

modules/auxiliary/admin/smb/webexec_command.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ def initialize(info = {})
3030
'License' => MSF_LICENSE,
3131
'References' => [
3232
['URL', 'https://webexec.org'],
33-
['CVE', '2018-15442']
33+
['CVE', '2018-15442'],
34+
['ATT&CK', Mitre::Attack::Technique::T1021_002_SMB_WINDOWS_ADMIN_SHARES]
3435
],
3536
'Notes' => {
3637
'Stability' => [CRASH_SAFE],

0 commit comments

Comments
 (0)