This file contains 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://social.technet.microsoft.com/wiki/contents/articles/1073.robocopy-and-a-few-examples.aspx | |
#http://www.luisrocha.net/2008/12/robocopy-error-error-5-0x00000005.html | |
# Robocopy switches used: | |
#/MIR - mirror directory structure (including empty) | |
#/COPY:DT - excludes copying permissions | |
#/XA:H - excludes hidden files | |
#/W:5 - wait 5 seconds on a failure | |
#/XJD - exclude junction points | |
#/XD - exclude directory |
This file contains 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 apt-get update && sudo apt-get upgrade -y | |
# Dependencies | |
sudo apt-get install -y \ | |
git autoconf automake libtool make libreadline-dev texinfo \ | |
pkg-config libpam0g-dev libjson-c-dev bison flex python3-pytest \ | |
libc-ares-dev python3-dev libsystemd-dev python-ipaddress python3-sphinx \ | |
install-info build-essential libsystemd-dev libsnmp-dev perl libcap-dev \ |
This file contains 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 Clear-RecentItems { | |
$Namespace = "shell:::{679f85cb-0220-4080-b29b-5540cc05aab6}" | |
$QuickAccess = New-Object -ComObject shell.application | |
$RecentFiles = $QuickAccess.Namespace($Namespace).Items() | |
$RecentFiles | % {$_.InvokeVerb("remove")} | |
Remove-Item -Force "${env:USERPROFILE}\AppData\Roaming\Microsoft\Windows\Recent\*.lnk" | |
New-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "Start_TrackDocs" -Value 0 -PropertyType DWORD | |
Remove-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "Start_TrackDocs" |
This file contains 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
#To-do | |
# Create security group for private subnet and allow ICMPv4, ICMPv6 and SSH from public subnet. | |
$SubnetIncrement = 1 | |
$SubnetIPv4CIDR = "172.31.0.0/16" | |
$VPC = aws ec2 create-vpc --cidr-block $SubnetIPv4CIDR --amazon-provided-ipv6-cidr-block --region us-west-2 | ConvertFrom-Json | Select-Object -ExpandProperty Vpc | |
aws ec2 create-tags --resources $VPC.VpcId --tags Key=Name,Value=TFC-Study |
This file contains 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
#Check for EC2 instance type availability among all public regions | |
#Prerequisites - the most current AWS CLI installation - https://aws.amazon.com/cli/ | |
[CmdletBinding()] | |
param( | |
[Parameter(HelpMessage="Specify the API name of the EC2 instance type to search for. Example: t3a.small")] | |
[ValidateNotNullOrEmpty()]$InstanceType | |
) | |
$RegionsJson = aws ec2 describe-regions |
This file contains 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://social.technet.microsoft.com/wiki/contents/articles/1073.robocopy-and-a-few-examples.aspx | |
#http://www.luisrocha.net/2008/12/robocopy-error-error-5-0x00000005.html | |
#Robocopy switches used: | |
#/MIR - mirror directory structure (including empty) | |
#/COPY:DT - excludes copying permissions | |
#/XA:H - excludes hidden files | |
#/W:5 - wait 5 seconds on a failure | |
#/XJD - exclude junction points |
This file contains 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 |
This file contains 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 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 |
NewerOlder