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
# A stupid TCP Listener | |
# telnet or netcat to the port | |
# type something and hit enter | |
# the typed bytes are echoed by this script | |
function listen-port ($port) { | |
$endpoint = new-object System.Net.IPEndPoint ([system.net.ipaddress]::any, $port) | |
$listener = new-object System.Net.Sockets.TcpListener $endpoint | |
$listener.start() |
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
######################################################### | |
# | |
# AutoPublish.ps1 | |
# 2017 Gordon Young [email protected] | |
# | |
# This script copies local X.509v2 CRL files from A CA's local disk | |
# to remote UNC Paths only if local file is newer than remote | |
# | |
# Note: Outcome of this script is writen to local windows event log | |
# Application Event Log, "CRL Publish Script" event ID 5000 |
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
//Java using the Javax JSP stuff: | |
//************************************************ | |
package org.drg00n.util.dtmf; | |
import javax.sound.sampled.AudioFormat; | |
import javax.sound.sampled.AudioSystem; | |
import javax.sound.sampled.SourceDataLine; | |
/*Implement a DTMF dialer with javax’s DSP |
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
// Gordon Young 2017 [email protected] | |
// This script : | |
// 1. Reads the given MSFT Windows registry subkey value reg_multi_sz data type | |
// 2. Compares it to the provided expected setting | |
// if the configured setting is compliant the script returns 'pass', | |
// if the setting is non-compliant the script returns 'fail' | |
//The registry path we want to test | |
var hklm = 0x80000002, KeyName = "System\\CurrentControlSet\\Services\\LanManServer\\Parameters", ValueName = "NullSessionPipes"; |
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
# Copyleft 2017, Gordon Young | |
# A script to harden MSFT Windows SCHANNEL's TLS provider | |
# Version 1.0 | |
# install a an ECDSA cert with a resonable cure and turn off the weakc protocols crypto & cipher suites. | |
Write-Host 'Configuring IIS with SSL/TLS Deployment Best Practices...' | |
Write-Host '--------------------------------------------------------------------------------' | |
# Disable Multi-Protocol Unified Hello |
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
<!-- PostGreSQL DB Config with plaintext password --> | |
<!-- <Resource | |
auth="Container" | |
driverClassName="org.postgresql.Driver" | |
maxIdle="10" | |
maxTotal="20" | |
maxWaitMillis="-1" | |
name="jdbc/postgres" | |
password="password" | |
type="javax.sql.DataSource" |
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
# Harden Windows TLS | |
param([bool]$allowReboot = $false) | |
Function UpdateRegistryPath($path){ | |
if(test-path $path){ | |
return $false | |
} | |
write-Host "Creating registry path: $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
<?xml version="1.0" encoding="UTF-8"?> | |
<jmeterTestPlan version="1.2" properties="3.1" jmeter="3.1 r1770033"> | |
<hashTree> | |
<TestPlan guiclass="TestPlanGui" testclass="TestPlan" testname="ERPM_API_Key_Thread_Load_Test" enabled="true"> | |
<stringProp name="TestPlan.comments"></stringProp> | |
<boolProp name="TestPlan.functional_mode">false</boolProp> | |
<boolProp name="TestPlan.serialize_threadgroups">false</boolProp> | |
<elementProp name="TestPlan.user_defined_variables" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> | |
<collectionProp name="Arguments.arguments"/> | |
</elementProp> |
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
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
# Gordon Young 2016 Checkout_Password.py | |
# | |
# This script demonstrates: | |
# 1. Authenticating to the Lieberman ERPM PAM / EPV API | |
# 3. Requesting & returning a password key by account & target ID | |
# | |
import ssl |