slmgr /ipk your_license_key
Replace your_license_key
with following volumn license keys according to Windows Edition:
This short document explain how to resolve the issues arising when trying to update an old (Gen7) HP(E) server to the most recent iLO 3 (HPE Integrated Lights-Out) version, which solves a great number of security and usability issues.
security.tls.version.min
(the minimum acceptable version of the TLS protocol) to 0 in order to be able to negociate down to TLS 1.0 (even if iLO 3 can do 1.1). Keep in mind your browser is now (even more) vulnerable to a host of attacks, do not connect to any potentially hostile host with it.--- /root/.acme.sh/deploy/unifi.bkp.sh 2024-07-10 13:29:01.699918327 +0200 | |
+++ /root/.acme.sh/deploy/unifi.sh 2024-07-10 13:23:10.717345032 +0200 | |
@@ -73,88 +73,6 @@ | |
# Default reload commands accumulated as we auto-detect environments: | |
_reload_cmd="" | |
- # Unifi Controller environment (self hosted or any Cloud Key) -- | |
- # auto-detect by file /usr/lib/unifi/data/keystore: | |
- _unifi_keystore="${DEPLOY_UNIFI_KEYSTORE:-/usr/lib/unifi/data/keystore}" | |
- if [ -f "$_unifi_keystore" ]; then |
#!/bin/bash | |
# Here is a script to deploy cert on a Unifi Controller or Cloud Key device. | |
# It supports: | |
# - self-hosted Unifi Controller | |
# - Unifi Cloud Key (Gen1/2/2+) | |
# - Unifi Cloud Key running UnifiOS (v2.0.0+, Gen2/2+ only) | |
# Please report bugs to https://github.com/acmesh-official/acme.sh/issues/3359 | |
#returns 0 means success, otherwise error. |
name | ring | quadrant | isNew | description | |
---|---|---|---|---|---|
Composer | adopt | tools | TRUE | Although the idea of dependency management ... | |
Canary builds | trial | techniques | FALSE | Many projects have external code dependencies ... | |
Apache Kylin | assess | platforms | TRUE | Apache Kylin is an open source analytics solution ... | |
JSF | hold | languages & frameworks | FALSE | We continue to see teams run into trouble using JSF ... | |
Yet Another one | adopt | tools | TRUE | Yet another description... | |
And another one | trial | tools | FALSE | A public one... |
There is an increasing count of applications which use Authy for two-factor authentication. However many users who aren't using Authy, have their own authenticator setup up already and do not wish to use two applications for generating passwords.
Since I use 1Password for all of my password storing/generating needs, I was looking for a solution to use Authy passwords on that. I couldn't find any completely working solutions, however I stumbled upon a gist by Brian Hartvigsen. His post had a neat code with it to generate QR codes for you to use on your favorite authenticator.
His method is to extract the secret keys using Authy's Google Chrome app via Developer Tools. If this was not possible, I guess people would be reverse engineering the Android app or something like that. But when I tried that code, nothing appeared on the screen. My guess is that Brian used the
#!/bin/sh | |
apt update -y && apt upgrade -y | |
apt install -y git automake make gobjc++ libtool pkg-config libmspack-dev libglib2.0-dev libpam0g-dev libssl-dev libxml2-dev libxmlsec1-dev libx11-dev libxext-dev libxinerama-dev libxi-dev libxrender-dev libxrandr-dev libxtst-dev libgdk-pixbuf2.0-dev libgtk-3-dev libgtkmm-3.0-dev | |
git clone https://github.com/vmware/open-vm-tools.git | |
cd open-vm-tools/open-vm-tools/ | |
autoreconf -i | |
./configure --disable-dependency-tracking | |
make | |
make install | |
ldconfig |
#!/bin/zsh | |
# Needs https://github.com/lukas2511/letsencrypt.sh in dns-01 mode | |
/opt/letsencrypt/ilo/letsencrypt.sh -c -s /opt/letsencrypt/ilo/ilo.csr -k /opt/letsencrypt/ilo/hook.sh -t dns-01 > /opt/letsencrypt/ilo/ilo.crt | |
cert=$(cat /opt/letsencrypt/ilo/ilo.crt) | |
curl --cacert /opt/letsencrypt/intermediate.pem -H "Accept: application/json" -H "Content-Type: application/json" -H "Authorization: Basic [FILL_IN_HERE]" -X POST -d "{\"Action\": \"ImportCertificate\", \"Certificate\": \"$cert\"}" https://ilo.home.vaucher.org/rest/v1/Managers/1/SecurityService/HttpsCert |
version: '2' | |
services: | |
mysql: | |
container_name: bookstack-mysql | |
restart: unless-stopped | |
image: mysql:5.7.12 | |
environment: | |
- MYSQL_ROOT_PASSWORD=YourRootPassw0rd! | |
- MYSQL_DATABASE=bookstack |
version: '2' | |
services: | |
unifi-controller: | |
container_name: unifi-controller | |
restart: unless-stopped | |
image: goofball222/unifi:sc | |
ports: | |
- "3478:3478/udp" | |
- "8880:8880" |