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
Function Test-LDAPS { | |
[CmdletBinding()] | |
param ( | |
[Parameter(Mandatory=$True)] | |
[string]$ADServer | |
) | |
$LDAPS = "LDAP://" + $ADServer + ":636" | |
try { | |
$global:Connection = [ADSI]($LDAPS) | |
} |
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
[CmdletBinding()] | |
param ( | |
[Parameter(HelpMessage="Specify the username")] | |
[string]$Username, | |
[Parameter(HelpMessage="Specify the profile root directory")] | |
[string]$ProfileRoot, | |
[Parameter(HelpMessage="Specify the full path to log output to")] | |
[string]$LogPath = "C:\Automate\Set-TSProfilePath-log.txt", |
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
[CmdletBinding()] | |
param( | |
[Parameter(HelpMessage="Specify the path to the CSV file")] | |
[string]$CSVPath, | |
[Parameter(HelpMessage="Specify one of OCHIN's supported drivers")] | |
[ValidateSet("HP LaserJet 4100 Series PCL6", "HP Universal Printing PCL 5 (v5.7.0)", "Kyocera TASKalfa 7551ci", "Sharp MX-3500N", "Xerox Global Print Driver PCL")]$Driver | |
) | |
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
<!DOCTYPE html> | |
<html lang=en> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>AWS Test</title> | |
<meta name="description" content=""> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<style> | |
body {background-color: AliceBlue;} |
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
// Paste these into the Developer Tools Console | |
// Calculate DNS lookup time in milliseconds | |
var pageNavArr = performance.getEntriesByType("navigation"); | |
var pageResArr = performance.getEntriesByType("resource"); | |
var pageArr = pageNavArr.concat(pageResArr); | |
pageArr.forEach(function(element) { | |
var dnsTime = element.domainLookupEnd - element.domainLookupStart; | |
if (dnsTime > 0) { // Don't display cached DNS entries | |
console.log(element.name); |
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
Function Get-SubdirectoryInfo { | |
[CmdletBinding()] | |
param( | |
[Parameter(HelpMessage="Specify the top level directory to search")] | |
[string]$TopLevelDir | |
) | |
#Find subdirectories with files | |
$Items = Get-ChildItem $TopLevelDir | Where-Object Attributes -ne Directory | Select-Object DirectoryName,Name,Length |
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
.\zip2john.exe "C:\Users\derp\Downloads\Tester.zip" | Out-File C:\Users\derp\Downloads\Tester.hash -Encoding utf8 | |
& type C:\Users\derp\Downloads\Tester.hash | |
.\john.exe C:\Users\derp\Downloads\Tester.hash | |
Using default input encoding: UTF-8 | |
Loaded 1 password hash (PKZIP [32/64]) | |
Will run 8 OpenMP threads | |
Proceeding with single, rules:Single |
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
fsutil.exe file createNew file.txt 2645789412 |
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
#!/bin/bash | |
sudo yum install httpd | |
usermod -a -G apache ec2-user | |
sudo chown -R ec2-user:apache /var/www | |
sudo systemctl restart httpd.service | |
sudo systemctl enable httpd.service | |
public_ipv4=$(curl -s "http://169.254.169.254/latest/meta-data/public-ipv4") | |
sudo echo $public_ipv4 > /var/www/html/public-ipv4.txt | |
cd /var/www/html | |
curl -O https://gist.githubusercontent.com/tylerapplebaum/98a940c312724ae6a0838d43afc2a592/raw/85523ac76edf2c68ee7431839784dff4313b723a/index.html |