Skip to content

Instantly share code, notes, and snippets.

@kimboslice99
kimboslice99 / PHP-IIS_Setup.ps1
Last active December 22, 2022 05:55
A script to set up PHP easily
# Drop this script in your PHP folder with the ini & php-cgi.exe
$path = "$PSScriptRoot\php-cgi.exe"
$ini = "$PSScriptRoot\php.ini"
# Get Version
$Version = "$(./php -r 'echo PHP_VERSION;')"
# Create Handler
New-WebHandler -Name "PHP $Version" -Path "*.php" -Verb "*" -Modules FastCgiModule -ScriptProcessor "$path" -ResourceType "Either"
# FastCGI Settings
Add-WebConfigurationProperty -pspath 'MACHINE/WEBROOT/APPHOST' -filter "system.webServer/fastCgi" -name "." -value @{fullPath="$path";monitorChangesTo="$ini";stderrMode='ReturnGeneric500';maxInstances=8;idleTimeout=600;activityTimeout=604800;requestTimeout=7200;instanceMaxRequests=10000;protocol='NamedPipe';rapidFailsPerMinute=105}
# Environment Variables
@kimboslice99
kimboslice99 / DKIM_Updtae.ps1
Last active December 20, 2022 02:40
dkim cloudflare update script
$email = 'CLOUDFLARE_EMAIL'
$apikey = 'API_KEY'
$ZoneID = 'ZONE_ID'
$type = 'TXT'
$Record = 's1._domainkey.domain.com'
openssl genrsa -out $PSScriptroot\dkim.private.pem 2048
$key = openssl rsa -in $PSScriptroot\dkim.private.pem -pubout | Select -Skip 1 | Select -SkipLast 1 | Join-String
$key | Out-File $PSScriptroot\dkim.public.pem
# Get the record ID
Try { $result = Invoke-RestMethod -Uri "https://api.cloudflare.com/client/v4/zones/$ZoneID/dns_records?type=$type&name=$Record&page=1&per_page=100&order=type&direction=desc&match=all" -Method 'GET' -ContentType "application/json" -Headers @{'Accept'='application/json';'X-Auth-Email'="$email";'X-Auth-Key'="$apikey"} |
@kimboslice99
kimboslice99 / mta-sts_cloudflare.ps1
Last active December 1, 2022 03:07
Update Cloudflare _mta-sts record
$email = 'CLOUDFLARE_EMAIL'
$apikey = 'CLOUDLFARE_APIKEY'
$ZoneID = 'ZONEID'
$type = 'TXT'
$Record = '_mta-sts.domain.com'
$timestamp = Get-Date -Format "yyyyMMddThhmmss"
Try { $result = Invoke-RestMethod -Uri "https://api.cloudflare.com/client/v4/zones/$ZoneID/dns_records?type=$type&name=$Record&page=1&per_page=100&order=type&direction=desc&match=all" -Method 'GET' -ContentType "application/json" -Headers @{'Accept'='application/json';'X-Auth-Email'="$email";'X-Auth-Key'="$apikey"} |
% {$_.result} }
Catch {Write-Host "Cannot contact CF for record info"
@kimboslice99
kimboslice99 / OpenVPN_DBAuth.php
Created November 8, 2022 04:11
Authenticate OpenVPN against a DB, with Bcrypt hashed passwords
<?php
if (!isset($argv[1]))
{
print 'not ok';
exit(1);
}
$data = file($argv[1], FILE_IGNORE_NEW_LINES);
// Add your [address], [dbuser], [pass], [database]
$conn = new mysqli("127.0.0.1", "root", "password", "openvpn");
@kimboslice99
kimboslice99 / OpenVPN_DBAuth.ps1
Created November 7, 2022 18:11
Authenticate OpenVPN against a DB
# Script requires ODBC Connector MySql/MariaDB
$data = Get-Content "$args"
$username = $data[0]
$password = $data[1]
#connection - pwsh.exe Get-OdbcDriver
$driver = "MariaDB ODBC 3.1 Driver"
$Server = "127.0.0.1"
$DBName = "openvpn"
$User = "openvpn"
@kimboslice99
kimboslice99 / Get-HashEx.psm1
Last active September 14, 2022 01:39 — forked from loopyd/Get-HashEx.psm1
[PowerShell 7] Get-HashEx - All-in-one file and folder hashing module for Windows PowerShell 7.0+
<#
.Synopsis
Hash a file or a folder via the lifestrea- er I mean, bytestream. Then return the results.
.Description
I improved Get-FileHash just a bit. Hash a file or a folder via the lifestrea- er I mean,
bytestream. Then returns the results. A lot of options, and what ever supported, hardware
accelerated CryptoStream HashAlgorithm provider you want. Also with real time progress,
which you can turn off if you want.