- https://github.com/natlas/natlas
- https://github.com/RustScan/RustScan
- https://github.com/activecm/rita
- https://github.com/vesche/scanless
- https://github.com/osquery/osquery
- https://github.com/JPCERTCC/LogonTracer
- https://github.com/PlumHound/PlumHound
- https://github.com/j3ssie/Osmedeus
This file contains hidden or 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
# https://www.reddit.com/r/msp/comments/oolx6j/powershell_disabling_chrome_notification/ | |
if ((Test-Path -LiteralPath "Registry::\HKEY_CURRENT_USER\Software\Policies\Google\Chrome") -ne $true) { | |
New-Item "Registry::\HKEY_CURRENT_USER\Software\Policies\Google\Chrome" -force -ea SilentlyContinue | |
}; | |
New-ItemProperty -LiteralPath 'Registry::\HKEY_CURRENT_USER\Software\Policies\Google\Chrome' -Name 'DefaultNotificationsSetting' -Value '2' -PropertyType DWord |
This file contains hidden or 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
# Removes Webroot SecureAnywhere by force | |
# Run the script once, reboot, then run again | |
# Webroot SecureAnywhere registry keys | |
$RegKeys = @( | |
"HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\WRUNINST", | |
"HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\WRUNINST", | |
"HKLM:\SOFTWARE\WOW6432Node\WRData", | |
"HKLM:\SOFTWARE\WOW6432Node\WRCore", | |
"HKLM:\SOFTWARE\WOW6432Node\WRMIDData", |
This file contains hidden or 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
# ref: https://raw.githubusercontent.com/matbe/PowerShell/master/Other/Get-EdgeEnterpriseMSI.ps1 | |
# ref: https://www.deploymentresearch.com/using-powershell-to-download-edge-chromium-for-business/ | |
<# | |
.SYNOPSIS | |
Get-EdgeEnterpriseMSI | |
.DESCRIPTION | |
Imports all device configurations in a folder to a specified tenant | |
.PARAMETER Channel |
This file contains hidden or 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
# STOP AND DISABLE ALL EXCHANGE SERVICES WITH A SINGLE LINE | |
# ref - http://ccmblogs.co.uk/?p=293 | |
get-service | ?{$_.DisplayName -ilike "Microsoft Exchange*"} | stop-service | |
get-service | ?{$_.DisplayName -ilike "Microsoft Exchange*"} | set-service -StartupType Disabled | |
get-service | ?{$_.DisplayName -ilike "Microsoft Exchange*"} | select status, starttype, name, displayname |
This file contains hidden or 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
# ref - https://www.reddit.com/r/PowerShell/comments/p3a45l/logging_and_global_variables/h8q8mri | |
# ref - https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_redirection?view=powershell-7.1 | |
# ref - https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7.1 | |
# ref - https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_preference_variables?view=powershell-7.1 | |
#region Logging | |
clear-host | |
$logTime = Get-Date -Format "yyyyMMdd_HHmm" | |
$script = ($MyInvocation.MyCommand) | |
if($script.Path){ |
This file contains hidden or 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
# ref - https://write-verbose.com/2018/12/15/audit-google-chrome-extensions/ | |
function Get-ChromeExtension { | |
<# | |
.SYNOPSIS | |
Gets Chrome Extensions from a local or remote computer | |
.DESCRIPTION | |
Gets the name, version and description of the installed extensions | |
Admin rights are required to access other profiles on the local computer or | |
any profiles on a remote computer. |
This file contains hidden or 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
# ref - https://write-verbose.com/2018/12/15/audit-google-chrome-extensions/ | |
# ref - https://stackoverflow.com/questions/43467231/where-is-location-of-microsoft-edge-extension-folder-that-are-installed-from-mic | |
function Get-EdgeExtension { | |
<# | |
.SYNOPSIS | |
Gets Chrome Extensions from a local or remote computer | |
.DESCRIPTION | |
Gets the name, version and description of the installed extensions | |
Admin rights are required to access other profiles on the local computer or |
This file contains hidden or 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
# https://docs.microsoft.com/en-us/troubleshoot/browsers/disable-internet-explorer-windows | |
@rem DISM /Online /Get-Capabilities | |
@rem Dism /online /Get-Features | |
DISM /Online /Get-CapabilityInfo /CapabilityName:Browser.InternetExplorer~~~~0.0.11.0 | |
Dism /online /Get-FeatureInfo /FeatureName:Internet-Explorer-Optional-amd64 | |
dism /online /Remove-Capability /CapabilityName:Browser.InternetExplorer~~~~0.0.11.0 | |
dism /online /Disable-Feature /FeatureName:Internet-Explorer-Optional-amd64 |