Skip to content

Instantly share code, notes, and snippets.

View Joel-Nickson's full-sized avatar
🐍
shhh.....

Joel Nickson Joel-Nickson

🐍
shhh.....
View GitHub Profile
@Joel-Nickson
Joel-Nickson / README.md
Created March 28, 2021 18:45 — forked from robzwolf/README.md
Set Up Your Environment
  1. If in macOS, install iTerm2.
  2. Install Homebrew.
  3. Install oh-my-zsh.
  4. Install powerlevel10k.
  5. Set alias ls="ls -oahG"
  6. Configure git author
    git config --global user.email "my.email@example.com"
    git config --global user.name "Mr Cool Person"
    
@robzwolf
robzwolf / README.md
Last active June 28, 2021 20:55
Set Up Your Environment
  1. If in macOS, install iTerm2.
  2. Install Homebrew.
  3. Install oh-my-zsh.
  4. Install powerlevel10k.
  5. Set alias ls="ls -oahG"
  6. Configure git author
    git config --global user.email "my.email@example.com"
    git config --global user.name "Mr Cool Person"
    
@infosecn1nja
infosecn1nja / ASR Rules Bypass.vba
Last active March 19, 2026 16:08
ASR rules bypass creating child processes
' ASR rules bypass creating child processes
' https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-exploit-guard/enable-attack-surface-reduction
' https://www.darkoperator.com/blog/2017/11/11/windows-defender-exploit-guard-asr-rules-for-office
' https://www.darkoperator.com/blog/2017/11/6/windows-defender-exploit-guard-asr-vbscriptjs-rule
Sub ASR_blocked()
Dim WSHShell As Object
Set WSHShell = CreateObject("Wscript.Shell")
WSHShell.Run "cmd.exe"
End Sub