diff --git a/content/1 Projects/Applying SP800-53 to Azure Infrastructure.md b/content/1 Projects/Applying SP800-53 to Azure Infrastructure.md index 3f19add39e9d5..1371817017d48 100644 --- a/content/1 Projects/Applying SP800-53 to Azure Infrastructure.md +++ b/content/1 Projects/Applying SP800-53 to Azure Infrastructure.md @@ -1 +1,4 @@ +--- +draft: true +--- We will use [[Azure Policy]] and [[Azure Initiative]] to secure and comply with NIST standards and guidelines. diff --git a/content/1 Projects/Connecting Azure to On Premesis.md b/content/1 Projects/Connecting Azure to On Premesis.md new file mode 100644 index 0000000000000..2dd6673bdfbbe --- /dev/null +++ b/content/1 Projects/Connecting Azure to On Premesis.md @@ -0,0 +1,24 @@ +--- +draft: true +--- +We will implement Azure's lab on setting up a VPN from Azure to On Premises. https://learn.microsoft.com/en-us/training/modules/security-virtual-networks/6-virtual-wide-area-network + +To begin, open up the CloudShell and run ``` Get-AzSubscription``` to see the list of subscriptions: + +![[Pasted image 20240722094115.png]] + +We will create a new resource group ``` New-AzResourceGroup -Location "West US" -Name "VPNRG"```: + +![[Pasted image 20240722094455.png]] + +Create a virtual WAN using this cmdlet, ```$virtualWan = New-AzVirtualWan -ResourceGroupName VPNRG -Name TestVWAN1 -Location "West US"```: + +![[Pasted image 20240722094739.png]] + + +Creat a hub and configure settings +```$virtualHub = New-AzVirtualHub -VirtualWan $virtualWan -ResourceGroupName "VPNRG" -Name "Hub1" -AddressPrefix "10.1.0.0/16" -Location "westus"```: + + + + diff --git a/content/1 Projects/Creating a Global Attack Map.md b/content/1 Projects/Creating a Global Attack Map.md index d45e9273f29ce..092fdb52acb51 100644 --- a/content/1 Projects/Creating a Global Attack Map.md +++ b/content/1 Projects/Creating a Global Attack Map.md @@ -1,7 +1,8 @@ --- tags: - azure -date: +date: +draft: true --- This project creates an attack map of all failed RDP requests made on a honeypot virtual machine. diff --git a/content/1 Projects/Hosting a Website using Static Web Apps.md b/content/1 Projects/Hosting a Website using Static Web Apps.md index 3d285d989643d..49acc0ee8bb63 100644 --- a/content/1 Projects/Hosting a Website using Static Web Apps.md +++ b/content/1 Projects/Hosting a Website using Static Web Apps.md @@ -1,3 +1,6 @@ +--- +draft: true +--- This is how you can host a free[^1] website using Azure Static Web Apps and GitHub Actions. ## Upload files to GitHub diff --git a/content/1 Projects/Incident Response using SP800-61 Rev. 2.md b/content/1 Projects/Incident Response using SP800-61 Rev. 2.md index 6671345f72717..44c16cb485d41 100644 --- a/content/1 Projects/Incident Response using SP800-61 Rev. 2.md +++ b/content/1 Projects/Incident Response using SP800-61 Rev. 2.md @@ -1 +1,4 @@ +--- +draft: true +--- As more threat actors attempt and breach organizations, it is crucial to implement an incident response playbook to properly remediate affected systems. \ No newline at end of file diff --git a/content/Blogs/Maintaining a Pond.md b/content/Blogs/Maintaining a Pond.md new file mode 100644 index 0000000000000..2a90d1fd89e59 --- /dev/null +++ b/content/Blogs/Maintaining a Pond.md @@ -0,0 +1,3 @@ +Taking care of a pond is similar how an engineer would manage an enterprise infrastructure. + +As I began working on my pond and how I plan on budgeting and prioritizing for maintenance, I realized that taking care of a pond is \ No newline at end of file diff --git a/content/Pictures/Pasted image 20240722094115.png b/content/Pictures/Pasted image 20240722094115.png new file mode 100644 index 0000000000000..26c0ae506e142 Binary files /dev/null and b/content/Pictures/Pasted image 20240722094115.png differ diff --git a/content/Pictures/Pasted image 20240722094455.png b/content/Pictures/Pasted image 20240722094455.png new file mode 100644 index 0000000000000..7b14cf1ec4a56 Binary files /dev/null and b/content/Pictures/Pasted image 20240722094455.png differ diff --git a/content/Pictures/Pasted image 20240722094739.png b/content/Pictures/Pasted image 20240722094739.png new file mode 100644 index 0000000000000..a4841f3314de1 Binary files /dev/null and b/content/Pictures/Pasted image 20240722094739.png differ