- How to Build a Successful Information Security Career (Daniel Miessler)
- The First Steps to a Career in Information Security (Errata Security - Marisa Fagan)
- Hiring your first Security Professional (Peerlyst - Dawid Balut)
- How to Start a Career in Cyber security
- How to Get Into Information Security (ISC^2)
- https://www.isc2.org/how-to-get-into-information-security.aspx
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
<# | |
@gwblok (GARYTOWN.COM) 2019.12.26 | |
Used to Grab Windows 10 Release Info and pull into PowerShell | |
Pulling Tables in was stolen from: https://www.leeholmes.com/blog/2015/01/05/extracting-tables-from-powershells-invoke-webrequest/ | |
#> | |
$URL = "https://winreleaseinfoprod.blob.core.windows.net/winreleaseinfoprod/en-US.html" | |
[Microsoft.PowerShell.Commands.HtmlWebResponseObject]$WinReleaseWeb = Invoke-WebRequest -Uri $URL |
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
param( | |
[string]$tenantId = "", | |
[string]$subscriptionId = "", | |
[string]$resourceGroupName = "", | |
[string]$apimServiceName = "", | |
[string]$clientId = "", | |
[string]$clientSecret = "", | |
[string]$apiName = "", | |
[string]$backendUrl = "", | |
[bool] $apiContainsMultipleVersions = $true |
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
# You Should be able to Copy and Paste this into a powershell terminal and it should just work. | |
# To end the loop you have to kill the powershell terminal. ctrl-c wont work :/ | |
# Http Server | |
$http = [System.Net.HttpListener]::new() | |
# Hostname and port to listen on | |
$http.Prefixes.Add("http://localhost:8080/") |
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
# Uses PowerShell in an Azure function to create an Excel file without Excel being installed | |
# Add your email | |
# paste in a browser | |
# wait for the email to show up | |
https://getstockquoteinexcel.azurewebsites.net/api/RequestExcelStockInfo?symbol=msft,xom,ge,ibm,jpm,fb&email="<<your email address>>" |
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
ffmpeg -f concat -safe 0 -i <(for f in ./*.MP4; do echo "file '$PWD/$f'"; done) -c copy output.MP4 |
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
$source = @' | |
using System; | |
using System.Security.Principal; | |
using System.Runtime.InteropServices; | |
namespace ECGCAT | |
{ | |
public class Kernel32 | |
{ | |
[DllImport("Kernel32.dll", SetLastError = true)] |
FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.
- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
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
$source = @' | |
using System; | |
using System.Security.Principal; | |
using System.Runtime.InteropServices; | |
namespace ECGCAT | |
{ | |
public class Kernel32 | |
{ | |
[DllImport("Kernel32.dll", SetLastError = true)] |
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
## Register existing Windows 7 x64 Enterprise Evaluation VHD(X) media | |
$WIN7_x64_Enterprise_EN_Eval = @{ | |
Id = 'WIN7_x64_Enterprise_EN_Eval'; | |
Filename = 'WIN7_x64_Enterprise_EN_Eval_022016.vhdx'; | |
Description = 'Windows 7 Enterprise 64bit English Evaluation Patched 02/16'; | |
Architecture = 'x64'; | |
MediaType = 'VHD'; | |
Uri = '\\10.100.50.1\Public\ParentDisks\Win7_x64_Enterprise_EN_Eval_022016.vhdx'; | |
CustomData = @{ | |
PartitionStyle = 'MBR'; ## This creates a Gen1 VM |
NewerOlder