Saturday, May 19, 2018

Apple Iphone Personal Data Tracking Metadata Fields


ZDNet's Zack Whittaker asked Apple to give me all the data it collected on me since I bought my first iPhone — in 2010.


Here's the Apple Personal Data (Metadata) Fields that is tracked.

Tuesday, May 15, 2018

How to fix Open PGP Hack now

https://EFAIL.de/  is the source and dedicate site that describes the now well know vulnerabilities in the end-to-end encryption technologies OpenPGP and S/MIME that leak the plaintext of encrypted emails. 

These apps are affected; 
  1. Thunderbird with Enigmail
  2. Apple Mail with GPGTools
  3. Outlook with Gpg4win
The intermediate fix is; 
  1. Disable HTML rendering. The EFAIL attacks abuse active content, mostly in the form of HTML images, styles, etc. Disabling the presentation of incoming HTML emails in your email client will close the most prominent way of attacking EFAIL. Note that there are other possible backchannels in email clients which are not related to HTML but these are more difficult to exploit.
  2. No decryption in email client. The best way to prevent EFAIL attacks is to only decrypt S/MIME or PGP emails in a separate application outside of your email client. Start by removing your S/MIME and PGP private keys from your email client, then decrypt incoming encrypted emails by copy&pasting the ciphertext into a separate application that does the decryption for you. That way, the email clients cannot open exfiltration channels. This is currently the safest option with the downside that the process gets more involved.




Tuesday, May 1, 2018

Wikipedia Windows 10 Release Information Page a Powershell Script


Copy and paste into Powershell ISE and run. Updated May 30, 2018.



# WikiWinReleaseInfo.ps1 
# Purpose : Open Wikipedia Info Page for your Window 10 Release
# Author : Metadataconsulting.ca
# Last Updated : May 30, 2018

Write-Host "Your running" (Get-WmiObject Win32_OperatingSystem).Caption

If ([System.Environment]::OSVersion.Version.Major -ge 10) {
 
    $releaseID = (Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion" -Name ReleaseId).ReleaseId

    If ($releaseID -eq 1709) {
    [System.Diagnostics.Process]::Start("https://en.wikipedia.org/wiki/Windows_10_version_history#Version_1709_(Fall_Creators_Update)")
    }
    elseif ($releaseID -eq 1511) {
    [System.Diagnostics.Process]::Start("https://en.wikipedia.org/wiki/Windows_10_version_history#Version_1511_(November_Update)")
    }
    elseif ($releaseID -eq 1607) {
    [System.Diagnostics.Process]::Start("https://en.wikipedia.org/wiki/Windows_10_version_history#Version_1607_(Anniversary_Update)")
    }
    elseif ($releaseID -eq 1703) {
    [System.Diagnostics.Process]::Start("https://en.wikipedia.org/wiki/Windows_10_version_history#Version_1703_(Creators_Update)")
    }
    elseif ($releaseID -eq 1803) {
    [System.Diagnostics.Process]::Start("https://en.wikipedia.org/wiki/Windows_10_version_history#Version_1803_(April_2018_Update)")
    }
    else {
    [System.Diagnostics.Process]::Start("https://en.wikipedia.org/wiki/Windows_10_version_history#Version_$releaseID")
    }

} else {

    Write-Host "This script is for Windows 10 only."   

}