Skip to content

Commit 91a9186

Browse files
committed
Added documentation updates
1 parent 77b42b3 commit 91a9186

File tree

4 files changed

+36
-1
lines changed

4 files changed

+36
-1
lines changed

docs/conferences.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Conferences
2+
3+
PurpleCloud has been featured at the following Information Security events:
4+
5+
**SANS Pen Test Hackfest Berlin 2022**
6+
7+
[![PDF]()](https://github.com/iknowjason/conferences/blob/master/SANS-Hackfest-Berlin-2022.pdf "PDF")
8+
9+
**BSidesDFW 2022**
10+
11+
[![PDF]()](https://github.com/iknowjason/conferences/blob/master/BSidesDFW-2022-PurpleTeam_Cloud_Identity.pdf "PDF")
12+
13+
[![Slideshare]()]( https://www.slideshare.net/JasonOstrom1/bsidesdfw2022purpleteamcloudidentitypptx "Slideshare")
14+
15+
**SANS Pen Test HackFest 2022**
16+
17+
[![PDF]()](https://github.com/iknowjason/conferences/blob/master/SANS-Hackfest-US-2022-PurpleTeam_Cloud_Identity.pdf "PDF")
18+
19+
[![Slideshare]()](https://www.slideshare.net/JasonOstrom1/sanspentesthackfest2022purpleteamcloudidentitypptx "Slideshare")

docs/cost.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,15 @@ By default, both the Windows 10 Pro and Domain Controller are using a ```Standar
1212

1313
Reference the Azure "Windows Virtual Machine Pricing" for the most up to date pricing:
1414

15+
```
1516
https://azure.microsoft.com/en-us/pricing/details/virtual-machines/windows/
17+
```
1618

1719
Reference the Azure "Linux Virtual Machines Pricing" for the most up to date pricing on the Linux VM:
1820

21+
```
1922
https://azure.microsoft.com/en-us/pricing/details/virtual-machines/linux/
23+
```
2024

2125
Here are the defaults I've researched for this range. Each Windows and Linux VM should approximately accrue the following with range defaults:
2226
### Table: Azure Accrued Costs per VM with Windows License Included

docs/install.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,22 @@
99
* **Global Administrator role**
1010

1111
## Important Security Information: Security Groups
12-
Some people might be concerned about publicly exposing these cloud resources. The ```ad.py``` script will auto-detect your source IP address and white list only that IP address. The ```managed_identity.py``` script has a variable called src_ip which you can manually edit for your source IP address.
12+
Some people might be concerned about publicly exposing these cloud resources. The following scripts are built to use terraform that will auto-detect your source IP address and white list only that IP address. If you change locations, you can simply run ```terraform apply``` and the Azure NSG firewall rules will change your allowed IP address using terraform. Here are the scripts supporting this and these are all of the scripts that create Azure VMs and expose RDP (only from the white listed IP): aadjoin.py, ad.py, adfs.py, managed_identity.py, sentinel.py.
1313

1414
### Step 1: Clone
1515
Clone this repository
1616

17+
```
18+
git clone https://github.com/iknowjason/PurpleCloud.git
19+
```
20+
21+
**Important Note on Large File Support:** This repository has a ```shared``` directory that uses some larger files (i.e., Sysmon, Azure AD Connect, Velociraptor, Winlogbeat). If you wish to use the large files in this repository and download them with the git client, please make sure your git client supports **git-lfs** (large file support). If you don't want to install the git-lfs extension but you still want to download the large files, you can simply download the zip file with your browser. It will include the large files.
22+
23+
On Ubuntu linux, just run this to install git-lfs extension:
24+
```
25+
apt-get install git-lfs
26+
```
27+
1728
### Step 2: Install python faker
1829

1930
Install the python faker using pip. This is a dependency of some python scripts to generate users. Faker is required for the following three scripts: azure_ad.py, ad.py, managed_identity.py.

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ nav:
1717
- Cost: cost.md
1818
- References : references.md
1919
- Roadmap Ideas : future.md
20+
- Conferences : conferences.md
2021
- Credits : credits.md
2122

2223
theme:

0 commit comments

Comments
 (0)