Skip to content
View egglessness's full-sized avatar
Block or Report

Block or report egglessness

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Parse UAC consent prompt events with... Parse UAC consent prompt events with information about the called process
    1
    $ScanResultsPath = ".\UacPrompts.csv"
    2
    $DateFormat = "yyyyMMddHHmmss"
    3
    
                  
    4
    $isAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")
    5
    if (-not $isAdmin) {
  2. Helper functions to extract redirect... Helper functions to extract redirect chains and cert SAN
    1
    import re
    2
    import ssl
    3
    import socket
    4
    import requests
    5
    import urllib3