Skip to content

Instantly share code, notes, and snippets.

View Nels2's full-sized avatar
💸
Coding away..

Nelson Orellana Nels2

💸
Coding away..
View GitHub Profile
# DCOM_10036_Solver.ps1
# < SYPNOSIS >
# This script was created to address the vulnerability described in CVE-2021-26414.
# Created by: Nelson Orellana
# Created on: Oct 24th, 2022
# Note:
# Important You must restart your device after setting this registry key for it to take effect. -- The script will auto restart after it is finished.
@Nels2
Nels2 / RemoveWebroot.ps1
Last active October 13, 2022 20:52 — forked from mark05e/RemoveWebroot.ps1
PowerShell script to forcefully remove Webroot SecureAnywhere. It is recommended to run the script twice, with a reboot after the first run.
# Removes Webroot SecureAnywhere by force
# Run the script once, reboot, then run again
# below is to make sure script is being ran as admin so it works properly.
If (-NOT ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator))
{
# Relaunch as an elevated process:
Start-Process powershell.exe "-File",('"{0}"' -f $MyInvocation.MyCommand.Path) -Verb RunAs
exit
}
# Webroot SecureAnywhere registry keys
@Nels2
Nels2 / dnsbl.php
Last active December 3, 2020 22:59 — forked from tbreuss/dnsbl.php
IP Blacklist Check Script - This is a simple PHP script to lookup for blacklisted IP against multiple DNSBLs at once.
<?php // Simple PHP script to lookup for blacklisted IP against multiple DNSBLs at once. ?>
<html>
<head>
<title>IP Blacklist Check Script</title>
</head>
<style>
body {
background-color: #480535;
}
h2 {