Author's posts
Oct 22 2014
F You Captcha
Aug 06 2014
Configuring AnyConnect SSL VPN Client Connections
Overview ASA: 8.3+ (Written/Tested on 9.0) Authentication: Local (Local ASA User Database) Type: Split-tunnel OR Non split-tunnel The below configurations will work with 8.3+, but was written and tested with 9.0. When setting up a Anyconnect VPN tunnel, you can push all traffic from the client over the VPN (Tunnel all) or you can use …
Aug 05 2014
DirMirror.vbs
Option Explicit ‘========================================================================= ‘ DirMirror.vbs ‘ VERSION: 1.0 ‘ AUTHOR: Brian Steinmeyer ‘ EMAIL: [email protected] ‘ WEB: https://sigkillit.com ‘ DATE: 9/26/2013 ‘ REQUIREMENTS: ‘ – robocopy.exe (Built in to Server2008+, Windows 7+) ‘ – blat.exe, blat.dll. blat.lib in the same directory as the script (http://www.blat.net) ‘ – Blat profile installed to email results ‘ – …
Jul 28 2014
How to Configure a Cisco ASA Site-to-Site IPSec VPN
This article will explain how to configure a Site-to-Site IPSec VPN using Cisco ASA 55XX’s using IKEV1. My example below shows how to configure VPN’s between 3 sites but can be modified for the following scenarios without much explanation: site-to-site VPN between 2 sites (Just remove SiteC… duh!) site-to-site to 3+ sites (just follow the …
May 21 2014
Convert a WLC LDPE Image to Non-LDPE
If you ever purchase a used Cisco Wireless LAN Controller or receive one on RMA, you may run into an issue when you attempt to upgrade the image and receive the following error: ERROR: Incompatible SW image.ERROR: Please install the Data Payload Encryption licensed image This issue occurs because the Controller has an LDPE image …
Apr 08 2014
Matching Credit Card Numbers
Overview Using regular expressions, you can easily match a credit card number. You may wish to validate legit CC numbers, block financial information in emails, or audit security by finding financial information in documents. There is no perfect algorithm or regex for detecting potential CCN’s, and there will always be false positives, etc. Although regular …
Apr 04 2014
Block Outbound Email for Specific Users
Overview There are a few situations where you may need to restrict certain users from sending email to external users. For example, you may have part time employees that only need to send email to internal users OR you might have an employee who’s about to get terminated and don’t want them emailing clients. Fortunately, …
Apr 04 2014
Delivery Report in Outlook or Outlook Web App
Overview When using Outlook or Outlook Web App (OWA) in an Office 365 or Exchange environment, you can track the message from the client side. Both Outlook and OWA allow you to view a delivery report in order to confirm a message was delivered when the recipient claims they have not received it or if …
Apr 04 2014
365Licenses.ps1
#========================================================================= # 365Licenses.ps1 # VERSION: 1.0 # AUTHOR: Brian Steinmeyer # EMAIL: [email protected] # WEB: https://sigkillit.com # DATE: 4/4/20114 # REQUIREMENTS: # 1) Microsoft Online Services Sign-In Assistant for IT Professionals # -(http://www.microsoft.com/en-gb/download/details.aspx?id=28177) # 2) Windows Azure Active Directory Module for Windows PowerShell # -(http://technet.microsoft.com/en-us/library/jj151815.aspx#bkmk_installmodule) # COMMENTS: This script is intended to retrieve Office 365 …