I recently started playing Wordle, and while I love the game, I kind of got annoyed when I had guessed a couple of words and had only a few left, but had to go through the letters in my head one by one trying to figure out what was possible. Brute-forcing letters like that is the job of a computer.... So I made a program to help me figure out possible letters more quickly. Basically, I took all the 5-letter English words, and knock them down based on what is known to be missing, what is known to be there, what is where, and what is not where. I hope that someone else enjoys this program. #!/usr/bin/python3 ''' This script reads in a dictioary of 5-letter english (supposedly) words (I AWK'd the five-letter words from a dictionary that may include non-real words), and prints out words that remain after the User Defined Variables are entered Enter User Defined Variables with single quotes, separated by commas (i.e. 'o' or ['t','y']) - Firs
My Setup of Security Onion on the Antsle: Recently my IDS box, an Intel Atom D2500 Fanless Mini-ITX PC, D2500CCE, died. Truth be told, I think it came from the factory in a bad state, as I originally thought I had a bad graphics driver, but I then noticed that, after much troubleshooting, it wasn't a driver issue at all. The box just sometimes wouldn't boot up correctly with video. It seems heat related, something like not enough thermal paste on the CPU, as after it is powered off for a while it is more likely to boot than when it is warm. Along with that issue, this box maxed out at 4GB of RAM (only has 2 memory slots, each of which will only take a 2GB card max) and had a single processor, so it was under powered for Security Onion. So, I decided to quit limping along on P.O.S. boxes, and buy a little more heavyweight box for my networked IDS. Security Onion requires a minimum of 8GB of RAM, and 4 cores per their specs page https://github.com/secur