See my other guides for SSL certificates on Pi-hole v6:
Pi-hole v6 introduces changes to its web server:
- Embedded Web Server – Pi-hole no longer relies on
lighttpd.
See my other guides for SSL certificates on Pi-hole v6:
Pi-hole v6 introduces changes to its web server:
lighttpd.| # configure git credentials manager to work with GPG | |
| # usefull for sessions without GUI | |
| # https://github.com/GitCredentialManager/git-credential-manager | |
| # https://github.com/GitCredentialManager/git-credential-manager/blob/main/docs/credstores.md#gpgpass-compatible-files | |
| # install pass | |
| sudo apt install pass | |
| # generate gpg key pair |
Moved to https://virtualize.link/secure/
Classic ASP may be almost dead but unfortunately not quite. Thankfully we can at least make it a bit more modern. The steps below go through the steps required to setup gMSA authentication on a Classic ASP docker container. I will use an example of a similar issue I was trying to solve which required Integrated Authentication to be used (in place of plaintext credentials)
New-ADGroup -Name "Service Provider Group" -SamAccountName "ServiceHosts" -GroupScope DomainLocal
Add-ADGroupMember -Identity "ServiceHosts" -Members "SERVER01$"
New-ADServiceAccount -Name "app" -DnsHostName "app.domain.local" -ServicePrincipalNames "host/ServiceHosts" - PrincipalsAllowedToRetrieveManagedPassword "ServiceHosts"
| badges: | |
| - entity: person.alex | |
| style: | |
| ha-state-label-badge: | |
| $: | |
| ha-label-badge: | |
| $: | | |
| .label-badge .label span{ | |
| color: #000 !important; | |
| } |
This code is usable only if you are on Home Assistant 0.114 or older
For Home Assistant 0.115 and newer please go to: https://github.com/AdamNaj/ZWaveGraphHA
| #!/bin/bash | |
| # Does the equivalent of sysprep for linux boxes to prepare them for cloning. | |
| # SPDX-License-Identifier: GPL-3.0-or-later | |
| # For issues or updated versions of this script, browse to the following URL: | |
| # https://gist.github.com/AfroThundr3007730/ff5229c5b1f9a018091b14ceac95aa55 | |
| set -euo pipefail | |
| shopt -s extdebug nullglob |
| #Backup previous list | |
| rm -f BLACKLIST_OLD.txt | |
| mv BLACKLIST.txt BLACKLIST_OLD.txt | |
| touch BLACKLIST.txt | |
| #Download the file from PGL.YOYO | |
| curl -O http://pgl.yoyo.org/as/iplist.php | |
| #Download the file from emerging threats | |
| curl -O http://rules.emergingthreats.net/fwrules/emerging-Block-IPs.txt | |
| #Download the first file from SpamHaus | |
| curl -O http://www.spamhaus.org/drop/drop.txt |
| #!powershell | |
| # | |
| # | |
| # Author: Ian Cornett | |
| # Version: 0.1 | |
| # Version History: | |
| # | |
| # Purpose: Queue TFS Build from Ansible and return workable JSON dictionary for polling | |
| # | |
| # |