I'm including my logs
Linux frozen for while and then crashed.. all after few hours in loop with 'pci=nomsi' and AX200 (iwlwifi driver).
2.28.0: | |
release_date: '2023-02-03' | |
jdk_compatibility: 11+ | |
2.27.1: | |
release_date: '2022-12-01' | |
jdk_compatibility: 11+ | |
2.27.0: | |
release_date: '2022-11-14' | |
jdk_compatibility: 11+ | |
2.26.0: |
import javax.net.ssl.X509TrustManager; | |
import java.security.cert.CertificateException; | |
import java.security.cert.CertificateExpiredException; | |
import java.security.cert.X509Certificate; | |
/** | |
* A custom implementation of the javax.net.ssl.X509TrustManager interface that includes a check for certificate validity. | |
* This implementation can be used to deny expired certificates and protect against attacks that rely on exploiting | |
* certificate validity periods. | |
*/ |
#!/usr/bin/env python3 | |
import os | |
import sys | |
import re | |
import argparse | |
from pathlib import Path | |
# Here's an example of usage |
echo $(ifconfig eth0 | awk '$1 == "inet" {print $2}') \
$(nslookup $(ifconfig eth0 | awk '$1 == "inet" {print $2}') | \
awk '{ print $4; exit }') $(hostname) >> /etc/hosts
https://web.mit.edu/kerberos/krb5-devel/doc/mitK5defaults.html#mitk5defaults
Absolutly the best summary of knowledge which you can find about (cyrus-sasl): https://www.arschkrebs.de/slides/surviving_cyrus_sasl-handout.pdf
I'm working with Ansible and many of servers every day, so let me show you, how can waste less of your time! :)
Edit sshd config and disable UseDNS, it's mainly used only for logging and authentication. But.. only when you have set IgnoreRhosts in your config. So who doesn't know, should use it with clean mind. Because this has truly so far with security. :)