Generated docs from job=generate-docs branch=master [ci skip]
This commit is contained in:
@@ -90185,9 +90185,9 @@ credential-access:
|
||||
- description: 'Google Chrome must be on the device.
|
||||
|
||||
'
|
||||
prereq_command: '''if ((Test-Path "C:\Program Files\Google\Chrome\Application\chrome.exe")
|
||||
prereq_command: 'if ((Test-Path "C:\Program Files\Google\Chrome\Application\chrome.exe")
|
||||
-Or (Test-Path "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"))
|
||||
{exit 0} else {exit 1}''
|
||||
{exit 0} else {exit 1}
|
||||
|
||||
'
|
||||
get_prereq_command: |
|
||||
@@ -98059,8 +98059,8 @@ discovery:
|
||||
command: |
|
||||
net localgroup
|
||||
net group /domain
|
||||
net group "domain admins" /domain
|
||||
net group "enterprise admins" /domain
|
||||
net group "domain admins" /domain
|
||||
name: command_prompt
|
||||
- name: Permission Groups Discovery PowerShell (Domain)
|
||||
auto_generated_guid: 6d5d8c96-3d2a-4da9-9d6d-9a9d341899a7
|
||||
@@ -98073,7 +98073,7 @@ discovery:
|
||||
user:
|
||||
description: User to identify what groups a user is a member of
|
||||
type: string
|
||||
default: administrator
|
||||
default: "$env:USERNAME"
|
||||
executor:
|
||||
command: 'get-ADPrincipalGroupMembership #{user} | select name
|
||||
|
||||
@@ -98088,10 +98088,10 @@ discovery:
|
||||
- windows
|
||||
executor:
|
||||
command: |
|
||||
net group /domai "Domain Admins"
|
||||
net groups "Account Operators" /doma
|
||||
net groups "Exchange Organization Management" /doma
|
||||
net group "BUILTIN\Backup Operators" /doma
|
||||
net group /domai "Domain Admins"
|
||||
name: command_prompt
|
||||
- name: Find machines where user has local admin access (PowerView)
|
||||
auto_generated_guid: a2d71eee-a353-4232-9f86-54f4288dd8c1
|
||||
|
||||
@@ -77419,9 +77419,9 @@ credential-access:
|
||||
- description: 'Google Chrome must be on the device.
|
||||
|
||||
'
|
||||
prereq_command: '''if ((Test-Path "C:\Program Files\Google\Chrome\Application\chrome.exe")
|
||||
prereq_command: 'if ((Test-Path "C:\Program Files\Google\Chrome\Application\chrome.exe")
|
||||
-Or (Test-Path "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"))
|
||||
{exit 0} else {exit 1}''
|
||||
{exit 0} else {exit 1}
|
||||
|
||||
'
|
||||
get_prereq_command: |
|
||||
@@ -84323,8 +84323,8 @@ discovery:
|
||||
command: |
|
||||
net localgroup
|
||||
net group /domain
|
||||
net group "domain admins" /domain
|
||||
net group "enterprise admins" /domain
|
||||
net group "domain admins" /domain
|
||||
name: command_prompt
|
||||
- name: Permission Groups Discovery PowerShell (Domain)
|
||||
auto_generated_guid: 6d5d8c96-3d2a-4da9-9d6d-9a9d341899a7
|
||||
@@ -84337,7 +84337,7 @@ discovery:
|
||||
user:
|
||||
description: User to identify what groups a user is a member of
|
||||
type: string
|
||||
default: administrator
|
||||
default: "$env:USERNAME"
|
||||
executor:
|
||||
command: 'get-ADPrincipalGroupMembership #{user} | select name
|
||||
|
||||
@@ -84352,10 +84352,10 @@ discovery:
|
||||
- windows
|
||||
executor:
|
||||
command: |
|
||||
net group /domai "Domain Admins"
|
||||
net groups "Account Operators" /doma
|
||||
net groups "Exchange Organization Management" /doma
|
||||
net group "BUILTIN\Backup Operators" /doma
|
||||
net group /domai "Domain Admins"
|
||||
name: command_prompt
|
||||
- name: Find machines where user has local admin access (PowerView)
|
||||
auto_generated_guid: a2d71eee-a353-4232-9f86-54f4288dd8c1
|
||||
|
||||
@@ -59,8 +59,8 @@ information will be displayed.
|
||||
```cmd
|
||||
net localgroup
|
||||
net group /domain
|
||||
net group "domain admins" /domain
|
||||
net group "enterprise admins" /domain
|
||||
net group "domain admins" /domain
|
||||
```
|
||||
|
||||
|
||||
@@ -87,7 +87,7 @@ information will be displayed.
|
||||
#### Inputs:
|
||||
| Name | Description | Type | Default Value |
|
||||
|------|-------------|------|---------------|
|
||||
| user | User to identify what groups a user is a member of | string | administrator|
|
||||
| user | User to identify what groups a user is a member of | string | $env:USERNAME|
|
||||
|
||||
|
||||
#### Attack Commands: Run with `powershell`!
|
||||
@@ -123,10 +123,10 @@ test will display some errors if run on a computer not connected to a domain. Up
|
||||
|
||||
|
||||
```cmd
|
||||
net group /domai "Domain Admins"
|
||||
net groups "Account Operators" /doma
|
||||
net groups "Exchange Organization Management" /doma
|
||||
net group "BUILTIN\Backup Operators" /doma
|
||||
net group /domai "Domain Admins"
|
||||
```
|
||||
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<blockquote>Adversaries may acquire credentials from web browsers by reading files specific to the target browser.(Citation: Talos Olympic Destroyer 2018) Web browsers commonly save credentials such as website usernames and passwords so that they do not need to be entered manually in the future. Web browsers typically store the credentials in an encrypted format within a credential store; however, methods exist to extract plaintext credentials from web browsers.
|
||||
|
||||
For example, on Windows systems, encrypted credentials may be obtained from Google Chrome by reading a database file, <code>AppData\Local\Google\Chrome\User Data\Default\Login Data</code> and executing a SQL query: <code>SELECT action_url, username_value, password_value FROM logins;</code>. The plaintext password can then be obtained by passing the encrypted credentials to the Windows API function <code>CryptUnprotectData</code>, which uses the victim’s cached logon credentials as the decryption key.(Citation: Microsoft CryptUnprotectData April 2018)
|
||||
|
||||
|
||||
Adversaries have executed similar procedures for common web browsers such as FireFox, Safari, Edge, etc.(Citation: Proofpoint Vega Credential Stealer May 2018)(Citation: FireEye HawkEye Malware July 2017) Windows stores Internet Explorer and Microsoft Edge credentials in Credential Lockers managed by the [Windows Credential Manager](https://attack.mitre.org/techniques/T1555/004).
|
||||
|
||||
Adversaries may also acquire credentials by searching web browser process memory for patterns that commonly match credentials.(Citation: GitHub Mimikittenz July 2016)
|
||||
|
||||
Reference in New Issue
Block a user