https://thenextweb.com/security/2019/11/12/mexican-state-oil-firm-pemex-hit-by-ransomware-attack/
Ransomware targeting servers
IBM’s 200,000 Macs have made a happier, more productive workforce
5G Security Issues
Snippet of PowerShell to extract IP addresses from a file
$Input_File = ‘C:\Temp\Input_File.txt’
$Output_File = ‘C:\Temp\Extracted_IP_Addresses.txt’
$RegEx = ‘\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b’
Select-String -Path $Input_File -Pattern $RegEx -AllMatches | % { $_.Matches } | % { $_.Value } > $Output_File
Every time
