-
Notifications
You must be signed in to change notification settings - Fork 788
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release Infection Monkey v2.3.0
- Loading branch information
Showing
643 changed files
with
27,873 additions
and
11,525 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
title: "Credentials Collectors" | ||
date: 2023-09-13T16:35:19+05:30 | ||
weight: 100 | ||
chapter: true | ||
pre: '<i class="fas fa-key"></i> ' | ||
tags: ["reference", "credentials collectors"] | ||
--- | ||
|
||
|
||
# Credentials Collectors | ||
|
||
Infection Monkey has multiple ways to steal credentials from compromised machines: | ||
|
||
{{% children %}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: "Chrome" | ||
date: 2023-09-13T16:35:11+05:30 | ||
tags: ["credentials collector", "chrome", "linux", "windows"] | ||
weight: 1 | ||
--- | ||
|
||
## Description | ||
|
||
The Chrome Credentials Collector steals saved credentials from Chrome-based browsers. | ||
On Linux, it targets Google Chrome and Chromium. On Windows, it targets Google Chrome | ||
and Microsoft Edge. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: "Mimikatz" | ||
date: 2023-09-13T16:51:44+05:30 | ||
tags: ["credentials collector", "mimikatz", "windows"] | ||
weight: 2 | ||
--- | ||
|
||
## Description | ||
|
||
The Mimikatz Credentials Collector uses [pypykatz](https://github.com/skelsec/pypykatz) | ||
(a pure-Python implementation of [mimikatz](https://github.com/gentilkiwi/mimikatz)) | ||
to steal credentials from Windows Credential Manager. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
title: "SSH" | ||
date: 2023-09-13T16:51:38+05:30 | ||
tags: ["credentials collector", "ssh", "linux"] | ||
weight: 3 | ||
--- | ||
|
||
## Description | ||
|
||
The SSH Credentials Collector steals SSH keys from Linux users. | ||
|
||
For all users on the system, it locates the `/home/<user>/.ssh` | ||
directory and steals keypairs from it. The supported private key | ||
encryption formats are RSA, DSA, EC, and ECDSA. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
title: "RDP" | ||
date: 2023-08-08T13:29:21+03:00 | ||
draft: false | ||
tags: ["exploit", "windows"] | ||
--- | ||
|
||
### Description | ||
|
||
This exploiter uses brute force to propagate through the network via Remote | ||
Desktop Protocol (RDP). For more information about RDP, see [Microsoft's | ||
documentation](https://learn.microsoft.com/en-us/windows/win32/termserv/remote-desktop-protocol). | ||
|
||
|
||
#### Credentials used | ||
|
||
The RDP exploiter can be run from both Linux and Windows attackers and will | ||
use configured or stolen credentials to propagate. Different combinations of | ||
credentials are attempted in the following order: | ||
|
||
1. **Brute force usernames and passwords** - The exploiter will attempt to use | ||
all combinations of usernames and passwords that were set in the | ||
[configuration]({{< ref "/usage/configuration/credentials" >}}) or stolen by | ||
a credentials collector. | ||
|
||
|
||
1. **Brute force usernames and NT hashes** - The exploiter will attempt to use | ||
all combinations of usernames and NT Hashes that were set in the [configuration]({{< ref | ||
"/usage/configuration/credentials" >}}) or stolen by a credentials collector. | ||
|
||
This only works on Windows 8.1 and Windows Server 2012 R2. You can read more | ||
[here](https://www.kali.org/blog/passing-hash-remote-desktop/). | ||
|
||
|
||
#### Securing Remote Desktop Protocol | ||
|
||
For information about remediating RDP-related security risks, see | ||
[Microsoft's | ||
guidance](https://www.microsoft.com/en-us/security/blog/2020/04/16/security-guidance-remote-desktop-adoption/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-1.97 MB
docs/content/reports/security.files/infection_monkey_security_report_example.pdf
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.