All public logs

Jump to navigation Jump to search

Combined display of all available logs of UVOO Tech Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)
  • 19:15, 1 October 2024 Busk talk contribs created page Github Actions Repo Security Options (Created page with "``` name: Restrict Pull Requests on: pull_request: types: [opened, synchronize] jobs: restrict-pr: runs-on: ubuntu-latest steps: - name: Check PR Autho...")
  • 23:53, 12 September 2024 Busk talk contribs created page Active Directory Join (Created page with "realm join --user=administrator --server=dc1.example.com example.com")
  • 17:45, 23 August 2024 Busk talk contribs created page Wsl2 new (Created page with "Install Ubuntu 22.04 instance ``` $ErrorActionPreference = "Stop" $distributionName = "example1" $distrib = "ubuntu-22.04" $installLocation = "C:\WSL\$distributionName" $ta...")
  • 19:51, 14 August 2024 Busk talk contribs created page Sentinel (Created page with "# Learning - https://learn.microsoft.com/en-us/training/paths/sc-200-configure-azure-sentinel-environment/")
  • 21:30, 12 August 2024 Busk talk contribs created page Inactive AD accounts (Created page with "# Get inactive accounts ``` # Import the Active Directory module Import-Module ActiveDirectory # Define the OU path $ouPath = "OU=Example Foo Accounts,DC=example,DC=com" # D...")
  • 16:46, 12 August 2024 Busk talk contribs created page Wsl2 vpn fix route (Created page with "``` Get-NetIPInterface -InterfaceAlias "vEthernet (WSL)" | Set-NetIPInterface -InterfaceMetric 1 Get-NetAdapter | Where-Object { $_.InterfaceDescription -like "PANGP*" } | Set...")
  • 15:24, 11 August 2024 Busk talk contribs created page Flashrom (Created page with "Flashrom Bios Update Linux ``` Updating the BIOS using flashrom is an advanced process and should be done with caution, as it involves directly flashing the firmware. flashrom...")
  • 09:32, 27 July 2024 Busk talk contribs created page Wireguard point-to-point (Created page with "``` sudo apt update sudo apt install wireguard sudo yum install epel-release sudo yum install wireguard-tools wg genkey | tee /etc/wireguard/privatekey | wg pubkey > /etc/wi...")
  • 09:19, 27 July 2024 Busk talk contribs created page Linux hardware (Created page with "sudo apt-get install smartmontools sudo smartctl -i /dev/sda")
  • 12:38, 26 July 2024 Busk talk contribs created page Juju k8s (Created page with "https://github.com/zecke/Kubernetes/blob/master/docs%2Fgetting-started-guides%2Fjuju.md")
  • 11:55, 26 July 2024 Busk talk contribs created page Maas k8s (Created page with "https://github.com/antongisli/maas-baremetal-k8s-tutorial")
  • 21:39, 25 July 2024 Busk talk contribs created page Zabbix ldaps (Created page with "https://bgmot.com/zabbix_secure_ldap")
  • 16:20, 25 July 2024 Busk talk contribs created page Tshark domains (Created page with "``` sudo pkill tshark # rm nohup.out sleep 5 nohup sudo tshark -Q -l -i any -f 'dst port ( 443 ) ' -Y 'tls.handshake.extension.type == "server_name" || http.host' -T fields -...")
  • 05:52, 21 July 2024 Busk talk contribs created page Zimbra 10.0.6 fixes (Created page with "/opt/zimbra/jetty_base/etc/jetty.xml.in ``` <Call id="httpsConnector" name="addConnector"> <Set name="port">%%zimbraMailSSLPort%%</Set> ``` ``` zmprov ms `zmhostname` zimbra...")
  • 17:55, 20 July 2024 Busk talk contribs created page Email software (Created page with "https://github.com/Mindbaz/awesome-opensource-email")
  • 03:17, 12 July 2024 Busk talk contribs created page AD Scripts (Created page with "# Remove Sessions by User ``` # Define the username to log out and domain (adjust these values accordingly) $userToLogoff = "username" $domain = "DOMAIN" # Ensure the Active...")
  • 13:28, 8 July 2024 Busk talk contribs created page Sysctl.conf large instance (Created page with "sysctl.conf ``` fs.file-max = 2097152 ``` ``` # Increase the maximum number of socket connections net.core.somaxconn = 1024 # Increase the size of the receive queue net.core...")
  • 18:01, 7 July 2024 Busk talk contribs created page Pushgateway go get & push (Created page with "``` ./g -blackbox-url="http://blackbox.example.com:9115/probe?target=https://google.com&module=http_2xx" -pushgateway-url="https://pushgateway.example.com/metrics/job/pushdemo...")
  • 17:55, 2 July 2024 Busk talk contribs created page Setfacl (Created page with "``` mkdir test setfacl -m 'u:EXAMPLE\myuser:rwx' ./test/ setfacl -x 'u:EXAMPLE\myuser' ./test/ ```")
  • 22:11, 26 June 2024 Busk talk contribs created page Kusto queries App Service & AGW (Created page with "Go to Application Insights for Service and logs ``` requests | where url contains 'https://my-app-service.azurewebsites.net' | where name contains 'health' | summarize count(...")
  • 16:38, 25 June 2024 Busk talk contribs created page Samba dos attributes (Created page with "https://www.truenas.com/community/threads/disabling-dos-attributes-to-improve-samba-browsing-performance.24906/")
  • 16:37, 24 June 2024 Busk talk contribs created page Hacker tools (Created page with "Misc Hacker Tools - BURP - https://github.com/SNGWN/Burp-Suite-Pro - sqlmap - https://github.com/PortSwigger - OWASP")
  • 00:58, 23 June 2024 Busk talk contribs created page Thanos docker-compose (Created page with "``` Running multiple Prometheus servers with Thanos and MinIO for object storage. This setup assumes you want to run two Prometheus instances, one MinIO instance for storage,...")
  • 03:49, 14 June 2024 Busk talk contribs created page Mtr exporter (Created page with "``` package main import ( "encoding/json" "log" "net/http" "os/exec" "github.com/gorilla/mux" ) type MTRResult struct { // Define the structure to match MTR JSON outp...")
  • 18:31, 13 June 2024 Busk talk contribs created page Blackbox exporter icmp (Created page with "Dockerfile ``` # Use a lightweight base image FROM alpine:latest # Install necessary packages RUN apk add --no-cache \ libcap \ curl # Download and install Blackbox...")
  • 18:09, 13 June 2024 Busk talk contribs created page Thanos (Created page with "https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/thanos.md")
  • 16:11, 13 June 2024 Busk talk contribs created page Log Analytics Workspace (Created page with "# https://learn.microsoft.com/en-us/azure/azure-monitor/logs/search-jobs?tabs=portal-1%2Cportal-2 ``` if you have updated your log analytics workspace to utilize archive log r...")
  • 00:32, 12 June 2024 Busk talk contribs created page Postfix docker relay (Created page with "# Run docker container for relay using uvoo/email-relay ``` docker rm postfix -f || true mkdir -p data cd data mkdir -p keys logs spool_postfix sudo chmod 0755 keys logs spool...")
  • 23:30, 3 June 2024 Busk talk contribs created page Aks bash (Created page with "``` #!/bin/bash # Variables RESOURCE_GROUP="myResourceGroup" AKS_CLUSTER_NAME="myAKSCluster" LOCATION="eastus" VNET_NAME="myVNet" SUBNET_NAME="mySubnet" # Create resource gr...")
  • 13:47, 27 May 2024 Busk talk contribs created page RLS example (Created page with "# Simple Example ``` CREATE USER alice PASSWORD 'password'; CREATE USER bob PASSWORD 'password'; CREATE USER carol PASSWORD 'password'; GRANT group_admin TO alice; GRANT group...")
  • 20:20, 26 May 2024 Busk talk contribs created page Zimbra errors (Created page with "# Error ``` Starting ldap...Done. Unable to start TLS: SSL connect attempt failed error:1416F086:SSL routines:tls_process_server_certificate:certificate verify failed w...")
  • 04:37, 22 May 2024 Busk talk contribs created page Az vm create (Created page with "# az cli create vm set -a RG=foo VM=foo NIC=$VM-nic1 VNET=foo SUBNET=foo ``` az network nic create --resource-group $RG--name $NIC --vnet-name $VNET--subnet $SUBNET az vm c...")
  • 02:36, 22 May 2024 Busk talk contribs created page Vault bbolt (Created page with "https://developer.hashicorp.com/vault/tutorials/monitoring/inspect-data-boltdb")
  • 01:19, 22 May 2024 Busk talk contribs created page Vault postgresql (Created page with "https://gist.github.com/talalUcef/5a800d2dc4427eb4df1a89c57a315c66")
  • 14:16, 21 May 2024 Busk talk contribs moved page Openssl ca 2 to Openssl ca using config file without leaving a redirect
  • 14:15, 21 May 2024 Busk talk contribs created page Openssl ca 2 (Created page with "# Openssl ca with config file ## .env.secret ``` set -a ROOTCA1_PWD=ChangeMe ICA1a_PWD=ChangeThis ``` ## source ``` . .env.secret ``` ## init.sh.tpl ``` #!/bin/bash set -eu...")
  • 23:45, 19 May 2024 Busk talk contribs created page Vault helm install (Created page with "https://mycloudjourney.medium.com/vault-installation-to-minikube-via-helm-with-integrated-storage-15c9d1a907e6")
  • 20:09, 11 May 2024 Busk talk contribs created page Jwt decode (Created page with "``` decode_jwt() { local jwt="$1" local part for part in 1 2; do local base64="$(echo "$jwt" | cut -d. -f$part | tr '_-' '+/')" local len=${#base6...")
  • 18:48, 7 May 2024 Busk talk contribs created page Pandas dns csv (Created page with "``` #!/usr/bin/env python3 import csv import sys import dns.resolver import numpy as np import time import pandas as pd def query_dns_a_record(domain, resolver_ip): # p...")
  • 17:57, 4 May 2024 Busk talk contribs created page Openssl ca (Created page with "``` keyUsage and extendedKeyUsage are both extensions used in X.509 certificates to specify the purposes for which the public key contained in the certificate can be used. How...")
  • 14:10, 4 May 2024 Busk talk contribs created page Go openssl http api (Created page with "``` package main import ( "fmt" "io/ioutil" "net/http" "os" "os/exec" "github.com/labstack/echo/v4" ) func main() { e := echo.New() e.POST("/generate-certificate",...")
  • 21:08, 3 May 2024 Busk talk contribs created page Auth methods in http (Created page with "``` Basic Authentication: This is the simplest form of HTTP authentication, where the client sends the username and password encoded in Base64 format in the Authorization head...")
  • 19:54, 3 May 2024 Busk talk contribs created page Kusto queries FW (Created page with "``` AzureDiagnostics | where msg_s contains "10.x.x.x" | project msg_s ``` ``` AzureDiagnostics | where ResourceType == "AZUREFIREWALLS" and action_s == "Deny" and src_ip_s =...")
  • 01:34, 3 May 2024 Busk talk contribs created page Gorelay (Created page with "# Simple HTTP Relay written in go ``` package main import ( "crypto/tls" "github.com/labstack/echo/v4" "io" "net/http" ) func main() {...")
  • 07:51, 2 May 2024 Busk talk contribs created page Docker on ubuntu (Created page with "``` curl -LO https://github.com/docker/compose/releases/download/v2.27.0/docker-compose-linux-x86_64 && chmod +x docker-compose-linux-x86_64 && sudo mv docker-compose-linux-x8...")
  • 16:07, 1 May 2024 Busk talk contribs created page Ca revisited (Created page with "https://kubernetes.io/docs/tasks/administer-cluster/certificates/")
  • 13:58, 21 April 2024 Busk talk contribs created page Zfs terms (Created page with "``` To decrease the size of a ZFS volume using OpenZFS, you typically need to perform the following steps: Backup Data: Before resizing any volume, it's crucial to back up yo...")
  • 15:28, 20 April 2024 Busk talk contribs created page Storage go (Created page with "https://github.com/gostor/awesome-go-storage?tab=readme-ov-file")
  • 14:22, 19 April 2024 Busk talk contribs created page Bash profile (Created page with "Show only last two folders ``` PROMPT_DIRTRIM=2 ```")
  • 00:42, 18 April 2024 Busk talk contribs created page Venafi python (Created page with "``` #!/usr/bin/env python3 import argparse import base64 from getpass import getpass import json import os import requests import sys class EnvDefault(argparse.Action): d...")
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)