<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-4054614406137433263</id><updated>2023-08-27T00:21:58.722-04:00</updated><category term=".NET"/><category term="CSharp"/><category term="c#"/><category term="dotNET"/><category term="Embed Code"/><category term="Google Chrome"/><category term="How-to"/><category term="Windows IT Pro"/><category term="clean"/><category term="remove"/><category term="spring cleaning"/><category term="wordpress"/><category term=".NET 4.0"/><category term="1Click-Installer-for-Presenters-Desktop-Shortcuts-Tool-Windows-10"/><category term="Basic But Necessary"/><category term="CDN"/><category term="Chrome"/><category term="Clean Kill Task"/><category term="Content Delivery Network"/><category term="Delete Install Files"/><category term="Delete Update Files"/><category term="Delete Upgrade Files"/><category term="ERR_CERT_AUTHORITY_INVALID"/><category term="ERR_CERT_COMMON_NAME_INVALID"/><category term="ERR_CERT_DATE_INVALID"/><category term="Embed"/><category term="End-of-Life Support Tools"/><category term="Excel Online"/><category term="Exchange Tasks"/><category term="Explorer"/><category term="Migrations"/><category term="Mobile Sync of Tasks"/><category term="Office 365 Task"/><category term="OneDrive"/><category term="Outlook Tasks"/><category term="PDF Viewer"/><category term="PPT"/><category term="PPTX"/><category term="Powerpoint"/><category term="Restart"/><category term="Server Migrations"/><category term="SharePoint"/><category term="TMP files"/><category term="To-do list"/><category term="WPF"/><category term="XAML"/><category term="Your connection is not private"/><category term="auto-playing"/><category term="auto-start"/><category term="blank screen of death"/><category term="c sharp"/><category term="dataGrid"/><category term="delete"/><category term="fix"/><category term="invalid SSL cert"/><category term="invalid cert"/><category term="invalid time"/><category term="phishing"/><category term="php"/><category term="self-running presentation"/><category term="solution"/><category term="task list"/><title type='text'>Metadata Consulting [dot] ca</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default?start-index=26&amp;max-results=25&amp;redirect=false'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>787</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-5161488088556825897</id><published>2023-08-26T07:30:00.003-04:00</published><updated>2023-08-26T10:23:09.385-04:00</updated><title type='text'>Create Direct Download Link for OneDrive Files: 2023</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;br /&gt;
&lt;script language=&quot;JavaScript&quot;&gt;
//copyright 2017, metadataconsulting.ca
//Jquery included in blogger.com
$(document).ready(function(){
    $(&quot;#onedriveembedbutton&quot;).click(function(){
    document.getElementById(&quot;answer&quot;).value=&quot;&quot;;       
 // is Valid onedrive share link?  
    //https://onedrive.live.com/redir?resid=8F99649728BEB2F3!2737&amp;authkey=!ACnO8wuwLQ07PqI&amp;v=3&amp;ithint=photo%2cgif
    var stringURL = document.getElementById(&quot;textboxSearch&quot;).value;
    //alert(&#39;validateOneDrive: strigURL = &#39; + stringURL);
    var stringOneDrive = &quot;https://onedrive.live.com/&quot;; 
    var stringOneDriveResid = &quot;&amp;resid=&quot;;   
    var stringOneDriveAuthKey = &quot;&amp;authkey=&quot;; 
    var download = &quot;&quot;; 
  
 if (stringURL.indexOf(stringOneDrive)==0 &amp;&amp; stringURL.search(stringOneDriveAuthKey)&gt;-1){
 
    //alert(document.getElementById(&quot;answer&quot;).value+&quot;-&quot;); 
    // alert(stringURL.replace(&#39;redir&#39;, &#39;download&#39;)); 
   download = stringURL.replace(&#39;redir&#39;, &#39;download&#39;);
   download = download.replace(&#39;embed&#39;, &#39;download&#39;);
   document.getElementById(&quot;answer&quot;).value = download;
   $(&#39;answer&#39;).val(download); //make sure
   $(&#39;#directtest&#39;).html(&#39;&lt;b style=&quot;color:red&quot;&gt;New! Test&lt;/b&gt; your direct download link: &lt;a href=&quot;&#39;+download+&#39;&quot; target=&quot;_blank&quot;&gt;&#39;+ download+&#39;&lt;/a&gt;&#39;); 


  document.getElementById(&quot;textboxSearch&quot;).value = &quot;&quot;;
  document.getElementById(&quot;answer&quot;).select(); 
  $(&#39;answer&#39;).select(); //make sure

 }else{
 
  if (stringURL.indexOf(stringOneDrive)!=0)
   alert(&#39;Not a valid OneDrive Shared Link, does not start with &#39; + stringOneDrive);
  else if (stringURL.indexOf(stringOneDriveAuthKey)!=0)
     alert(&#39;Not a valid OneDrive Shared Link, does not contain authentication key string &#39; + stringOneDriveAuthKey);
    
    document.getElementById(&quot;answer&quot;).value = &quot;&quot;; 
 }  

    //alert(&#39;validateOneDrive: isValid = &#39; + isOneDrive);
    
    //var isValid = confirm(&#39;Do you want to submit the form?&#39;);
    //alert(&#39;validateMyForm: isValid = &#39; + isValid);
    
     //return false;



  });

$(&quot;#iframesrcget&quot;).click(function(){
  var frametext = $(&quot;#iframeText&quot;).val();
  var srcURL = $(frametext).attr(&#39;src&#39;);
  $(&quot;#iframeText&quot;).val(srcURL);
  $(&quot;#iframeText&quot;).select(); 
});
$(&quot;#iframesrcgetTop&quot;).click(function(){
 var frametext = $(&quot;#iframeTextTop&quot;).val();
 var stringiframe = &quot;&lt;iframe&quot;;
 if (frametext.indexOf(stringiframe)==0)
 {
  var srcURLTop = $(frametext).attr(&#39;src&#39;);
  $(&quot;#iframeTextTop&quot;).val(&#39;&#39;);
  $(&quot;#textboxSearch&quot;).val(srcURLTop);  
 } else {
  alert(&#39;Embed code does not start with &lt;iframe &#39;);  
 }
});



});
&lt;/script&gt;

&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;http://3.bp.blogspot.com/-OWqgAUJTxn0/Vp3Olyq-3PI/AAAAAAAAFCs/cvq-X9ZqaTk/s1600/OneDriveDirectDownloadIcon.png&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://3.bp.blogspot.com/-OWqgAUJTxn0/Vp3Olyq-3PI/AAAAAAAAFCs/cvq-X9ZqaTk/s1600/OneDriveDirectDownloadIcon.png&quot; /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;label&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;b&gt;Microsoft OneDrive Direct File Download URL Maker&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;I get asked all the time to by my clients to provide a way to &lt;i&gt;direct download URL&lt;/i&gt; to a file and &lt;b&gt;NOT &lt;/b&gt;preview the file, especially if the file is large. It&#39;s often very confusing for novice users to have preview mode of file, such as PDF files which launch a separate user interface. Moreover, if the file is over 100Mb, the preview appears too slowly for most users, and they&#39;ll abandon the file.&lt;/span&gt;&lt;/label&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/label&gt;
&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;So I came up with this mini &quot;App&quot;, it takes a OneDrive Share Link and returns the direct download URL for that file.&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/label&gt;
&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; style=&quot;font-size: medium;&quot;&gt;Enjoy! The &lt;a href=&quot;http://how%20to%20get%20direct%20download%20link%20from%20onedrive%20-%20working%20-%20power%20it%20pro%20tip/&quot;&gt;original&lt;/a&gt; download maker since &lt;a href=&quot;https://metadataconsulting.blogspot.com/2014/05/how-to-get-direct-download-link-from.html&quot;&gt;2014&lt;/a&gt;.&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;span style=&quot;color: #222222; font-size: 15px; line-height: 25.5px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;
&lt;b style=&quot;font-family: arial, helvetica, sans-serif;&quot;&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; style=&quot;font-size: x-large;&quot;&gt;Microsoft OneDrive Direct File Download URL Maker&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://1.bp.blogspot.com/-Jbi0amY8FA4/WLm5YiCSIJI/AAAAAAAAIYk/G_ni7t4mOFAc2FQ0Y5rXemO89_jnfv8XQCLcB/s1600/NewOneDriveMainImagev2.png&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://1.bp.blogspot.com/-Jbi0amY8FA4/WLm5YiCSIJI/AAAAAAAAIYk/G_ni7t4mOFAc2FQ0Y5rXemO89_jnfv8XQCLcB/s1600/NewOneDriveMainImagev2.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;b&gt;1. &lt;/b&gt;Right-click on item in Onedrive, Choose Embed. &lt;br /&gt;&lt;br /&gt;For &lt;span style=&quot;background-color: yellow;&quot;&gt;images, this does NOT work. Embed gives you the direct URL of the image (see below).&lt;/span&gt;&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;b&gt;&lt;br /&gt;2. &lt;/b&gt;Click Generate button&lt;br /&gt;&lt;br /&gt;&lt;b&gt;3. Get Embed code &lt;/b&gt;from Onedrive as in picture above. i.e.:&amp;nbsp;&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; style=&quot;color: blue;&quot;&gt;&amp;lt;iframe src=&quot;https://onedrive.live.com/embed?cid=8F99649728BEB2F3&amp;amp;resid=8F99649728BEB2F3%211010&amp;amp;authkey=AFo8ZQ_-qj84DEQ&quot; width=&quot;98&quot; height=&quot;120&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot;&amp;gt;&amp;lt;/iframe&amp;gt;&lt;/span&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; style=&quot;color: blue;&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;see instructions below, if you don&#39;t know how. &lt;/span&gt;&lt;b style=&quot;font-family: &amp;quot;helvetica neue&amp;quot;, arial, helvetica, sans-serif;&quot;&gt;NOTE&lt;/b&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt; : For &lt;/span&gt;&lt;b style=&quot;font-family: &amp;quot;helvetica neue&amp;quot;, arial, helvetica, sans-serif;&quot;&gt;images&lt;/b&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt; there an extra step below.&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;b&gt;Copy&amp;nbsp;&lt;/b&gt;&lt;b style=&quot;font-weight: bold;&quot;&gt;Embed Code (red arrow 3) and paste into text-box below. Click Get embed link button. This will fill 3.1, then click Get Download Link.&lt;/b&gt;&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;b style=&quot;font-weight: bold;&quot;&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://3.bp.blogspot.com/-fP-cibNHFN0/WLm4tq-XvHI/AAAAAAAAIYg/3NUMjxSwtLM0i4guERU83dqIdrNhjaF8gCLcB/s1600/3RedArrow.png&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://3.bp.blogspot.com/-fP-cibNHFN0/WLm4tq-XvHI/AAAAAAAAIYg/3NUMjxSwtLM0i4guERU83dqIdrNhjaF8gCLcB/s1600/3RedArrow.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;input id=&quot;iframeTextTop&quot; name=&quot;iframeTextTop&quot; size=&quot;50&quot; type=&quot;text&quot; /&gt;
&lt;button id=&quot;iframesrcgetTop&quot;&gt;Get embed link&lt;/button&gt;


&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;i&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This will produce, extract the File Embed Link which looks like:&amp;nbsp;&lt;/i&gt;&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; style=&quot;color: blue;&quot;&gt;&lt;span style=&quot;color: blue; font-style: italic;&quot;&gt;https://onedrive.live.com/embed?cid=8F99649728BEB2F3&amp;amp;resid=8F99649728BEB2F3%211010&amp;amp;authkey=AFo8ZQ_-qj84DEQ&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;and populate the text-box below. To proceed click &quot;&lt;/span&gt;&lt;b style=&quot;font-family: arial, helvetica, sans-serif;&quot;&gt;Get Download Link&lt;/b&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&quot; button.&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/label&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;b&gt;3.1&lt;/b&gt; Alternatively, you can paste (ctrl-v) your &lt;i&gt;&lt;b&gt;OneDrive File Embed Link&lt;/b&gt;&lt;/i&gt;&amp;nbsp;in text-box below and click &quot;&lt;b&gt;Get Download Link&lt;/b&gt;&quot; button below&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;input id=&quot;textboxSearch&quot; name=&quot;textboxSearch&quot; size=&quot;100&quot; type=&quot;text&quot; /&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;b&gt;4.&lt;/b&gt;&amp;nbsp;Now, Click on &lt;b&gt;Get Download Link&lt;/b&gt; button.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;br /&gt;Text-box will be highlighted so you can copy the full link. To copy, right-click and choose &amp;nbsp;&quot;Copy&quot; or simply (ctrl-c) to copy link. &lt;b&gt;Note&lt;/b&gt;: Entire URL is automatic selected for your convenience.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;input id=&quot;answer&quot; name=&quot;answer&quot; size=&quot;100&quot; type=&quot;text&quot; /&gt;
&lt;!--Associate the onkeypress event with a javascript function, passing in the event object. 
This function will attempt to submit the form if the Enter key is pressed.--&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://3.bp.blogspot.com/-BdSWAsOd2Yw/WLm6LcIbPJI/AAAAAAAAIYo/sP05oSfUtag4F8YjE5NmLROBxekr53XHwCLcB/s1600/RedArrow4.png&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://3.bp.blogspot.com/-BdSWAsOd2Yw/WLm6LcIbPJI/AAAAAAAAIYo/sP05oSfUtag4F8YjE5NmLROBxekr53XHwCLcB/s1600/RedArrow4.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;button id=&quot;onedriveembedbutton&quot;&gt;Get Download Link&lt;/button&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;br /&gt;Now you can Paste (ctrl-v) and share the &lt;span style=&quot;color: blue;&quot;&gt;OneDrive Direct Download Link&lt;/span&gt; in your email ;) &lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div id=&quot;directtest&quot; style=&quot;font-family: &amp;quot;helvetica neue&amp;quot;, arial, helvetica, sans-serif;&quot;&gt;
&lt;/div&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; style=&quot;font-size: x-large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; style=&quot;font-size: x-large;&quot;&gt;For Images, you get a direct url&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;
&lt;ol&gt;
&lt;/ol&gt;
&lt;div style=&quot;display: inline; font-family: &amp;quot;helvetica neue&amp;quot;, arial, helvetica, sans-serif; text-align: left;&quot;&gt;
&lt;/div&gt;
&lt;ol style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;&lt;div style=&quot;display: inline; font-family: &amp;quot;helvetica neue&amp;quot;, arial, helvetica, sans-serif; text-align: left;&quot;&gt;
&lt;span style=&quot;color: black; font-size: small;&quot;&gt;Right-click on image and select Embed. The Copy the URL to embed image now gives you &lt;/span&gt;&lt;span style=&quot;font-size: small;&quot;&gt;direct download URL, but is super long&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;.&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;&lt;span style=&quot;color: red; font-size: medium;&quot;&gt;So you do not need to do the above!&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
&lt;div style=&quot;color: red; font-family: &amp;quot;helvetica neue&amp;quot;, arial, helvetica, sans-serif; font-size: large;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;color: red; font-family: &amp;quot;helvetica neue&amp;quot;, arial, helvetica, sans-serif; font-size: large;&quot;&gt;
&lt;a href=&quot;https://1.bp.blogspot.com/-W9m1HzHAu4Y/V1cdeRKwseI/AAAAAAAAHKs/EH8gX_4_-oQ9AI0toSYmJ-ooMjjDPbPZACLcB/s1600/OneDriveEmbeddedNowGetsDownloadURL.png&quot; style=&quot;clear: left; color: red; margin-bottom: 1em; margin-left: 1em; text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;456&quot; src=&quot;https://1.bp.blogspot.com/-W9m1HzHAu4Y/V1cdeRKwseI/AAAAAAAAHKs/EH8gX_4_-oQ9AI0toSYmJ-ooMjjDPbPZACLcB/s640/OneDriveEmbeddedNowGetsDownloadURL.png&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span arial=&quot;&quot; face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; helvetica=&quot;&quot; sans-serif=&quot;&quot;&gt;&lt;b style=&quot;font-size: x-large;&quot;&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;
&lt;span arial=&quot;&quot; face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; helvetica=&quot;&quot; sans-serif=&quot;&quot;&gt;&lt;b style=&quot;font-size: x-large;&quot;&gt;&lt;span style=&quot;color: black; display: inline; float: none; font-family: &amp;quot;times new roman&amp;quot;; font-size: small; font-style: normal; font-weight: 400; letter-spacing: normal; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px;&quot;&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style=&quot;display: inline; orphans: 2; text-align: left; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; widows: 2;&quot;&gt;
&lt;div style=&quot;margin: 0px;&quot;&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;You can also remove everything after the ?&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; style=&quot;color: blue; font-size: x-small;&quot;&gt;&lt;a href=&quot;https://wyztwg.by.files.1drv.com/y4mucnXH4ZIfty_kXg9nYvgjHKJMw-XkCLfcBvI7ipNMNidsCjSMyNcw4cFyNlB0WKO9M-VNquASIbFp9DlTJPrjpqk2ex4GmzoVcA_2OOAp1G1ZiGK_U_UPjmfTj_hmtd41HascgLLyjTbEKJlDzXfFhyOXPngJ_ovCRPxL14pt1B0er3HaJvRxjkpru0z85Wiua9JhMP-BvbADeKnISGTqQ?width=1082&amp;amp;height=539&amp;amp;cropmode=none&quot;&gt;https://wyztwg.by.files.1drv.com/y4mucnXH4ZIfty_kXg9nYvgjHKJMw-XkCLfcBvI7ipNMNidsCjSMyNcw4cFyNlB0WKO9M-VNquASIbFp9DlTJPrjpqk2ex4GmzoVcA_2OOAp1G1ZiGK_U_UPjmfTj_hmtd41HascgLLyjTbEKJlDzXfFhyOXPngJ_ovCRPxL14pt1B0er3HaJvRxjkpru0z85Wiua9JhMP-BvbADeKnISGTqQ?width=1082&amp;amp;height=539&amp;amp;cropmode=none&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;margin: 0px;&quot;&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;margin: 0px;&quot;&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;to&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;margin: 0px;&quot;&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;margin: 0px;&quot;&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; style=&quot;color: blue; font-size: x-small;&quot;&gt;&lt;a href=&quot;https://wyztwg.by.files.1drv.com/y4mucnXH4ZIfty_kXg9nYvgjHKJMw-XkCLfcBvI7ipNMNidsCjSMyNcw4cFyNlB0WKO9M-VNquASIbFp9DlTJPrjpqk2ex4GmzoVcA_2OOAp1G1ZiGK_U_UPjmfTj_hmtd41HascgLLyjTbEKJlDzXfFhyOXPngJ_ovCRPxL14pt1B0er3HaJvRxjkpru0z85Wiua9JhMP-BvbADeKnISGTqQ&quot;&gt;https://wyztwg.by.files.1drv.com/y4mucnXH4ZIfty_kXg9nYvgjHKJMw-XkCLfcBvI7ipNMNidsCjSMyNcw4cFyNlB0WKO9M-VNquASIbFp9DlTJPrjpqk2ex4GmzoVcA_2OOAp1G1ZiGK_U_UPjmfTj_hmtd41HascgLLyjTbEKJlDzXfFhyOXPngJ_ovCRPxL14pt1B0er3HaJvRxjkpru0z85Wiua9JhMP-BvbADeKnISGTqQ&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;span arial=&quot;&quot; face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; helvetica=&quot;&quot; sans-serif=&quot;&quot;&gt;&lt;b style=&quot;font-size: x-large;&quot;&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;
&lt;span arial=&quot;&quot; face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; helvetica=&quot;&quot; sans-serif=&quot;&quot;&gt;&lt;b style=&quot;font-size: x-large;&quot;&gt;Using OneDrive as a CDN&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;Bonus : For images, read&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;https://metadataconsulting.blogspot.com/2020/04/Using-Microsoft-OneDrive-2020-as-Content-Delivery-Network-CDN-for-images.html&quot; style=&quot;font-family: &amp;quot;helvetica neue&amp;quot;, arial, helvetica, sans-serif;&quot;&gt;Using OneDrive as a Content Delivery Network (CDN)&lt;/a&gt;&amp;nbsp;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&amp;nbsp;plausibility post.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/5161488088556825897/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/08/Create-Direct-Download-Link-for-OneDrive-Files-2023.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/5161488088556825897'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/5161488088556825897'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/08/Create-Direct-Download-Link-for-OneDrive-Files-2023.html' title='Create Direct Download Link for OneDrive Files: 2023'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://3.bp.blogspot.com/-OWqgAUJTxn0/Vp3Olyq-3PI/AAAAAAAAFCs/cvq-X9ZqaTk/s72-c/OneDriveDirectDownloadIcon.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-2094418272568711723</id><published>2023-08-26T06:00:00.001-04:00</published><updated>2023-08-26T10:24:24.399-04:00</updated><title type='text'>How to Get Direct or Permanent Link for OneDrive Files?</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;span style=&quot;color: red; font-family: helvetica;&quot;&gt;No change for 2023&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/label&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;script language=&quot;JavaScript&quot;&gt;
//copyright 2017, metadataconsulting.ca
//Jquery included in blogger.com
$(document).ready(function(){
    $(&quot;#onedriveembedbutton&quot;).click(function(){
    document.getElementById(&quot;answer&quot;).value=&quot;&quot;;       
 // is Valid onedrive share link?  
    //https://onedrive.live.com/redir?resid=8F99649728BEB2F3!2737&amp;authkey=!ACnO8wuwLQ07PqI&amp;v=3&amp;ithint=photo%2cgif
    var stringURL = document.getElementById(&quot;textboxSearch&quot;).value;
    //alert(&#39;validateOneDrive: strigURL = &#39; + stringURL);
    var stringOneDrive = &quot;https://onedrive.live.com/&quot;; 
    var stringOneDriveResid = &quot;&amp;resid=&quot;;   
    var stringOneDriveAuthKey = &quot;&amp;authkey=&quot;; 
    var download = &quot;&quot;; 
  
 if (stringURL.indexOf(stringOneDrive)==0 &amp;&amp; stringURL.search(stringOneDriveAuthKey)&gt;-1){
 
    //alert(document.getElementById(&quot;answer&quot;).value+&quot;-&quot;); 
    // alert(stringURL.replace(&#39;redir&#39;, &#39;download&#39;)); 
   download = stringURL.replace(&#39;redir&#39;, &#39;download&#39;);
   download = download.replace(&#39;embed&#39;, &#39;download&#39;);
   document.getElementById(&quot;answer&quot;).value = download;
   $(&#39;answer&#39;).val(download); //make sure
   $(&#39;#directtest&#39;).html(&#39;&lt;b style=&quot;color:red&quot;&gt;New! Test&lt;/b&gt; your direct download link: &lt;a href=&quot;&#39;+download+&#39;&quot; target=&quot;_blank&quot;&gt;&#39;+ download+&#39;&lt;/a&gt;&#39;); 


  document.getElementById(&quot;textboxSearch&quot;).value = &quot;&quot;;
  document.getElementById(&quot;answer&quot;).select(); 
  $(&#39;answer&#39;).select(); //make sure

 }else{
 
  if (stringURL.indexOf(stringOneDrive)!=0)
   alert(&#39;Not a valid OneDrive Shared Link, does not start with &#39; + stringOneDrive);
  else if (stringURL.indexOf(stringOneDriveAuthKey)!=0)
     alert(&#39;Not a valid OneDrive Shared Link, does not contain authentication key string &#39; + stringOneDriveAuthKey);
    
    document.getElementById(&quot;answer&quot;).value = &quot;&quot;; 
 }  

    //alert(&#39;validateOneDrive: isValid = &#39; + isOneDrive);
    
    //var isValid = confirm(&#39;Do you want to submit the form?&#39;);
    //alert(&#39;validateMyForm: isValid = &#39; + isValid);
    
     //return false;



  });

$(&quot;#iframesrcget&quot;).click(function(){
  var frametext = $(&quot;#iframeText&quot;).val();
  var srcURL = $(frametext).attr(&#39;src&#39;);
  $(&quot;#iframeText&quot;).val(srcURL);
  $(&quot;#iframeText&quot;).select(); 
});
$(&quot;#iframesrcgetTop&quot;).click(function(){
 var frametext = $(&quot;#iframeTextTop&quot;).val();
 var stringiframe = &quot;&lt;iframe&quot;;
 if (frametext.indexOf(stringiframe)==0)
 {
  var srcURLTop = $(frametext).attr(&#39;src&#39;);
  $(&quot;#iframeTextTop&quot;).val(&#39;&#39;);
  $(&quot;#textboxSearch&quot;).val(srcURLTop);  
 } else {
  alert(&#39;Embed code does not start with &lt;iframe &#39;);  
 }
});



});
&lt;/script&gt;

&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;http://3.bp.blogspot.com/-OWqgAUJTxn0/Vp3Olyq-3PI/AAAAAAAAFCs/cvq-X9ZqaTk/s1600/OneDriveDirectDownloadIcon.png&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://3.bp.blogspot.com/-OWqgAUJTxn0/Vp3Olyq-3PI/AAAAAAAAFCs/cvq-X9ZqaTk/s1600/OneDriveDirectDownloadIcon.png&quot; /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;label&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;b&gt;Microsoft OneDrive Direct File Download URL Maker&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;I get asked all the time to by my clients to provide a way to &lt;i&gt;direct download URL&lt;/i&gt; to a file and &lt;b&gt;NOT &lt;/b&gt;preview the file, especially if the file is large. It&#39;s often very confusing for novice users to have preview mode of file, such as PDF files which launch a separate user interface. Moreover, if the file is over 100Mb, the preview appears too slowly for most users, and they&#39;ll abandon the file.&lt;/span&gt;&lt;/label&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/label&gt;
&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;So I came up with this mini &quot;App&quot;, it takes a OneDrive Share Link and returns the direct download URL for that file.&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/label&gt;
&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;Enjoy! The &lt;a href=&quot;http://how%20to%20get%20direct%20download%20link%20from%20onedrive%20-%20working%20-%20power%20it%20pro%20tip/&quot;&gt;original&lt;/a&gt; download maker since &lt;a href=&quot;https://metadataconsulting.blogspot.com/2014/05/how-to-get-direct-download-link-from.html&quot;&gt;2014&lt;/a&gt;.&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;span style=&quot;color: #222222; font-size: 15px; line-height: 25.5px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;
&lt;b style=&quot;font-family: arial, helvetica, sans-serif;&quot;&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; style=&quot;font-size: x-large;&quot;&gt;Microsoft OneDrive Direct File Download URL Maker&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://1.bp.blogspot.com/-Jbi0amY8FA4/WLm5YiCSIJI/AAAAAAAAIYk/G_ni7t4mOFAc2FQ0Y5rXemO89_jnfv8XQCLcB/s1600/NewOneDriveMainImagev2.png&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://1.bp.blogspot.com/-Jbi0amY8FA4/WLm5YiCSIJI/AAAAAAAAIYk/G_ni7t4mOFAc2FQ0Y5rXemO89_jnfv8XQCLcB/s1600/NewOneDriveMainImagev2.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;b&gt;1. &lt;/b&gt;Right-click on item in Onedrive, Choose Embed. &lt;br /&gt;&lt;br /&gt;For &lt;span style=&quot;background-color: yellow;&quot;&gt;images, this does NOT work. Embed gives you the direct URL of the image (see below).&lt;/span&gt;&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;b&gt;&lt;br /&gt;2. &lt;/b&gt;Click Generate button&lt;br /&gt;&lt;br /&gt;&lt;b&gt;3. Get Embed code &lt;/b&gt;from Onedrive as in picture above. i.e.:&amp;nbsp;&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; style=&quot;color: blue;&quot;&gt;&amp;lt;iframe src=&quot;https://onedrive.live.com/embed?cid=8F99649728BEB2F3&amp;amp;resid=8F99649728BEB2F3%211010&amp;amp;authkey=AFo8ZQ_-qj84DEQ&quot; width=&quot;98&quot; height=&quot;120&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot;&amp;gt;&amp;lt;/iframe&amp;gt;&lt;/span&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; style=&quot;color: blue;&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;see instructions below, if you don&#39;t know how. &lt;/span&gt;&lt;b style=&quot;font-family: &amp;quot;helvetica neue&amp;quot;, arial, helvetica, sans-serif;&quot;&gt;NOTE&lt;/b&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt; : For &lt;/span&gt;&lt;b style=&quot;font-family: &amp;quot;helvetica neue&amp;quot;, arial, helvetica, sans-serif;&quot;&gt;images&lt;/b&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt; there an extra step below.&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;b&gt;Copy&amp;nbsp;&lt;/b&gt;&lt;b style=&quot;font-weight: bold;&quot;&gt;Embed Code (red arrow 3) and paste into text-box below. Click Get embed link button. This will fill 3.1, then click Get Download Link.&lt;/b&gt;&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;b style=&quot;font-weight: bold;&quot;&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://3.bp.blogspot.com/-fP-cibNHFN0/WLm4tq-XvHI/AAAAAAAAIYg/3NUMjxSwtLM0i4guERU83dqIdrNhjaF8gCLcB/s1600/3RedArrow.png&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://3.bp.blogspot.com/-fP-cibNHFN0/WLm4tq-XvHI/AAAAAAAAIYg/3NUMjxSwtLM0i4guERU83dqIdrNhjaF8gCLcB/s1600/3RedArrow.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;input id=&quot;iframeTextTop&quot; name=&quot;iframeTextTop&quot; size=&quot;50&quot; type=&quot;text&quot; /&gt;
&lt;button id=&quot;iframesrcgetTop&quot;&gt;Get embed link&lt;/button&gt;


&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;i&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This will produce, extract the File Embed Link which looks like:&amp;nbsp;&lt;/i&gt;&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; style=&quot;color: blue;&quot;&gt;&lt;span style=&quot;color: blue; font-style: italic;&quot;&gt;https://onedrive.live.com/embed?cid=8F99649728BEB2F3&amp;amp;resid=8F99649728BEB2F3%211010&amp;amp;authkey=AFo8ZQ_-qj84DEQ&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;and populate the text-box below. To proceed click &quot;&lt;/span&gt;&lt;b style=&quot;font-family: arial, helvetica, sans-serif;&quot;&gt;Get Download Link&lt;/b&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&quot; button.&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/label&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;b&gt;3.1&lt;/b&gt; Alternatively, you can paste (ctrl-v) your &lt;i&gt;&lt;b&gt;OneDrive File Embed Link&lt;/b&gt;&lt;/i&gt;&amp;nbsp;in text-box below and click &quot;&lt;b&gt;Get Download Link&lt;/b&gt;&quot; button below&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;input id=&quot;textboxSearch&quot; name=&quot;textboxSearch&quot; size=&quot;100&quot; type=&quot;text&quot; /&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;b&gt;4.&lt;/b&gt;&amp;nbsp;Now, Click on &lt;b&gt;Get Download Link&lt;/b&gt; button.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;br /&gt;Text-box will be highlighted so you can copy the full link. To copy, right-click and choose &amp;nbsp;&quot;Copy&quot; or simply (ctrl-c) to copy link. &lt;b&gt;Note&lt;/b&gt;: Entire URL is automatic selected for your convenience.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;input id=&quot;answer&quot; name=&quot;answer&quot; size=&quot;100&quot; type=&quot;text&quot; /&gt;
&lt;!--Associate the onkeypress event with a javascript function, passing in the event object. 
This function will attempt to submit the form if the Enter key is pressed.--&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://3.bp.blogspot.com/-BdSWAsOd2Yw/WLm6LcIbPJI/AAAAAAAAIYo/sP05oSfUtag4F8YjE5NmLROBxekr53XHwCLcB/s1600/RedArrow4.png&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://3.bp.blogspot.com/-BdSWAsOd2Yw/WLm6LcIbPJI/AAAAAAAAIYo/sP05oSfUtag4F8YjE5NmLROBxekr53XHwCLcB/s1600/RedArrow4.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;button id=&quot;onedriveembedbutton&quot;&gt;Get Download Link&lt;/button&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;label&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;br /&gt;Now you can Paste (ctrl-v) and share the &lt;span style=&quot;color: blue;&quot;&gt;OneDrive Direct Download Link&lt;/span&gt; in your email ;) &lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;/label&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div id=&quot;directtest&quot; style=&quot;font-family: &amp;quot;helvetica neue&amp;quot;, arial, helvetica, sans-serif;&quot;&gt;
&lt;/div&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; style=&quot;font-size: x-large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;span face=&quot;&amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; style=&quot;font-size: x-large;&quot;&gt;For Images, you get a direct url&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;
&lt;ol&gt;
&lt;/ol&gt;
&lt;div style=&quot;display: inline; font-family: &amp;quot;helvetica neue&amp;quot;, arial, helvetica, sans-serif; text-align: left;&quot;&gt;
&lt;/div&gt;
&lt;ol style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;&lt;div style=&quot;display: inline; font-family: &amp;quot;helvetica neue&amp;quot;, arial, helvetica, sans-serif; text-align: left;&quot;&gt;
&lt;span style=&quot;color: black; font-size: small;&quot;&gt;Right-click on image and select Embed. The Copy the URL to embed image now gives you &lt;/span&gt;&lt;span style=&quot;font-size: small;&quot;&gt;direct download URL, but is super long&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;.&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;&lt;span style=&quot;color: red; font-size: medium;&quot;&gt;So you do not need to do the above!&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
&lt;div style=&quot;color: red; font-family: &amp;quot;helvetica neue&amp;quot;, arial, helvetica, sans-serif; font-size: large;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;color: red; font-family: &amp;quot;helvetica neue&amp;quot;, arial, helvetica, sans-serif; font-size: large;&quot;&gt;
&lt;a href=&quot;https://1.bp.blogspot.com/-W9m1HzHAu4Y/V1cdeRKwseI/AAAAAAAAHKs/EH8gX_4_-oQ9AI0toSYmJ-ooMjjDPbPZACLcB/s1600/OneDriveEmbeddedNowGetsDownloadURL.png&quot; style=&quot;clear: left; color: red; margin-bottom: 1em; margin-left: 1em; text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;456&quot; src=&quot;https://1.bp.blogspot.com/-W9m1HzHAu4Y/V1cdeRKwseI/AAAAAAAAHKs/EH8gX_4_-oQ9AI0toSYmJ-ooMjjDPbPZACLcB/s640/OneDriveEmbeddedNowGetsDownloadURL.png&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span arial=&quot;&quot; face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; helvetica=&quot;&quot; sans-serif=&quot;&quot;&gt;&lt;b style=&quot;font-size: x-large;&quot;&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;
&lt;span arial=&quot;&quot; face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; helvetica=&quot;&quot; sans-serif=&quot;&quot;&gt;&lt;b style=&quot;font-size: x-large;&quot;&gt;&lt;span style=&quot;color: black; display: inline; float: none; font-family: &amp;quot;times new roman&amp;quot;; font-size: small; font-style: normal; font-weight: 400; letter-spacing: normal; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px;&quot;&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style=&quot;display: inline; orphans: 2; text-align: left; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; widows: 2;&quot;&gt;
&lt;div style=&quot;margin: 0px;&quot;&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;You can also remove everything after the ?&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; style=&quot;color: blue; font-size: x-small;&quot;&gt;&lt;a href=&quot;https://wyztwg.by.files.1drv.com/y4mucnXH4ZIfty_kXg9nYvgjHKJMw-XkCLfcBvI7ipNMNidsCjSMyNcw4cFyNlB0WKO9M-VNquASIbFp9DlTJPrjpqk2ex4GmzoVcA_2OOAp1G1ZiGK_U_UPjmfTj_hmtd41HascgLLyjTbEKJlDzXfFhyOXPngJ_ovCRPxL14pt1B0er3HaJvRxjkpru0z85Wiua9JhMP-BvbADeKnISGTqQ?width=1082&amp;amp;height=539&amp;amp;cropmode=none&quot;&gt;https://wyztwg.by.files.1drv.com/y4mucnXH4ZIfty_kXg9nYvgjHKJMw-XkCLfcBvI7ipNMNidsCjSMyNcw4cFyNlB0WKO9M-VNquASIbFp9DlTJPrjpqk2ex4GmzoVcA_2OOAp1G1ZiGK_U_UPjmfTj_hmtd41HascgLLyjTbEKJlDzXfFhyOXPngJ_ovCRPxL14pt1B0er3HaJvRxjkpru0z85Wiua9JhMP-BvbADeKnISGTqQ?width=1082&amp;amp;height=539&amp;amp;cropmode=none&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;margin: 0px;&quot;&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;margin: 0px;&quot;&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;to&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;margin: 0px;&quot;&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;margin: 0px;&quot;&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; style=&quot;color: blue; font-size: x-small;&quot;&gt;&lt;a href=&quot;https://wyztwg.by.files.1drv.com/y4mucnXH4ZIfty_kXg9nYvgjHKJMw-XkCLfcBvI7ipNMNidsCjSMyNcw4cFyNlB0WKO9M-VNquASIbFp9DlTJPrjpqk2ex4GmzoVcA_2OOAp1G1ZiGK_U_UPjmfTj_hmtd41HascgLLyjTbEKJlDzXfFhyOXPngJ_ovCRPxL14pt1B0er3HaJvRxjkpru0z85Wiua9JhMP-BvbADeKnISGTqQ&quot;&gt;https://wyztwg.by.files.1drv.com/y4mucnXH4ZIfty_kXg9nYvgjHKJMw-XkCLfcBvI7ipNMNidsCjSMyNcw4cFyNlB0WKO9M-VNquASIbFp9DlTJPrjpqk2ex4GmzoVcA_2OOAp1G1ZiGK_U_UPjmfTj_hmtd41HascgLLyjTbEKJlDzXfFhyOXPngJ_ovCRPxL14pt1B0er3HaJvRxjkpru0z85Wiua9JhMP-BvbADeKnISGTqQ&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;span arial=&quot;&quot; face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; helvetica=&quot;&quot; sans-serif=&quot;&quot;&gt;&lt;b style=&quot;font-size: x-large;&quot;&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;
&lt;span arial=&quot;&quot; face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot; helvetica=&quot;&quot; sans-serif=&quot;&quot;&gt;&lt;b style=&quot;font-size: x-large;&quot;&gt;Using OneDrive as a CDN&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;Bonus : For images, read&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;https://metadataconsulting.blogspot.com/2020/04/Using-Microsoft-OneDrive-2020-as-Content-Delivery-Network-CDN-for-images.html&quot; style=&quot;font-family: &amp;quot;helvetica neue&amp;quot;, arial, helvetica, sans-serif;&quot;&gt;Using OneDrive as a Content Delivery Network (CDN)&lt;/a&gt;&amp;nbsp;&lt;span face=&quot;&amp;quot;helvetica neue&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif&quot;&gt;&amp;nbsp;plausibility post.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/2094418272568711723/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/08/How-to-Get-Direct-or-Permanent-Link-for-OneDrive-Files.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/2094418272568711723'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/2094418272568711723'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/08/How-to-Get-Direct-or-Permanent-Link-for-OneDrive-Files.html' title='How to Get Direct or Permanent Link for OneDrive Files?'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://3.bp.blogspot.com/-OWqgAUJTxn0/Vp3Olyq-3PI/AAAAAAAAFCs/cvq-X9ZqaTk/s72-c/OneDriveDirectDownloadIcon.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-8285742322445989496</id><published>2023-08-23T13:04:00.003-04:00</published><updated>2023-08-23T13:06:50.998-04:00</updated><title type='text'>Open-source software (OSS) journey by an individual developer</title><content type='html'>&lt;p&gt;&lt;span face=&quot;Roboto, Helvetica, sans-serif&quot; style=&quot;  color: #111111; font-size: 16px;&quot;&gt;This is an open-sourcing software development journey by B&lt;/span&gt;&lt;span face=&quot;Roboto, Arial, sans-serif&quot; style=&quot;color: #0f0f0f; font-size: 16px; white-space: pre;&quot;&gt;runo Lowagie &lt;/span&gt;&lt;span face=&quot;Roboto, Helvetica, sans-serif&quot; style=&quot;color: #111111; font-size: 16px;&quot;&gt;the developer of&amp;nbsp;&lt;/span&gt;&lt;a h=&quot;ID=SERP,5199.2&quot; href=&quot;https://www.bing.com/ck/a?!&amp;amp;&amp;amp;p=fa36b1439ebe9132JmltdHM9MTY5Mjc0ODgwMCZpZ3VpZD0yMDI3NTNjMi1iYTc0LTY3NGUtMTllMS00MGQ2YmJkZTY2NWYmaW5zaWQ9NTE5OQ&amp;amp;ptn=3&amp;amp;hsh=3&amp;amp;fclid=202753c2-ba74-674e-19e1-40d6bbde665f&amp;amp;psq=itext&amp;amp;u=a1aHR0cHM6Ly9pdGV4dHBkZi5jb20v&amp;amp;ntb=1&quot; style=&quot;color: #4007a2; font-family: Roboto, sans-serif; text-decoration-line: none;&quot; target=&quot;_blank&quot;&gt;The Leading PDF Library for Developers | iText&lt;/a&gt;,&amp;nbsp;&lt;span face=&quot;Roboto, Helvetica, sans-serif&quot; style=&quot;color: #111111;&quot;&gt;used by Deutche Bank, Wacom and Citrix.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;iframe allowfullscreen=&quot;&quot; class=&quot;BLOG_video_class&quot; height=&quot;562&quot; src=&quot;https://www.youtube.com/embed/bZudGJw3Ck0&quot; width=&quot;676&quot; youtube-src-id=&quot;bZudGJw3Ck0&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;br /&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;


</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/8285742322445989496/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/08/open-source-software-oss-journey-by.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/8285742322445989496'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/8285742322445989496'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/08/open-source-software-oss-journey-by.html' title='Open-source software (OSS) journey by an individual developer'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/bZudGJw3Ck0/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-4828954895951411128</id><published>2023-08-21T08:00:00.003-04:00</published><updated>2023-08-21T11:13:29.802-04:00</updated><title type='text'>Microsoft PowerShell Gallery getting fake malicious packages</title><content type='html'>&lt;p&gt;This a warning worth repeating. Microsoft’s PowerShell Gallery (&lt;a href=&quot;https://www.powershellgallery.com/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://www.powershellgallery.com/&lt;/a&gt;) is being overrun with fake packages.&amp;nbsp;&lt;/p&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;float: left;&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjMDMzcL_VZGJIzvxDeX3VBHFYH1yrqGo_PuEp56aDp1NTkAq3ctZccismNceVniKjb10Jph5wzb6HeAzuqRjcc7PL7a_Q8OV70-NZkRG_AtyHZibU06advv497ZsZYUpQD0G2fOL51sbKQwMAmY54Tb-n0RZvZjiryHWxixLjMs2PL_5dbDwTNLJHnRYc/s1477/MSGallerySpoofing.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; margin-bottom: 1em; margin-left: auto; margin-right: auto;&quot;&gt;&lt;img alt=&quot;Source: https://www.bleepingcomputer.com/news/security/microsoft-powershell-gallery-vulnerable-to-spoofing-supply-chain-attacks/&quot; border=&quot;0&quot; data-original-height=&quot;636&quot; data-original-width=&quot;1477&quot; height=&quot;276&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjMDMzcL_VZGJIzvxDeX3VBHFYH1yrqGo_PuEp56aDp1NTkAq3ctZccismNceVniKjb10Jph5wzb6HeAzuqRjcc7PL7a_Q8OV70-NZkRG_AtyHZibU06advv497ZsZYUpQD0G2fOL51sbKQwMAmY54Tb-n0RZvZjiryHWxixLjMs2PL_5dbDwTNLJHnRYc/w640-h276/MSGallerySpoofing.png&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;Spot the fake package&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Lax policies for package naming on Microsoft’s PowerShell Gallery code repository allow threat actors to perform typosquatting attacks, spoof popular packages and potentially lay the ground for massive supply chain attacks.&lt;/p&gt;&lt;p&gt;PowerShell Gallery is a Microsoft-run online repository of packages uploaded by the wider PowerShell community, hosting a large number of scripts and cmdlet modules for various purposes.&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: border-box; color: #070707; font-family: Georgia, &amp;quot;times new roman&amp;quot;, Times, serif; font-size: 18px; line-height: 1.4em; margin: 15px 0px; overflow-wrap: break-word; word-break: break-word;&quot;&gt;Source:&amp;nbsp;&lt;a href=&quot;https://www.bleepingcomputer.com/news/security/microsoft-powershell-gallery-vulnerable-to-spoofing-supply-chain-attacks/&quot; style=&quot;background-color: transparent;&quot;&gt;Microsoft PowerShell Gallery vulnerable to spoofing, supply chain attacks (bleepingcomputer.com)&lt;/a&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/4828954895951411128/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/08/blog-post.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/4828954895951411128'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/4828954895951411128'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/08/blog-post.html' title='Microsoft PowerShell Gallery getting fake malicious packages'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjMDMzcL_VZGJIzvxDeX3VBHFYH1yrqGo_PuEp56aDp1NTkAq3ctZccismNceVniKjb10Jph5wzb6HeAzuqRjcc7PL7a_Q8OV70-NZkRG_AtyHZibU06advv497ZsZYUpQD0G2fOL51sbKQwMAmY54Tb-n0RZvZjiryHWxixLjMs2PL_5dbDwTNLJHnRYc/s72-w640-h276-c/MSGallerySpoofing.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-132863533006759198</id><published>2023-08-13T07:00:00.014-04:00</published><updated>2023-08-15T11:13:08.741-04:00</updated><title type='text'>Zoom can you use your data in anyway it sees fit - sneaky rewording of AI training</title><content type='html'>&lt;p&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8ZwcP3M6xx_42QUO5PmrLudvkRiBJ-Zah2-hh74BVMyt0TFyQDVhubr9xvHEC9i6YMrVz_6Z8fI2AhLOdqh4L9N5gFjQLEvi7JnWNxV6HR1ykdkLC387pLQgOndkMRM_QYs2ruN1yimv4vqX97X54XP6bTx_CGCVn7zZSf6OG4LImmftVt8sCnazezjo/s274/ZoomSpy.jpg&quot; style=&quot;clear: left; display: inline; float: left; margin-bottom: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;184&quot; data-original-width=&quot;274&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8ZwcP3M6xx_42QUO5PmrLudvkRiBJ-Zah2-hh74BVMyt0TFyQDVhubr9xvHEC9i6YMrVz_6Z8fI2AhLOdqh4L9N5gFjQLEvi7JnWNxV6HR1ykdkLC387pLQgOndkMRM_QYs2ruN1yimv4vqX97X54XP6bTx_CGCVn7zZSf6OG4LImmftVt8sCnazezjo/s16000/ZoomSpy.jpg&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;caret-color: unset; color: #222222; font-size: 1.2rem; text-decoration-line: unset;&quot;&gt;A new AI focused user agreement was released by Zoom.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;caret-color: unset; color: #222222; font-size: 1.2rem; text-decoration-line: unset;&quot;&gt;What raises alarm is the explicit mention of the company&#39;s right to use this data for machine learning and artificial intelligence, including training and tuning of algorithms and models. This effectively allows Zoom to train its AI on customer content without providing an opt-out option, a decision that is likely to spark significant debate about user privacy and consent but the added consent by default if you use the service.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; font-family: museo-sans, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif, sans-serif; font-size: 1.125rem; line-height: 1.875rem; margin: 0px 0px 16px; max-width: 620px; padding: 0px;&quot;&gt;Unless I missed it, the Zoom lawyers apparently forgot to include the full rights to your firstborn. (They’ll get to it.) They then added that:&lt;/p&gt;&lt;p style=&quot;-webkit-box-align: unset; -webkit-box-decoration-break: unset; -webkit-box-direction: unset; -webkit-box-flex: unset; -webkit-box-ordinal-group: unset; -webkit-box-orient: unset; -webkit-box-pack: unset; -webkit-box-reflect: unset; -webkit-font-smoothing: unset; -webkit-highlight: unset; -webkit-line-break: unset; -webkit-line-clamp: unset; -webkit-locale: unset; -webkit-mask-box-image: unset; -webkit-mask-composite: unset; -webkit-mask: unset; -webkit-print-color-adjust: unset; -webkit-rtl-ordering: unset; -webkit-ruby-position: unset; -webkit-tap-highlight-color: unset; -webkit-text-combine: unset; -webkit-text-decorations-in-effect: unset; -webkit-text-fill-color: unset; -webkit-text-orientation: unset; -webkit-text-security: unset; -webkit-text-stroke-color: unset; -webkit-user-drag: unset; -webkit-user-modify: unset; -webkit-writing-mode: unset; accent-color: unset; alignment-baseline: unset; animation-composition: unset; animation: unset; app-region: unset; appearance: unset; aspect-ratio: unset; backdrop-filter: unset; backface-visibility: unset; background-attachment: unset; background-blend-mode: unset; background-clip: unset; background-image: unset; background-origin: unset; background-position: unset; background-repeat: unset; background-size: unset; baseline-shift: unset; baseline-source: unset; block-size: unset; border-block: unset; border-collapse: unset; border-end-end-radius: unset; border-end-start-radius: unset; border-inline: unset; border-radius: unset; border-spacing: unset; border-start-end-radius: unset; border-start-start-radius: unset; border: unset; box-shadow: unset; box-sizing: border-box; break-after: unset; break-before: unset; break-inside: unset; buffered-rendering: unset; caption-side: unset; caret-color: unset; clear: unset; clip-path: unset; clip-rule: unset; clip: unset; color-interpolation-filters: unset; color-interpolation: unset; color-rendering: unset; color-scheme: unset; color: #222222; column-fill: unset; column-rule: unset; column-span: unset; columns: unset; contain-intrinsic-block-size: unset; contain-intrinsic-inline-size: unset; contain-intrinsic-size: unset; contain: unset; container: unset; content-visibility: unset; content: unset; counter-increment: unset; counter-reset: unset; counter-set: unset; cursor: unset; cx: unset; cy: unset; d: unset; display: revert; dominant-baseline: unset; empty-cells: unset; fill-opacity: unset; fill-rule: unset; fill: unset; filter: unset; flex-flow: unset; flex: unset; float: unset; flood-color: unset; flood-opacity: unset; font-family: CFN, Inter, sans-serif, system-ui; font-feature-settings: unset; font-kerning: unset; font-optical-sizing: unset; font-palette: unset; font-size: 1.2rem; font-stretch: unset; font-synthesis: unset; font-variant-alternates: unset; font-variant-east-asian: unset; font-variant-numeric: unset; font-variation-settings: unset; forced-color-adjust: unset; gap: unset; grid-area: unset; grid: unset; height: unset; hyphenate-character: unset; hyphenate-limit-chars: unset; hyphens: unset; image-orientation: unset; image-rendering: unset; initial-letter: unset; inline-size: unset; inset-block: unset; inset-inline: unset; inset: unset; isolation: unset; lighting-color: unset; line-break: unset; line-height: 1.55; list-style: unset; margin-block: unset; margin-bottom: unset; margin-inline: unset; margin-left: unset; margin-right: unset; margin-top: 15px; marker: unset; mask-type: unset; mask: unset; math-depth: unset; math-shift: unset; math-style: unset; max-block-size: unset; max-height: unset; max-inline-size: unset; max-width: unset; min-block-size: unset; min-height: unset; min-inline-size: unset; min-width: unset; mix-blend-mode: unset; object-fit: unset; object-position: unset; object-view-box: unset; offset: unset; opacity: unset; order: unset; outline-offset: unset; outline: unset; overflow-anchor: unset; overflow-clip-margin: unset; overflow-wrap: unset; overflow: unset; overscroll-behavior-block: unset; overscroll-behavior-inline: unset; overscroll-behavior: unset; padding-block: unset; padding-bottom: 24px; padding-inline: unset; padding-left: unset; padding-right: unset; padding-top: unset; page-orientation: unset; page: unset; paint-order: unset; perspective-origin: unset; perspective: unset; place-content: unset; place-items: unset; place-self: unset; pointer-events: unset; position: unset; quotes: unset; r: unset; resize: unset; rotate: unset; ruby-position: unset; rx: unset; ry: unset; scale: unset; scroll-behavior: unset; scroll-margin-block: unset; scroll-margin-inline: unset; scroll-margin: unset; scroll-padding-block: unset; scroll-padding-inline: unset; scroll-padding: unset; scroll-snap-align: unset; scroll-snap-stop: unset; scroll-snap-type: unset; scroll-timeline: unset; scrollbar-gutter: unset; shape-image-threshold: unset; shape-margin: unset; shape-outside: unset; shape-rendering: unset; size: unset; speak: unset; stop-color: unset; stop-opacity: unset; stroke-dasharray: unset; stroke-dashoffset: unset; stroke-linecap: unset; stroke-linejoin: unset; stroke-miterlimit: unset; stroke-opacity: unset; stroke-width: unset; stroke: unset; tab-size: unset; table-layout: unset; text-align-last: unset; text-anchor: unset; text-combine-upright: unset; text-decoration-line: unset; text-decoration-skip-ink: unset; text-emphasis-position: unset; text-emphasis: unset; text-orientation: unset; text-overflow: unset; text-rendering: unset; text-shadow: unset; text-size-adjust: unset; text-underline-offset: unset; text-underline-position: unset; touch-action: unset; transform-box: unset; transform-origin: unset; transform-style: unset; transform: unset; transition: unset; translate: unset; user-select: unset; vector-effect: unset; vertical-align: unset; view-timeline-inset: unset; view-timeline: unset; view-transition-name: unset; visibility: unset; width: unset; will-change: unset; word-break: unset; writing-mode: unset; x: unset; y: unset; z-index: unset; zoom: unset;&quot;&gt;&lt;em style=&quot;font-family: museo-sans, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif, sans-serif; font-size: 1.125rem;&quot;&gt;“&lt;span style=&quot;background-color: #fcff01;&quot;&gt;Zoom may redistribute, publish, import, access, use, store, transmit, review, disclose, preserve, extract, modify, reproduce, share, use, display, copy, distribute, translate, transcribe, create derivative works, and process Customer Content: You agree to grant and hereby grant Zoom a perpetual, worldwide, non-exclusive, royalty-free, sublicensable, and transferable license and all other rights required or necessary to redistribute, publish, import, access, use, store, transmit, review, disclose, preserve, extract, modify, reproduce, share, use, display, copy, distribute, translate, transcribe, create derivative works, and process Customer Content and to perform all acts with respect to the Customer Content as may be necessary for Zoom to provide the Services to you, including to support the Services; (ii) for the purpose of product and service development, marketing, analytics, quality assurance, machine learning, artificial intelligence, training, testing, improvement of the Services, Software, or Zoom’s other products, services, and software, or any combination thereof; and (iii) for any other purpose relating to any use or other act permitted in accordance with Section 10.3.”&amp;nbsp;&lt;/span&gt;&lt;/em&gt;&lt;/p&gt;&lt;p style=&quot;-webkit-box-align: unset; -webkit-box-decoration-break: unset; -webkit-box-direction: unset; -webkit-box-flex: unset; -webkit-box-ordinal-group: unset; -webkit-box-orient: unset; -webkit-box-pack: unset; -webkit-box-reflect: unset; -webkit-font-smoothing: unset; -webkit-highlight: unset; -webkit-line-break: unset; -webkit-line-clamp: unset; -webkit-locale: unset; -webkit-mask-box-image: unset; -webkit-mask-composite: unset; -webkit-mask: unset; -webkit-print-color-adjust: unset; -webkit-rtl-ordering: unset; -webkit-ruby-position: unset; -webkit-tap-highlight-color: unset; -webkit-text-combine: unset; -webkit-text-decorations-in-effect: unset; -webkit-text-fill-color: unset; -webkit-text-orientation: unset; -webkit-text-security: unset; -webkit-text-stroke-color: unset; -webkit-user-drag: unset; -webkit-user-modify: unset; -webkit-writing-mode: unset; accent-color: unset; alignment-baseline: unset; animation-composition: unset; animation: unset; app-region: unset; appearance: unset; aspect-ratio: unset; backdrop-filter: unset; backface-visibility: unset; background-attachment: unset; background-blend-mode: unset; background-clip: unset; background-image: unset; background-origin: unset; background-position: unset; background-repeat: unset; background-size: unset; baseline-shift: unset; baseline-source: unset; block-size: unset; border-block: unset; border-collapse: unset; border-end-end-radius: unset; border-end-start-radius: unset; border-inline: unset; border-radius: unset; border-spacing: unset; border-start-end-radius: unset; border-start-start-radius: unset; border: unset; box-shadow: unset; box-sizing: border-box; break-after: unset; break-before: unset; break-inside: unset; buffered-rendering: unset; caption-side: unset; caret-color: unset; clear: unset; clip-path: unset; clip-rule: unset; clip: unset; color-interpolation-filters: unset; color-interpolation: unset; color-rendering: unset; color-scheme: unset; color: #222222; column-fill: unset; column-rule: unset; column-span: unset; columns: unset; contain-intrinsic-block-size: unset; contain-intrinsic-inline-size: unset; contain-intrinsic-size: unset; contain: unset; container: unset; content-visibility: unset; content: unset; counter-increment: unset; counter-reset: unset; counter-set: unset; cursor: unset; cx: unset; cy: unset; d: unset; display: revert; dominant-baseline: unset; empty-cells: unset; fill-opacity: unset; fill-rule: unset; fill: unset; filter: unset; flex-flow: unset; flex: unset; float: unset; flood-color: unset; flood-opacity: unset; font-family: CFN, Inter, sans-serif, system-ui; font-feature-settings: unset; font-kerning: unset; font-optical-sizing: unset; font-palette: unset; font-size: 1.2rem; font-stretch: unset; font-synthesis: unset; font-variant-alternates: unset; font-variant-east-asian: unset; font-variant-numeric: unset; font-variation-settings: unset; forced-color-adjust: unset; gap: unset; grid-area: unset; grid: unset; height: unset; hyphenate-character: unset; hyphenate-limit-chars: unset; hyphens: unset; image-orientation: unset; image-rendering: unset; initial-letter: unset; inline-size: unset; inset-block: unset; inset-inline: unset; inset: unset; isolation: unset; lighting-color: unset; line-break: unset; line-height: 1.55; list-style: unset; margin-block: unset; margin-bottom: unset; margin-inline: unset; margin-left: unset; margin-right: unset; margin-top: 15px; marker: unset; mask-type: unset; mask: unset; math-depth: unset; math-shift: unset; math-style: unset; max-block-size: unset; max-height: unset; max-inline-size: unset; max-width: unset; min-block-size: unset; min-height: unset; min-inline-size: unset; min-width: unset; mix-blend-mode: unset; object-fit: unset; object-position: unset; object-view-box: unset; offset: unset; opacity: unset; order: unset; outline-offset: unset; outline: unset; overflow-anchor: unset; overflow-clip-margin: unset; overflow-wrap: unset; overflow: unset; overscroll-behavior-block: unset; overscroll-behavior-inline: unset; overscroll-behavior: unset; padding-block: unset; padding-bottom: 24px; padding-inline: unset; padding-left: unset; padding-right: unset; padding-top: unset; page-orientation: unset; page: unset; paint-order: unset; perspective-origin: unset; perspective: unset; place-content: unset; place-items: unset; place-self: unset; pointer-events: unset; position: unset; quotes: unset; r: unset; resize: unset; rotate: unset; ruby-position: unset; rx: unset; ry: unset; scale: unset; scroll-behavior: unset; scroll-margin-block: unset; scroll-margin-inline: unset; scroll-margin: unset; scroll-padding-block: unset; scroll-padding-inline: unset; scroll-padding: unset; scroll-snap-align: unset; scroll-snap-stop: unset; scroll-snap-type: unset; scroll-timeline: unset; scrollbar-gutter: unset; shape-image-threshold: unset; shape-margin: unset; shape-outside: unset; shape-rendering: unset; size: unset; speak: unset; stop-color: unset; stop-opacity: unset; stroke-dasharray: unset; stroke-dashoffset: unset; stroke-linecap: unset; stroke-linejoin: unset; stroke-miterlimit: unset; stroke-opacity: unset; stroke-width: unset; stroke: unset; tab-size: unset; table-layout: unset; text-align-last: unset; text-anchor: unset; text-combine-upright: unset; text-decoration-line: unset; text-decoration-skip-ink: unset; text-emphasis-position: unset; text-emphasis: unset; text-orientation: unset; text-overflow: unset; text-rendering: unset; text-shadow: unset; text-size-adjust: unset; text-underline-offset: unset; text-underline-position: unset; touch-action: unset; transform-box: unset; transform-origin: unset; transform-style: unset; transform: unset; transition: unset; translate: unset; user-select: unset; vector-effect: unset; vertical-align: unset; view-timeline-inset: unset; view-timeline: unset; view-transition-name: unset; visibility: unset; width: unset; will-change: unset; word-break: unset; writing-mode: unset; x: unset; y: unset; z-index: unset; zoom: unset;&quot;&gt;&lt;span style=&quot;caret-color: unset; font-size: 1.2rem; text-decoration-line: unset;&quot;&gt;Zoom justifies these actions as necessary for providing services to customers, supporting the services, and improving its services, software, or other products. However, the implications of such terms are far-reaching, particularly as they appear to permit Zoom to use customer data for any purpose relating to the uses or acts described in section 10.3.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;-webkit-box-align: unset; -webkit-box-decoration-break: unset; -webkit-box-direction: unset; -webkit-box-flex: unset; -webkit-box-ordinal-group: unset; -webkit-box-orient: unset; -webkit-box-pack: unset; -webkit-box-reflect: unset; -webkit-font-smoothing: unset; -webkit-highlight: unset; -webkit-line-break: unset; -webkit-line-clamp: unset; -webkit-locale: unset; -webkit-mask-box-image: unset; -webkit-mask-composite: unset; -webkit-mask: unset; -webkit-print-color-adjust: unset; -webkit-rtl-ordering: unset; -webkit-ruby-position: unset; -webkit-tap-highlight-color: unset; -webkit-text-combine: unset; -webkit-text-decorations-in-effect: unset; -webkit-text-fill-color: unset; -webkit-text-orientation: unset; -webkit-text-security: unset; -webkit-text-stroke-color: unset; -webkit-user-drag: unset; -webkit-user-modify: unset; -webkit-writing-mode: unset; accent-color: unset; alignment-baseline: unset; animation-composition: unset; animation: unset; app-region: unset; appearance: unset; aspect-ratio: unset; backdrop-filter: unset; backface-visibility: unset; background-attachment: unset; background-blend-mode: unset; background-clip: unset; background-image: unset; background-origin: unset; background-position: unset; background-repeat: unset; background-size: unset; baseline-shift: unset; baseline-source: unset; block-size: unset; border-block: unset; border-collapse: unset; border-end-end-radius: unset; border-end-start-radius: unset; border-inline: unset; border-radius: unset; border-spacing: unset; border-start-end-radius: unset; border-start-start-radius: unset; border: unset; box-shadow: unset; box-sizing: border-box; break-after: unset; break-before: unset; break-inside: unset; buffered-rendering: unset; caption-side: unset; caret-color: unset; clear: unset; clip-path: unset; clip-rule: unset; clip: unset; color-interpolation-filters: unset; color-interpolation: unset; color-rendering: unset; color-scheme: unset; column-fill: unset; column-rule: unset; column-span: unset; columns: unset; contain-intrinsic-block-size: unset; contain-intrinsic-inline-size: unset; contain-intrinsic-size: unset; contain: unset; container: unset; content-visibility: unset; content: unset; counter-increment: unset; counter-reset: unset; counter-set: unset; cursor: unset; cx: unset; cy: unset; d: unset; display: revert; dominant-baseline: unset; empty-cells: unset; fill-opacity: unset; fill-rule: unset; fill: unset; filter: unset; flex-flow: unset; flex: unset; float: unset; flood-color: unset; flood-opacity: unset; font-feature-settings: unset; font-kerning: unset; font-optical-sizing: unset; font-palette: unset; font-stretch: unset; font-synthesis: unset; font-variant-alternates: unset; font-variant-east-asian: unset; font-variant-numeric: unset; font-variation-settings: unset; forced-color-adjust: unset; gap: unset; grid-area: unset; grid: unset; height: unset; hyphenate-character: unset; hyphenate-limit-chars: unset; hyphens: unset; image-orientation: unset; image-rendering: unset; initial-letter: unset; inline-size: unset; inset-block: unset; inset-inline: unset; inset: unset; isolation: unset; lighting-color: unset; line-break: unset; line-height: 1.55; list-style: unset; margin-block: unset; margin-bottom: unset; margin-inline: unset; margin-left: unset; margin-right: unset; margin-top: 15px; marker: unset; mask-type: unset; mask: unset; math-depth: unset; math-shift: unset; math-style: unset; max-block-size: unset; max-height: unset; max-inline-size: unset; max-width: unset; min-block-size: unset; min-height: unset; min-inline-size: unset; min-width: unset; mix-blend-mode: unset; object-fit: unset; object-position: unset; object-view-box: unset; offset: unset; opacity: unset; order: unset; outline-offset: unset; outline: unset; overflow-anchor: unset; overflow-clip-margin: unset; overflow-wrap: unset; overflow: unset; overscroll-behavior-block: unset; overscroll-behavior-inline: unset; overscroll-behavior: unset; padding-block: unset; padding-bottom: 24px; padding-inline: unset; padding-left: unset; padding-right: unset; padding-top: unset; page-orientation: unset; page: unset; paint-order: unset; perspective-origin: unset; perspective: unset; place-content: unset; place-items: unset; place-self: unset; pointer-events: unset; position: unset; quotes: unset; r: unset; resize: unset; rotate: unset; ruby-position: unset; rx: unset; ry: unset; scale: unset; scroll-behavior: unset; scroll-margin-block: unset; scroll-margin-inline: unset; scroll-margin: unset; scroll-padding-block: unset; scroll-padding-inline: unset; scroll-padding: unset; scroll-snap-align: unset; scroll-snap-stop: unset; scroll-snap-type: unset; scroll-timeline: unset; scrollbar-gutter: unset; shape-image-threshold: unset; shape-margin: unset; shape-outside: unset; shape-rendering: unset; size: unset; speak: unset; stop-color: unset; stop-opacity: unset; stroke-dasharray: unset; stroke-dashoffset: unset; stroke-linecap: unset; stroke-linejoin: unset; stroke-miterlimit: unset; stroke-opacity: unset; stroke-width: unset; stroke: unset; tab-size: unset; table-layout: unset; text-align-last: unset; text-anchor: unset; text-combine-upright: unset; text-decoration-skip-ink: unset; text-emphasis-position: unset; text-emphasis: unset; text-orientation: unset; text-overflow: unset; text-rendering: unset; text-shadow: unset; text-size-adjust: unset; text-underline-offset: unset; text-underline-position: unset; touch-action: unset; transform-box: unset; transform-origin: unset; transform-style: unset; transform: unset; transition: unset; translate: unset; user-select: unset; vector-effect: unset; vertical-align: unset; view-timeline-inset: unset; view-timeline: unset; view-transition-name: unset; visibility: unset; width: unset; will-change: unset; word-break: unset; writing-mode: unset; x: unset; y: unset; z-index: unset; zoom: unset;&quot;&gt;&lt;span style=&quot;caret-color: unset; color: #222222; font-family: CFN, Inter, sans-serif, system-ui; font-size: 19.2px;&quot;&gt;After outrage - https://explore.zoom.us/en/terms/&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;-webkit-box-align: unset; -webkit-box-decoration-break: unset; -webkit-box-direction: unset; -webkit-box-flex: unset; -webkit-box-ordinal-group: unset; -webkit-box-orient: unset; -webkit-box-pack: unset; -webkit-box-reflect: unset; -webkit-font-smoothing: unset; -webkit-highlight: unset; -webkit-line-break: unset; -webkit-line-clamp: unset; -webkit-locale: unset; -webkit-mask-box-image: unset; -webkit-mask-composite: unset; -webkit-mask: unset; -webkit-print-color-adjust: unset; -webkit-rtl-ordering: unset; -webkit-ruby-position: unset; -webkit-tap-highlight-color: unset; -webkit-text-combine: unset; -webkit-text-decorations-in-effect: unset; -webkit-text-fill-color: unset; -webkit-text-orientation: unset; -webkit-text-security: unset; -webkit-text-stroke-color: unset; -webkit-user-drag: unset; -webkit-user-modify: unset; -webkit-writing-mode: unset; accent-color: unset; alignment-baseline: unset; animation-composition: unset; animation: unset; app-region: unset; appearance: unset; aspect-ratio: unset; backdrop-filter: unset; backface-visibility: unset; background-attachment: unset; background-blend-mode: unset; background-clip: unset; background-image: unset; background-origin: unset; background-position: unset; background-repeat: unset; background-size: unset; baseline-shift: unset; baseline-source: unset; block-size: unset; border-block: unset; border-collapse: unset; border-end-end-radius: unset; border-end-start-radius: unset; border-inline: unset; border-radius: unset; border-spacing: unset; border-start-end-radius: unset; border-start-start-radius: unset; border: unset; box-shadow: unset; box-sizing: border-box; break-after: unset; break-before: unset; break-inside: unset; buffered-rendering: unset; caption-side: unset; caret-color: unset; clear: unset; clip-path: unset; clip-rule: unset; clip: unset; color-interpolation-filters: unset; color-interpolation: unset; color-rendering: unset; color-scheme: unset; column-fill: unset; column-rule: unset; column-span: unset; columns: unset; contain-intrinsic-block-size: unset; contain-intrinsic-inline-size: unset; contain-intrinsic-size: unset; contain: unset; container: unset; content-visibility: unset; content: unset; counter-increment: unset; counter-reset: unset; counter-set: unset; cursor: unset; cx: unset; cy: unset; d: unset; display: revert; dominant-baseline: unset; empty-cells: unset; fill-opacity: unset; fill-rule: unset; fill: unset; filter: unset; flex-flow: unset; flex: unset; float: unset; flood-color: unset; flood-opacity: unset; font-feature-settings: unset; font-kerning: unset; font-optical-sizing: unset; font-palette: unset; font-stretch: unset; font-synthesis: unset; font-variant-alternates: unset; font-variant-east-asian: unset; font-variant-numeric: unset; font-variation-settings: unset; forced-color-adjust: unset; gap: unset; grid-area: unset; grid: unset; height: unset; hyphenate-character: unset; hyphenate-limit-chars: unset; hyphens: unset; image-orientation: unset; image-rendering: unset; initial-letter: unset; inline-size: unset; inset-block: unset; inset-inline: unset; inset: unset; isolation: unset; lighting-color: unset; line-break: unset; line-height: 1.55; list-style: unset; margin-block: unset; margin-bottom: unset; margin-inline: unset; margin-left: unset; margin-right: unset; margin-top: 15px; marker: unset; mask-type: unset; mask: unset; math-depth: unset; math-shift: unset; math-style: unset; max-block-size: unset; max-height: unset; max-inline-size: unset; max-width: unset; min-block-size: unset; min-height: unset; min-inline-size: unset; min-width: unset; mix-blend-mode: unset; object-fit: unset; object-position: unset; object-view-box: unset; offset: unset; opacity: unset; order: unset; outline-offset: unset; outline: unset; overflow-anchor: unset; overflow-clip-margin: unset; overflow-wrap: unset; overflow: unset; overscroll-behavior-block: unset; overscroll-behavior-inline: unset; overscroll-behavior: unset; padding-block: unset; padding-bottom: 24px; padding-inline: unset; padding-left: unset; padding-right: unset; padding-top: unset; page-orientation: unset; page: unset; paint-order: unset; perspective-origin: unset; perspective: unset; place-content: unset; place-items: unset; place-self: unset; pointer-events: unset; position: unset; quotes: unset; r: unset; resize: unset; rotate: unset; ruby-position: unset; rx: unset; ry: unset; scale: unset; scroll-behavior: unset; scroll-margin-block: unset; scroll-margin-inline: unset; scroll-margin: unset; scroll-padding-block: unset; scroll-padding-inline: unset; scroll-padding: unset; scroll-snap-align: unset; scroll-snap-stop: unset; scroll-snap-type: unset; scroll-timeline: unset; scrollbar-gutter: unset; shape-image-threshold: unset; shape-margin: unset; shape-outside: unset; shape-rendering: unset; size: unset; speak: unset; stop-color: unset; stop-opacity: unset; stroke-dasharray: unset; stroke-dashoffset: unset; stroke-linecap: unset; stroke-linejoin: unset; stroke-miterlimit: unset; stroke-opacity: unset; stroke-width: unset; stroke: unset; tab-size: unset; table-layout: unset; text-align-last: unset; text-anchor: unset; text-combine-upright: unset; text-decoration-skip-ink: unset; text-emphasis-position: unset; text-emphasis: unset; text-orientation: unset; text-overflow: unset; text-rendering: unset; text-shadow: unset; text-size-adjust: unset; text-underline-offset: unset; text-underline-position: unset; touch-action: unset; transform-box: unset; transform-origin: unset; transform-style: unset; transform: unset; transition: unset; translate: unset; user-select: unset; vector-effect: unset; vertical-align: unset; view-timeline-inset: unset; view-timeline: unset; view-transition-name: unset; visibility: unset; width: unset; will-change: unset; word-break: unset; writing-mode: unset; x: unset; y: unset; z-index: unset; zoom: unset;&quot;&gt;&lt;span style=&quot;caret-color: unset; color: #222222; font-family: CFN, Inter, sans-serif, system-ui; font-size: 19.2px;&quot;&gt;10.2 Permitted Uses and Customer License Grant. Zoom will only access, process or use Customer Content for the following reasons (the “Permitted Uses”): (i) consistent with this Agreement and as required to perform our obligations and provide the Services; (ii) in accordance with our Privacy Statement; (iii) as authorized or instructed by you; (iv) as required by Law; or (v) for legal, safety or security purposes, including enforcing our Acceptable Use Guidelines. &lt;span style=&quot;background-color: #fcff01;&quot;&gt;You grant Zoom a perpetual, worldwide, non-exclusive, royalty-free, sublicensable, and transferable license and all other rights required or necessary for the &lt;/span&gt;&lt;span style=&quot;background-color: #ffa400;&quot;&gt;Permitted Use.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;-webkit-box-align: unset; -webkit-box-decoration-break: unset; -webkit-box-direction: unset; -webkit-box-flex: unset; -webkit-box-ordinal-group: unset; -webkit-box-orient: unset; -webkit-box-pack: unset; -webkit-box-reflect: unset; -webkit-font-smoothing: unset; -webkit-highlight: unset; -webkit-line-break: unset; -webkit-line-clamp: unset; -webkit-locale: unset; -webkit-mask-box-image: unset; -webkit-mask-composite: unset; -webkit-mask: unset; -webkit-print-color-adjust: unset; -webkit-rtl-ordering: unset; -webkit-ruby-position: unset; -webkit-tap-highlight-color: unset; -webkit-text-combine: unset; -webkit-text-decorations-in-effect: unset; -webkit-text-fill-color: unset; -webkit-text-orientation: unset; -webkit-text-security: unset; -webkit-text-stroke-color: unset; -webkit-user-drag: unset; -webkit-user-modify: unset; -webkit-writing-mode: unset; accent-color: unset; alignment-baseline: unset; animation-composition: unset; animation: unset; app-region: unset; appearance: unset; aspect-ratio: unset; backdrop-filter: unset; backface-visibility: unset; background-attachment: unset; background-blend-mode: unset; background-clip: unset; background-image: unset; background-origin: unset; background-position: unset; background-repeat: unset; background-size: unset; baseline-shift: unset; baseline-source: unset; block-size: unset; border-block: unset; border-collapse: unset; border-end-end-radius: unset; border-end-start-radius: unset; border-inline: unset; border-radius: unset; border-spacing: unset; border-start-end-radius: unset; border-start-start-radius: unset; border: unset; box-shadow: unset; box-sizing: border-box; break-after: unset; break-before: unset; break-inside: unset; buffered-rendering: unset; caption-side: unset; caret-color: unset; clear: unset; clip-path: unset; clip-rule: unset; clip: unset; color-interpolation-filters: unset; color-interpolation: unset; color-rendering: unset; color-scheme: unset; color: #222222; column-fill: unset; column-rule: unset; column-span: unset; columns: unset; contain-intrinsic-block-size: unset; contain-intrinsic-inline-size: unset; contain-intrinsic-size: unset; contain: unset; container: unset; content-visibility: unset; content: unset; counter-increment: unset; counter-reset: unset; counter-set: unset; cursor: unset; cx: unset; cy: unset; d: unset; display: revert; dominant-baseline: unset; empty-cells: unset; fill-opacity: unset; fill-rule: unset; fill: unset; filter: unset; flex-flow: unset; flex: unset; float: unset; flood-color: unset; flood-opacity: unset; font-family: CFN, Inter, sans-serif, system-ui; font-feature-settings: unset; font-kerning: unset; font-optical-sizing: unset; font-palette: unset; font-size: 1.2rem; font-stretch: unset; font-synthesis: unset; font-variant-alternates: unset; font-variant-east-asian: unset; font-variant-numeric: unset; font-variation-settings: unset; forced-color-adjust: unset; gap: unset; grid-area: unset; grid: unset; height: unset; hyphenate-character: unset; hyphenate-limit-chars: unset; hyphens: unset; image-orientation: unset; image-rendering: unset; initial-letter: unset; inline-size: unset; inset-block: unset; inset-inline: unset; inset: unset; isolation: unset; lighting-color: unset; line-break: unset; line-height: 1.55; list-style: unset; margin-block: unset; margin-bottom: unset; margin-inline: unset; margin-left: unset; margin-right: unset; margin-top: 15px; marker: unset; mask-type: unset; mask: unset; math-depth: unset; math-shift: unset; math-style: unset; max-block-size: unset; max-height: unset; max-inline-size: unset; max-width: unset; min-block-size: unset; min-height: unset; min-inline-size: unset; min-width: unset; mix-blend-mode: unset; object-fit: unset; object-position: unset; object-view-box: unset; offset: unset; opacity: unset; order: unset; outline-offset: unset; outline: unset; overflow-anchor: unset; overflow-clip-margin: unset; overflow-wrap: unset; overflow: unset; overscroll-behavior-block: unset; overscroll-behavior-inline: unset; overscroll-behavior: unset; padding-block: unset; padding-bottom: 24px; padding-inline: unset; padding-left: unset; padding-right: unset; padding-top: unset; page-orientation: unset; page: unset; paint-order: unset; perspective-origin: unset; perspective: unset; place-content: unset; place-items: unset; place-self: unset; pointer-events: unset; position: unset; quotes: unset; r: unset; resize: unset; rotate: unset; ruby-position: unset; rx: unset; ry: unset; scale: unset; scroll-behavior: unset; scroll-margin-block: unset; scroll-margin-inline: unset; scroll-margin: unset; scroll-padding-block: unset; scroll-padding-inline: unset; scroll-padding: unset; scroll-snap-align: unset; scroll-snap-stop: unset; scroll-snap-type: unset; scroll-timeline: unset; scrollbar-gutter: unset; shape-image-threshold: unset; shape-margin: unset; shape-outside: unset; shape-rendering: unset; size: unset; speak: unset; stop-color: unset; stop-opacity: unset; stroke-dasharray: unset; stroke-dashoffset: unset; stroke-linecap: unset; stroke-linejoin: unset; stroke-miterlimit: unset; stroke-opacity: unset; stroke-width: unset; stroke: unset; tab-size: unset; table-layout: unset; text-align-last: unset; text-anchor: unset; text-combine-upright: unset; text-decoration-line: unset; text-decoration-skip-ink: unset; text-emphasis-position: unset; text-emphasis: unset; text-orientation: unset; text-overflow: unset; text-rendering: unset; text-shadow: unset; text-size-adjust: unset; text-underline-offset: unset; text-underline-position: unset; touch-action: unset; transform-box: unset; transform-origin: unset; transform-style: unset; transform: unset; transition: unset; translate: unset; user-select: unset; vector-effect: unset; vertical-align: unset; view-timeline-inset: unset; view-timeline: unset; view-transition-name: unset; visibility: unset; width: unset; will-change: unset; word-break: unset; writing-mode: unset; x: unset; y: unset; z-index: unset; zoom: unset;&quot;&gt;&lt;span style=&quot;caret-color: unset; font-size: 1.2rem; text-decoration-line: unset;&quot;&gt;Permitted Use, another rabbit hole.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;-webkit-box-align: unset; -webkit-box-decoration-break: unset; -webkit-box-direction: unset; -webkit-box-flex: unset; -webkit-box-ordinal-group: unset; -webkit-box-orient: unset; -webkit-box-pack: unset; -webkit-box-reflect: unset; -webkit-font-smoothing: unset; -webkit-highlight: unset; -webkit-line-break: unset; -webkit-line-clamp: unset; -webkit-locale: unset; -webkit-mask-box-image: unset; -webkit-mask-composite: unset; -webkit-mask: unset; -webkit-print-color-adjust: unset; -webkit-rtl-ordering: unset; -webkit-ruby-position: unset; -webkit-tap-highlight-color: unset; -webkit-text-combine: unset; -webkit-text-decorations-in-effect: unset; -webkit-text-fill-color: unset; -webkit-text-orientation: unset; -webkit-text-security: unset; -webkit-text-stroke-color: unset; -webkit-user-drag: unset; -webkit-user-modify: unset; -webkit-writing-mode: unset; accent-color: unset; alignment-baseline: unset; animation-composition: unset; animation: unset; app-region: unset; appearance: unset; aspect-ratio: unset; backdrop-filter: unset; backface-visibility: unset; background-attachment: unset; background-blend-mode: unset; background-clip: unset; background-image: unset; background-origin: unset; background-position: unset; background-repeat: unset; background-size: unset; baseline-shift: unset; baseline-source: unset; block-size: unset; border-block: unset; border-collapse: unset; border-end-end-radius: unset; border-end-start-radius: unset; border-inline: unset; border-radius: unset; border-spacing: unset; border-start-end-radius: unset; border-start-start-radius: unset; border: unset; box-shadow: unset; box-sizing: border-box; break-after: unset; break-before: unset; break-inside: unset; buffered-rendering: unset; caption-side: unset; caret-color: unset; clear: unset; clip-path: unset; clip-rule: unset; clip: unset; color-interpolation-filters: unset; color-interpolation: unset; color-rendering: unset; color-scheme: unset; color: #222222; column-fill: unset; column-rule: unset; column-span: unset; columns: unset; contain-intrinsic-block-size: unset; contain-intrinsic-inline-size: unset; contain-intrinsic-size: unset; contain: unset; container: unset; content-visibility: unset; content: unset; counter-increment: unset; counter-reset: unset; counter-set: unset; cursor: unset; cx: unset; cy: unset; d: unset; display: revert; dominant-baseline: unset; empty-cells: unset; fill-opacity: unset; fill-rule: unset; fill: unset; filter: unset; flex-flow: unset; flex: unset; float: unset; flood-color: unset; flood-opacity: unset; font-family: CFN, Inter, sans-serif, system-ui; font-feature-settings: unset; font-kerning: unset; font-optical-sizing: unset; font-palette: unset; font-size: 1.2rem; font-stretch: unset; font-synthesis: unset; font-variant-alternates: unset; font-variant-east-asian: unset; font-variant-numeric: unset; font-variation-settings: unset; forced-color-adjust: unset; gap: unset; grid-area: unset; grid: unset; height: unset; hyphenate-character: unset; hyphenate-limit-chars: unset; hyphens: unset; image-orientation: unset; image-rendering: unset; initial-letter: unset; inline-size: unset; inset-block: unset; inset-inline: unset; inset: unset; isolation: unset; lighting-color: unset; line-break: unset; line-height: 1.55; list-style: unset; margin-block: unset; margin-bottom: unset; margin-inline: unset; margin-left: unset; margin-right: unset; margin-top: 15px; marker: unset; mask-type: unset; mask: unset; math-depth: unset; math-shift: unset; math-style: unset; max-block-size: unset; max-height: unset; max-inline-size: unset; max-width: unset; min-block-size: unset; min-height: unset; min-inline-size: unset; min-width: unset; mix-blend-mode: unset; object-fit: unset; object-position: unset; object-view-box: unset; offset: unset; opacity: unset; order: unset; outline-offset: unset; outline: unset; overflow-anchor: unset; overflow-clip-margin: unset; overflow-wrap: unset; overflow: unset; overscroll-behavior-block: unset; overscroll-behavior-inline: unset; overscroll-behavior: unset; padding-block: unset; padding-bottom: 24px; padding-inline: unset; padding-left: unset; padding-right: unset; padding-top: unset; page-orientation: unset; page: unset; paint-order: unset; perspective-origin: unset; perspective: unset; place-content: unset; place-items: unset; place-self: unset; pointer-events: unset; position: unset; quotes: unset; r: unset; resize: unset; rotate: unset; ruby-position: unset; rx: unset; ry: unset; scale: unset; scroll-behavior: unset; scroll-margin-block: unset; scroll-margin-inline: unset; scroll-margin: unset; scroll-padding-block: unset; scroll-padding-inline: unset; scroll-padding: unset; scroll-snap-align: unset; scroll-snap-stop: unset; scroll-snap-type: unset; scroll-timeline: unset; scrollbar-gutter: unset; shape-image-threshold: unset; shape-margin: unset; shape-outside: unset; shape-rendering: unset; size: unset; speak: unset; stop-color: unset; stop-opacity: unset; stroke-dasharray: unset; stroke-dashoffset: unset; stroke-linecap: unset; stroke-linejoin: unset; stroke-miterlimit: unset; stroke-opacity: unset; stroke-width: unset; stroke: unset; tab-size: unset; table-layout: unset; text-align-last: unset; text-anchor: unset; text-combine-upright: unset; text-decoration-line: unset; text-decoration-skip-ink: unset; text-emphasis-position: unset; text-emphasis: unset; text-orientation: unset; text-overflow: unset; text-rendering: unset; text-shadow: unset; text-size-adjust: unset; text-underline-offset: unset; text-underline-position: unset; touch-action: unset; transform-box: unset; transform-origin: unset; transform-style: unset; transform: unset; transition: unset; translate: unset; user-select: unset; vector-effect: unset; vertical-align: unset; view-timeline-inset: unset; view-timeline: unset; view-transition-name: unset; visibility: unset; width: unset; will-change: unset; word-break: unset; writing-mode: unset; x: unset; y: unset; z-index: unset; zoom: unset;&quot;&gt;&lt;span style=&quot;caret-color: unset; font-size: 1.2rem; text-decoration-line: unset;&quot;&gt;Source:&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;https://www.computerworld.com/article/3704489/zoom-goes-for-a-blatant-genai-data-grab-enterprises-beware.html&quot; style=&quot;font-size: 1.2rem;&quot;&gt;Zoom goes for a blatant genAI data grab; enterprises, beware | Computerworld&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;-webkit-box-align: unset; -webkit-box-decoration-break: unset; -webkit-box-direction: unset; -webkit-box-flex: unset; -webkit-box-ordinal-group: unset; -webkit-box-orient: unset; -webkit-box-pack: unset; -webkit-box-reflect: unset; -webkit-font-smoothing: unset; -webkit-highlight: unset; -webkit-line-break: unset; -webkit-line-clamp: unset; -webkit-locale: unset; -webkit-mask-box-image: unset; -webkit-mask-composite: unset; -webkit-mask: unset; -webkit-print-color-adjust: unset; -webkit-rtl-ordering: unset; -webkit-ruby-position: unset; -webkit-tap-highlight-color: unset; -webkit-text-combine: unset; -webkit-text-decorations-in-effect: unset; -webkit-text-fill-color: unset; -webkit-text-orientation: unset; -webkit-text-security: unset; -webkit-text-stroke-color: unset; -webkit-user-drag: unset; -webkit-user-modify: unset; -webkit-writing-mode: unset; accent-color: unset; alignment-baseline: unset; animation-composition: unset; animation: unset; app-region: unset; appearance: unset; aspect-ratio: unset; backdrop-filter: unset; backface-visibility: unset; background-attachment: unset; background-blend-mode: unset; background-clip: unset; background-image: unset; background-origin: unset; background-position: unset; background-repeat: unset; background-size: unset; baseline-shift: unset; baseline-source: unset; block-size: unset; border-block: unset; border-collapse: unset; border-end-end-radius: unset; border-end-start-radius: unset; border-inline: unset; border-radius: unset; border-spacing: unset; border-start-end-radius: unset; border-start-start-radius: unset; border: unset; box-shadow: unset; box-sizing: border-box; break-after: unset; break-before: unset; break-inside: unset; buffered-rendering: unset; caption-side: unset; caret-color: unset; clear: unset; clip-path: unset; clip-rule: unset; clip: unset; color-interpolation-filters: unset; color-interpolation: unset; color-rendering: unset; color-scheme: unset; color: #222222; column-fill: unset; column-rule: unset; column-span: unset; columns: unset; contain-intrinsic-block-size: unset; contain-intrinsic-inline-size: unset; contain-intrinsic-size: unset; contain: unset; container: unset; content-visibility: unset; content: unset; counter-increment: unset; counter-reset: unset; counter-set: unset; cursor: unset; cx: unset; cy: unset; d: unset; display: revert; dominant-baseline: unset; empty-cells: unset; fill-opacity: unset; fill-rule: unset; fill: unset; filter: unset; flex-flow: unset; flex: unset; float: unset; flood-color: unset; flood-opacity: unset; font-family: CFN, Inter, sans-serif, system-ui; font-feature-settings: unset; font-kerning: unset; font-optical-sizing: unset; font-palette: unset; font-size: 1.2rem; font-stretch: unset; font-synthesis: unset; font-variant-alternates: unset; font-variant-east-asian: unset; font-variant-numeric: unset; font-variation-settings: unset; forced-color-adjust: unset; gap: unset; grid-area: unset; grid: unset; height: unset; hyphenate-character: unset; hyphenate-limit-chars: unset; hyphens: unset; image-orientation: unset; image-rendering: unset; initial-letter: unset; inline-size: unset; inset-block: unset; inset-inline: unset; inset: unset; isolation: unset; lighting-color: unset; line-break: unset; line-height: 1.55; list-style: unset; margin-block: unset; margin-bottom: unset; margin-inline: unset; margin-left: unset; margin-right: unset; margin-top: 15px; marker: unset; mask-type: unset; mask: unset; math-depth: unset; math-shift: unset; math-style: unset; max-block-size: unset; max-height: unset; max-inline-size: unset; max-width: unset; min-block-size: unset; min-height: unset; min-inline-size: unset; min-width: unset; mix-blend-mode: unset; object-fit: unset; object-position: unset; object-view-box: unset; offset: unset; opacity: unset; order: unset; outline-offset: unset; outline: unset; overflow-anchor: unset; overflow-clip-margin: unset; overflow-wrap: unset; overflow: unset; overscroll-behavior-block: unset; overscroll-behavior-inline: unset; overscroll-behavior: unset; padding-block: unset; padding-bottom: 24px; padding-inline: unset; padding-left: unset; padding-right: unset; padding-top: unset; page-orientation: unset; page: unset; paint-order: unset; perspective-origin: unset; perspective: unset; place-content: unset; place-items: unset; place-self: unset; pointer-events: unset; position: unset; quotes: unset; r: unset; resize: unset; rotate: unset; ruby-position: unset; rx: unset; ry: unset; scale: unset; scroll-behavior: unset; scroll-margin-block: unset; scroll-margin-inline: unset; scroll-margin: unset; scroll-padding-block: unset; scroll-padding-inline: unset; scroll-padding: unset; scroll-snap-align: unset; scroll-snap-stop: unset; scroll-snap-type: unset; scroll-timeline: unset; scrollbar-gutter: unset; shape-image-threshold: unset; shape-margin: unset; shape-outside: unset; shape-rendering: unset; size: unset; speak: unset; stop-color: unset; stop-opacity: unset; stroke-dasharray: unset; stroke-dashoffset: unset; stroke-linecap: unset; stroke-linejoin: unset; stroke-miterlimit: unset; stroke-opacity: unset; stroke-width: unset; stroke: unset; tab-size: unset; table-layout: unset; text-align-last: unset; text-anchor: unset; text-combine-upright: unset; text-decoration-line: unset; text-decoration-skip-ink: unset; text-emphasis-position: unset; text-emphasis: unset; text-orientation: unset; text-overflow: unset; text-rendering: unset; text-shadow: unset; text-size-adjust: unset; text-underline-offset: unset; text-underline-position: unset; touch-action: unset; transform-box: unset; transform-origin: unset; transform-style: unset; transform: unset; transition: unset; translate: unset; user-select: unset; vector-effect: unset; vertical-align: unset; view-timeline-inset: unset; view-timeline: unset; view-transition-name: unset; visibility: unset; width: unset; will-change: unset; word-break: unset; writing-mode: unset; x: unset; y: unset; z-index: unset; zoom: unset;&quot;&gt;&lt;br /&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/132863533006759198/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/08/Zoom-can-you-use-your-data-in-anyway-it-sees-fit-2D-sneaky-rewording-of-AI-training.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/132863533006759198'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/132863533006759198'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/08/Zoom-can-you-use-your-data-in-anyway-it-sees-fit-2D-sneaky-rewording-of-AI-training.html' title='Zoom can you use your data in anyway it sees fit - sneaky rewording of AI training'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8ZwcP3M6xx_42QUO5PmrLudvkRiBJ-Zah2-hh74BVMyt0TFyQDVhubr9xvHEC9i6YMrVz_6Z8fI2AhLOdqh4L9N5gFjQLEvi7JnWNxV6HR1ykdkLC387pLQgOndkMRM_QYs2ruN1yimv4vqX97X54XP6bTx_CGCVn7zZSf6OG4LImmftVt8sCnazezjo/s72-c/ZoomSpy.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-1631935481435592874</id><published>2023-08-10T07:00:00.002-04:00</published><updated>2023-08-11T23:20:01.841-04:00</updated><title type='text'>Using icacls for long paths</title><content type='html'>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZnaPxFHwfeBqYp-olY3-MOgd8n-ycHO53mxiAVguBP4xaPFvM31Fk0NcCC4W4O8bWHtniN7959dBFE0ay3kmurYvmuVA6wRhwwoRcaGxOo-GTuMlUbiBz2Gf1vFBvcGRWTO362loRLU65TUQS1-c8pO0QOUicZ6Lox92xLDhyg28SCpA_kzQ7y5WHH3g/s463/icacls_grant.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;190&quot; data-original-width=&quot;463&quot; height=&quot;262&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZnaPxFHwfeBqYp-olY3-MOgd8n-ycHO53mxiAVguBP4xaPFvM31Fk0NcCC4W4O8bWHtniN7959dBFE0ay3kmurYvmuVA6wRhwwoRcaGxOo-GTuMlUbiBz2Gf1vFBvcGRWTO362loRLU65TUQS1-c8pO0QOUicZ6Lox92xLDhyg28SCpA_kzQ7y5WHH3g/w640-h262/icacls_grant.png&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;p&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Here&#39;s a tip using icalcs for long paths (&amp;gt;260), use &lt;span style=&quot;font-family: courier;&quot;&gt;&quot;\\?\&quot;&lt;/span&gt; to prefix your mapped drive.&lt;/p&gt;&lt;p&gt;&lt;!--HTML generated using hilite.me--&gt;&lt;/p&gt;&lt;div style=&quot;background: rgb(248, 248, 248); border-color: gray; border-image: initial; border-style: solid; border-width: 0.1em 0.1em 0.1em 0.8em; border: solid gray; overflow: auto; padding: 0.2em 0.6em; width: auto;&quot;&gt;&lt;pre style=&quot;line-height: 125%; margin: 0px;&quot;&gt;&lt;span style=&quot;color: black;&quot;&gt;icalcs&lt;/span&gt; &lt;span style=&quot;color: #4e9a06;&quot;&gt;&quot;\\?\N:\Books\_ePubs\Tao Te Ching _ Annotated &amp;amp; Explained.pdf&quot;&lt;/span&gt; &lt;span style=&quot;color: #ce5c00; font-weight: bold;&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;T&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;Official Documentation here&lt;br /&gt;https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/icacls&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/1631935481435592874/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/08/Using-icacls-for-long-paths.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/1631935481435592874'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/1631935481435592874'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/08/Using-icacls-for-long-paths.html' title='Using icacls for long paths'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZnaPxFHwfeBqYp-olY3-MOgd8n-ycHO53mxiAVguBP4xaPFvM31Fk0NcCC4W4O8bWHtniN7959dBFE0ay3kmurYvmuVA6wRhwwoRcaGxOo-GTuMlUbiBz2Gf1vFBvcGRWTO362loRLU65TUQS1-c8pO0QOUicZ6Lox92xLDhyg28SCpA_kzQ7y5WHH3g/s72-w640-h262-c/icacls_grant.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-5232853030390708538</id><published>2023-07-22T07:00:00.003-04:00</published><updated>2023-07-22T12:37:26.598-04:00</updated><title type='text'>ICloud phishing email with subject All Your Photos Will Be Deleted</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;For the record, this is a &lt;span style=&quot;background-color: white;&quot;&gt;iCloud&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span face=&quot;&quot;&gt;&lt;span style=&quot;color: red;&quot;&gt;phishing email&lt;/span&gt;&lt;/span&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;attempt that is recently going around, with subject&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&quot;All Your Photos Will Be Deleted&quot;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;What to do? &amp;nbsp;&lt;/span&gt;&lt;b&gt;Report them&lt;/b&gt;&lt;span face=&quot;&quot;&gt;, goto bottom of page.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica; font-size: small;&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;center&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoNormalTable&quot; style=&quot;background-color: white; width: 600px;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;padding: 0in; width: 600px;&quot; valign=&quot;top&quot; width=&quot;100%&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;&lt;b&gt;From&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;URGENTE &amp;lt;otrvrqgqhyjhfxv@trifecta.net&amp;gt;&lt;br /&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;All Your Photos Will Be Deleted!&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;span style=&quot;font-family: verdana;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;span style=&quot;font-family: verdana;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhnoj4OjzK7WtDhdiESTb86MKHYL-8SKIzjLwceLUZGpKnxF46eNJjhM50tm3h1jAUawmzVFRnS-cXPJRce4woYojtsQlm3LgxVHmyYGljN9jSLIdHam54XmKihdbw4o31lqEYYX0XBsNMj0EDB_p-Tq2VYdJtOKhQvoU_Uwbq1Xm5pSElzfZJFJdiGIt4/s1034/ICloudPhishingEmailJuly2023.JPG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;1034&quot; data-original-width=&quot;686&quot; height=&quot;640&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhnoj4OjzK7WtDhdiESTb86MKHYL-8SKIzjLwceLUZGpKnxF46eNJjhM50tm3h1jAUawmzVFRnS-cXPJRce4woYojtsQlm3LgxVHmyYGljN9jSLIdHam54XmKihdbw4o31lqEYYX0XBsNMj0EDB_p-Tq2VYdJtOKhQvoU_Uwbq1Xm5pSElzfZJFJdiGIt4/w424-h640/ICloudPhishingEmailJuly2023.JPG&quot; width=&quot;424&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;PHISHING LINKs;&lt;/span&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&lt;br /&gt;1.&amp;nbsp;&lt;span style=&quot;color: #2b00fe; font-family: helvetica;&quot;&gt;http://prod1.redesign.vidanthealth.com/xxxxx.xxx?xxxxxxxxxxxxxxx&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style=&quot;font-family: arial; font-size: medium;&quot;&gt;&lt;span style=&quot;font-weight: 400;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;div&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;How to tell this is a Phishing email ?&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Check email address in full, if it&#39;s not from originating company then it&#39;s phishing.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Hover over all links in email, if it&#39;s not from the&amp;nbsp; company&#39;s website then forget it.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;The best way is to&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;How to examine Email Message Source?&lt;/span&gt;&lt;/h3&gt;
&lt;span face=&quot;&quot;&gt;Now let&#39;s look at message source&lt;/span&gt;&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Actions-&amp;gt;View Message Source.&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down arrow to top right)-&amp;gt;Show original.&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;span face=&quot;&quot;&gt;Check for suspicious links, anything that does not originate from apple.com.&lt;/span&gt;&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report Phishing Email (not as Spam)&lt;/span&gt;&lt;/h3&gt;
&lt;div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Junk (at Top)-&amp;gt;Phishing Scam&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down-arrow to top right)-&amp;gt;Report Phishing&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;span style=&quot;background-color: lime;&quot;&gt;Report Phishing&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h4&gt;
&lt;span face=&quot;&quot; style=&quot;font-weight: normal;&quot;&gt;If you have received this email take further&amp;nbsp;&lt;/span&gt;&lt;/h4&gt;
&lt;h3&gt;
&lt;ol style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;li&gt;&lt;span face=&quot;&quot; style=&quot;color: #0000ee;&quot;&gt;&lt;u&gt;&lt;a href=&quot;https://www.google.com/safebrowsing/report_phish/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://www.google.com/safebrowsing/report_phish/&lt;/a&gt;&lt;/u&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;/div&gt;
&lt;/h3&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report phishing at Microsoft and government agencies&lt;/span&gt;&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&quot; style=&quot;font-family: &amp;quot;trebuchet ms&amp;quot;, sans-serif;&quot;&gt;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/5232853030390708538/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/07/ICloud-phishing-email-with-subject-All-Your-Photos-Will-Be-Deleted.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/5232853030390708538'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/5232853030390708538'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/07/ICloud-phishing-email-with-subject-All-Your-Photos-Will-Be-Deleted.html' title='ICloud phishing email with subject All Your Photos Will Be Deleted'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhnoj4OjzK7WtDhdiESTb86MKHYL-8SKIzjLwceLUZGpKnxF46eNJjhM50tm3h1jAUawmzVFRnS-cXPJRce4woYojtsQlm3LgxVHmyYGljN9jSLIdHam54XmKihdbw4o31lqEYYX0XBsNMj0EDB_p-Tq2VYdJtOKhQvoU_Uwbq1Xm5pSElzfZJFJdiGIt4/s72-w424-h640-c/ICloudPhishingEmailJuly2023.JPG" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-8558268704268134930</id><published>2023-07-20T07:30:00.001-04:00</published><updated>2023-07-20T20:55:54.813-04:00</updated><title type='text'>McDonalds phishing email with subject Special: Take a $1000 McDonalds Gift Card</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;For the record, this is a&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span style=&quot;background-color: white;&quot;&gt;McDonalds&lt;/span&gt;&amp;nbsp;&lt;/span&gt;&lt;span face=&quot;&quot;&gt;&lt;span style=&quot;color: red;&quot;&gt;phishing email&lt;/span&gt;&lt;/span&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;attempt that is recently going around, with subject&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&quot;&lt;span style=&quot;background-color: white;&quot;&gt;Special: Take a $1000 McDonalds Gift Card!&lt;/span&gt;&quot;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;What to do? &amp;nbsp;&lt;/span&gt;&lt;b&gt;Report them&lt;/b&gt;&lt;span face=&quot;&quot;&gt;, goto bottom of page.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica; font-size: small;&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;center&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoNormalTable&quot; style=&quot;background-color: white; width: 600px;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;padding: 0in; width: 600px;&quot; valign=&quot;top&quot; width=&quot;100%&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;&lt;b&gt;From&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;McDonalds &amp;lt;hrone@hronecloud.com&amp;gt;&lt;br /&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;Special: Take a $1000 McDonalds Gift Card!&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;span style=&quot;font-family: verdana;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;span style=&quot;font-family: verdana;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjH47ZEBEN1MZT7Lf9oDjAFdBdyPnAZ9YSV5xYknMBIj3rRhDlvEPPyy7j5HJaIYAbde3VAygryeur-0pWrJUySpYKFldqi9tH3JlQYsLpvAHv4kvweKc6lMEClDMbz3Pbed0tCChxpGiQLMDZTaamd3WTpZBcH8uI7CrbStQ6xdanEzCRJbxllhgqzUxc/s988/McDonaldsPhishingEmail500Card.JPG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;988&quot; data-original-width=&quot;866&quot; height=&quot;640&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjH47ZEBEN1MZT7Lf9oDjAFdBdyPnAZ9YSV5xYknMBIj3rRhDlvEPPyy7j5HJaIYAbde3VAygryeur-0pWrJUySpYKFldqi9tH3JlQYsLpvAHv4kvweKc6lMEClDMbz3Pbed0tCChxpGiQLMDZTaamd3WTpZBcH8uI7CrbStQ6xdanEzCRJbxllhgqzUxc/w560-h640/McDonaldsPhishingEmail500Card.JPG&quot; width=&quot;560&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;PHISHING LINKs;&lt;/span&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&lt;br /&gt;1.&amp;nbsp;&lt;span style=&quot;color: #2b00fe; font-family: helvetica;&quot;&gt;http://news.luuhoangduc.com/?xxxxxxxxxxxx&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style=&quot;font-family: arial; font-size: medium;&quot;&gt;&lt;span style=&quot;font-weight: 400;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;div&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;How to tell this is a Phishing email ?&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Check email address in full, if it&#39;s not from originating company then it&#39;s phishing.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Hover over all links in email, if it&#39;s not from the&amp;nbsp; company&#39;s website then forget it.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;The best way is to&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;How to examine Email Message Source?&lt;/span&gt;&lt;/h3&gt;
&lt;span face=&quot;&quot;&gt;Now let&#39;s look at message source&lt;/span&gt;&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Actions-&amp;gt;View Message Source.&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down arrow to top right)-&amp;gt;Show original.&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;span face=&quot;&quot;&gt;Check for suspicious links, anything that does not originate from apple.com.&lt;/span&gt;&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report Phishing Email (not as Spam)&lt;/span&gt;&lt;/h3&gt;
&lt;div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Junk (at Top)-&amp;gt;Phishing Scam&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down-arrow to top right)-&amp;gt;Report Phishing&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;span style=&quot;background-color: lime;&quot;&gt;Report Phishing&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h4&gt;
&lt;span face=&quot;&quot; style=&quot;font-weight: normal;&quot;&gt;If you have received this email take further&amp;nbsp;&lt;/span&gt;&lt;/h4&gt;
&lt;h3&gt;
&lt;ol style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;li&gt;&lt;span face=&quot;&quot; style=&quot;color: #0000ee;&quot;&gt;&lt;u&gt;&lt;a href=&quot;https://www.google.com/safebrowsing/report_phish/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://www.google.com/safebrowsing/report_phish/&lt;/a&gt;&lt;/u&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;/div&gt;
&lt;/h3&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report phishing at Microsoft and government agencies&lt;/span&gt;&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&quot; style=&quot;font-family: &amp;quot;trebuchet ms&amp;quot;, sans-serif;&quot;&gt;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/8558268704268134930/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/07/McDonalds-phishing-email-with-subject-Special-Take-a-1000-McDonalds-Gift-Card.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/8558268704268134930'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/8558268704268134930'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/07/McDonalds-phishing-email-with-subject-Special-Take-a-1000-McDonalds-Gift-Card.html' title='McDonalds phishing email with subject Special: Take a $1000 McDonalds Gift Card'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjH47ZEBEN1MZT7Lf9oDjAFdBdyPnAZ9YSV5xYknMBIj3rRhDlvEPPyy7j5HJaIYAbde3VAygryeur-0pWrJUySpYKFldqi9tH3JlQYsLpvAHv4kvweKc6lMEClDMbz3Pbed0tCChxpGiQLMDZTaamd3WTpZBcH8uI7CrbStQ6xdanEzCRJbxllhgqzUxc/s72-w560-h640-c/McDonaldsPhishingEmail500Card.JPG" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-5103985765495885443</id><published>2023-06-15T07:30:00.006-04:00</published><updated>2023-06-15T12:26:17.746-04:00</updated><title type='text'>Shell phishing email with subject Re: Celebrating Shell Gas Station anniversary with a $1000 Shell Gift Card</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;For the record, this is a Shell&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;&lt;span style=&quot;color: red;&quot;&gt;phishing email&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;attempt that is recently going around, with subject &quot;&lt;i&gt;Re: Celebrating Shell Gas Station anniversary with a $1000 Shell Gift Card&lt;/i&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;What to do? &amp;nbsp;&lt;/span&gt;&lt;b&gt;Report them&lt;/b&gt;&lt;span face=&quot;&quot;&gt;, goto bottom of page.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica; font-size: small;&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;center&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoNormalTable&quot; style=&quot;background-color: white; width: 600px;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;padding: 0in; width: 600px;&quot; valign=&quot;top&quot; width=&quot;100%&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;&lt;b&gt;From&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;$1000 Shell Gas Card &amp;lt;plclaims@capricorn.coop&amp;gt;&lt;br /&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&amp;nbsp;Re: Celebrating Shell Gas Station anniversary with a $1000 Shell Gift Card&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhuBurxlpmLa_U5e2EvXGFMOV9VuUHyVts8RBaWPCl0KcqhqgqgAHYzAoszYPH5dX3NZqKS_7H-4tf2UY2f8LaOInizW5e9EOsZHrjjF83HZJOyrE8bUxYMwmXuxXsGtbmyM5aCm-2Mc6z3RsMNY0nFNmgb_hH4QFyFiKev_wnVbTIf69KnGlCkPWcD/s1037/ShellPhishingEmailClaim1000.JPG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;1037&quot; data-original-width=&quot;866&quot; height=&quot;556&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhuBurxlpmLa_U5e2EvXGFMOV9VuUHyVts8RBaWPCl0KcqhqgqgAHYzAoszYPH5dX3NZqKS_7H-4tf2UY2f8LaOInizW5e9EOsZHrjjF83HZJOyrE8bUxYMwmXuxXsGtbmyM5aCm-2Mc6z3RsMNY0nFNmgb_hH4QFyFiKev_wnVbTIf69KnGlCkPWcD/w464-h556/ShellPhishingEmailClaim1000.JPG&quot; width=&quot;464&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;h3&gt;&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/h3&gt;&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;PHISHING LINKs;&lt;/span&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span&gt;1.&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #2b00fe;&quot;&gt;http://globalcomquest.fun/?xxxxx&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style=&quot;font-family: arial; font-size: medium;&quot;&gt;&lt;span style=&quot;font-weight: 400;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;div&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;How to tell this is a Phishing email ?&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Check email address in full, if it&#39;s not from originating company then it&#39;s phishing.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Hover over all links in email, if it&#39;s not from the&amp;nbsp; company&#39;s website then forget it.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;The best way is to&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;How to examine Email Message Source ?&lt;/span&gt;&lt;/h3&gt;
&lt;span face=&quot;&quot;&gt;Now lets look at message source&lt;/span&gt;&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Actions-&amp;gt;View Message Source.&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down arrow to top right)-&amp;gt;Show original.&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;span face=&quot;&quot;&gt;Check for suspicious links, anything that does not originate from apple.com.&lt;/span&gt;&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report Phishing Email (not as Spam)&lt;/span&gt;&lt;/h3&gt;
&lt;div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Junk (at Top)-&amp;gt;Phishing Scam&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down-arrow to top right)-&amp;gt;Report Phishing&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;span style=&quot;background-color: lime;&quot;&gt;Report Phishing&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h4&gt;
&lt;span face=&quot;&quot; style=&quot;font-weight: normal;&quot;&gt;If you have received this email take it further at&amp;nbsp;&lt;/span&gt;&lt;/h4&gt;
&lt;h3&gt;
&lt;ol style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;li&gt;&lt;span face=&quot;&quot; style=&quot;color: #0000ee;&quot;&gt;&lt;u&gt;&lt;a href=&quot;https://www.google.com/safebrowsing/report_phish/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://www.google.com/safebrowsing/report_phish/&lt;/a&gt;&lt;/u&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;/div&gt;
&lt;/h3&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report phishing at Microsoft and subsequently government agencies&lt;/span&gt;&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&quot; style=&quot;font-family: &amp;quot;trebuchet ms&amp;quot;, sans-serif;&quot;&gt;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.cisa.gov/uscert/report-phishing&quot;&gt;Report Phishing Sites | CISA&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.fightspam.gc.ca/eic/site/030.nsf/eng/home&quot;&gt;Home - Canada&#39;s Anti-Spam Legislation (fightspam.gc.ca)&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/5103985765495885443/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/06/Shell-phishing-email-with-subject-Re-Celebrating-Shell-Gas-Station-anniversary-with-a-241000-Shell-Gift-Card.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/5103985765495885443'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/5103985765495885443'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/06/Shell-phishing-email-with-subject-Re-Celebrating-Shell-Gas-Station-anniversary-with-a-241000-Shell-Gift-Card.html' title='Shell phishing email with subject Re: Celebrating Shell Gas Station anniversary with a $1000 Shell Gift Card'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhuBurxlpmLa_U5e2EvXGFMOV9VuUHyVts8RBaWPCl0KcqhqgqgAHYzAoszYPH5dX3NZqKS_7H-4tf2UY2f8LaOInizW5e9EOsZHrjjF83HZJOyrE8bUxYMwmXuxXsGtbmyM5aCm-2Mc6z3RsMNY0nFNmgb_hH4QFyFiKev_wnVbTIf69KnGlCkPWcD/s72-w464-h556-c/ShellPhishingEmailClaim1000.JPG" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-7701380276572450763</id><published>2023-06-10T07:00:00.001-04:00</published><updated>2023-06-10T07:00:00.127-04:00</updated><title type='text'>Rona phishing email with subject Re: Welcome 170 Piece Stanley Tool Set customer</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;For the record, this is a Rona&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;&lt;span style=&quot;color: red;&quot;&gt;phishing email&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;attempt that is recently going around, with subject &quot;&lt;i&gt;Re: Welcome 170 Piece Stanley Tool Set customer, Exclusive Rewards For you&lt;/i&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;What to do? &amp;nbsp;&lt;/span&gt;&lt;b&gt;Report them&lt;/b&gt;&lt;span face=&quot;&quot;&gt;, goto bottom of page.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica; font-size: small;&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;center&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoNormalTable&quot; style=&quot;background-color: white; width: 600px;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;padding: 0in; width: 600px;&quot; valign=&quot;top&quot; width=&quot;100%&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;&lt;b&gt;From&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;170 Piece Stanley Tool Set Reward &amp;lt;alumni@cleverharvey.com&amp;gt;&lt;br /&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&amp;nbsp;Re: Welcome 170 Piece Stanley Tool Set customer, Exclusive Rewards For you&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh9K3r_c8JWkXMGcw9ce5rXlBFmRbGm3_eeJtvIS4dNAD4TMLzLYHpk1HXrXulYG33q8ipaANVeccu6XoMX7Lh6b-Y5LF91b6LP17G12ac6_ZxZQo6_pVKM-xq2N2qpsqNYkHDsTOS0qE38sXmrxp19o_u-cH42mmY8Vg_w8e2lbljwDg_1p7tcxlYA/s1325/RONAPhishing.JPG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;1325&quot; data-original-width=&quot;763&quot; height=&quot;640&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh9K3r_c8JWkXMGcw9ce5rXlBFmRbGm3_eeJtvIS4dNAD4TMLzLYHpk1HXrXulYG33q8ipaANVeccu6XoMX7Lh6b-Y5LF91b6LP17G12ac6_ZxZQo6_pVKM-xq2N2qpsqNYkHDsTOS0qE38sXmrxp19o_u-cH42mmY8Vg_w8e2lbljwDg_1p7tcxlYA/w368-h640/RONAPhishing.JPG&quot; width=&quot;368&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;PHISHING LINKs;&lt;/span&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&lt;br /&gt;1.&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #2b00fe;&quot;&gt;http://alkarich.live/?xxxxx&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style=&quot;font-family: arial; font-size: medium;&quot;&gt;&lt;span style=&quot;font-weight: 400;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;div&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;How to tell this is a Phishing email ?&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Check email address in full, if it&#39;s not from originating company then it&#39;s phishing.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Hover over all links in email, if it&#39;s not from the&amp;nbsp; company&#39;s website then forget it.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;The best way is to&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;How to examine Email Message Source ?&lt;/span&gt;&lt;/h3&gt;
&lt;span face=&quot;&quot;&gt;Now lets look at message source&lt;/span&gt;&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Actions-&amp;gt;View Message Source.&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down arrow to top right)-&amp;gt;Show original.&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;span face=&quot;&quot;&gt;Check for suspicious links, anything that does not originate from apple.com.&lt;/span&gt;&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report Phishing Email (not as Spam)&lt;/span&gt;&lt;/h3&gt;
&lt;div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Junk (at Top)-&amp;gt;Phishing Scam&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down-arrow to top right)-&amp;gt;Report Phishing&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;span style=&quot;background-color: lime;&quot;&gt;Report Phishing&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h4&gt;
&lt;span face=&quot;&quot; style=&quot;font-weight: normal;&quot;&gt;If you have received this email take it further at&amp;nbsp;&lt;/span&gt;&lt;/h4&gt;
&lt;h3&gt;
&lt;ol style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;li&gt;&lt;span face=&quot;&quot; style=&quot;color: #0000ee;&quot;&gt;&lt;u&gt;&lt;a href=&quot;https://www.google.com/safebrowsing/report_phish/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://www.google.com/safebrowsing/report_phish/&lt;/a&gt;&lt;/u&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;/div&gt;
&lt;/h3&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report phishing at Microsoft and subsequently government agencies&lt;/span&gt;&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&quot; style=&quot;font-family: &amp;quot;trebuchet ms&amp;quot;, sans-serif;&quot;&gt;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.cisa.gov/uscert/report-phishing&quot;&gt;Report Phishing Sites | CISA&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.fightspam.gc.ca/eic/site/030.nsf/eng/home&quot;&gt;Home - Canada&#39;s Anti-Spam Legislation (fightspam.gc.ca)&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/7701380276572450763/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/Rona-phishing-email-with-subject-Re-Welcome-170-Piece-Stanley-Tool-Set-customer.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/7701380276572450763'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/7701380276572450763'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/Rona-phishing-email-with-subject-Re-Welcome-170-Piece-Stanley-Tool-Set-customer.html' title='Rona phishing email with subject Re: Welcome 170 Piece Stanley Tool Set customer'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh9K3r_c8JWkXMGcw9ce5rXlBFmRbGm3_eeJtvIS4dNAD4TMLzLYHpk1HXrXulYG33q8ipaANVeccu6XoMX7Lh6b-Y5LF91b6LP17G12ac6_ZxZQo6_pVKM-xq2N2qpsqNYkHDsTOS0qE38sXmrxp19o_u-cH42mmY8Vg_w8e2lbljwDg_1p7tcxlYA/s72-w368-h640-c/RONAPhishing.JPG" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-3089921120451630707</id><published>2023-06-07T07:00:00.001-04:00</published><updated>2023-06-07T07:00:00.132-04:00</updated><title type='text'>Shell phishing email with subject Re: Win a $1000 Shell Gift Card!</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;For the record, this is a&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;&lt;span style=&quot;background-color: white;&quot;&gt;Shell&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: red;&quot;&gt;phishing email&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;attempt that is recently going around, with subject &quot;&lt;i&gt;Win a $1000 Shell Gift Card!&lt;/i&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;What to do? &amp;nbsp;&lt;/span&gt;&lt;b&gt;Report them&lt;/b&gt;&lt;span face=&quot;&quot;&gt;, goto bottom of page.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica; font-size: small;&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;center&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoNormalTable&quot; style=&quot;background-color: white; width: 600px;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;padding: 0in; width: 600px;&quot; valign=&quot;top&quot; width=&quot;100%&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;&lt;b&gt;From&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;$1000 Shell Gas Card &amp;lt;onlinehelpdesk@health.govt.nz&amp;gt;&lt;br /&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&amp;nbsp;Re: Win a $1000 Shell Gift Card!&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjIfgud6i_HKeLuQZBI28Ni5tWG782vo6A9bS3Dn5kreYXNp6ubKmkVLBjNGDRxxp2eQV5uZOyX3e2D-b4f6AjY145S0xtD3btHXPAyYE3nCkqtMwSje3zsRlErKvfZeoTfAuofRU0hIWH-YRKpIPSIMzMG0Svl_KJ1-CG1is8L2BDSA570di4ElkZw/s790/PhishingEmailShell.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;790&quot; data-original-width=&quot;700&quot; height=&quot;640&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjIfgud6i_HKeLuQZBI28Ni5tWG782vo6A9bS3Dn5kreYXNp6ubKmkVLBjNGDRxxp2eQV5uZOyX3e2D-b4f6AjY145S0xtD3btHXPAyYE3nCkqtMwSje3zsRlErKvfZeoTfAuofRU0hIWH-YRKpIPSIMzMG0Svl_KJ1-CG1is8L2BDSA570di4ElkZw/w568-h640/PhishingEmailShell.jpg&quot; width=&quot;568&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;PHISHING LINKs;&lt;/span&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&lt;br /&gt;1.&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #2b00fe;&quot;&gt;http://logier.shop/?xxxxxx&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style=&quot;font-family: arial; font-size: medium;&quot;&gt;&lt;span style=&quot;font-weight: 400;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;div&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;How to tell this is a Phishing email ?&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Check email address in full, if it&#39;s not from originating company then it&#39;s phishing.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Hover over all links in email, if it&#39;s not from the&amp;nbsp; company&#39;s website then forget it.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;The best way is to&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;How to examine Email Message Source ?&lt;/span&gt;&lt;/h3&gt;
&lt;span face=&quot;&quot;&gt;Now lets look at message source&lt;/span&gt;&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Actions-&amp;gt;View Message Source.&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down arrow to top right)-&amp;gt;Show original.&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;span face=&quot;&quot;&gt;Check for suspicious links, anything that does not originate from apple.com.&lt;/span&gt;&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report Phishing Email (not as Spam)&lt;/span&gt;&lt;/h3&gt;
&lt;div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Junk (at Top)-&amp;gt;Phishing Scam&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down-arrow to top right)-&amp;gt;Report Phishing&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;span style=&quot;background-color: lime;&quot;&gt;Report Phishing&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h4&gt;
&lt;span face=&quot;&quot; style=&quot;font-weight: normal;&quot;&gt;If you have received this email take it further at&amp;nbsp;&lt;/span&gt;&lt;/h4&gt;
&lt;h3&gt;
&lt;ol style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;li&gt;&lt;span face=&quot;&quot; style=&quot;color: #0000ee;&quot;&gt;&lt;u&gt;&lt;a href=&quot;https://www.google.com/safebrowsing/report_phish/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://www.google.com/safebrowsing/report_phish/&lt;/a&gt;&lt;/u&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;/div&gt;
&lt;/h3&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report phishing at Microsoft and subsequently government agencies&lt;/span&gt;&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&quot; style=&quot;font-family: &amp;quot;trebuchet ms&amp;quot;, sans-serif;&quot;&gt;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.cisa.gov/uscert/report-phishing&quot;&gt;Report Phishing Sites | CISA&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.fightspam.gc.ca/eic/site/030.nsf/eng/home&quot;&gt;Home - Canada&#39;s Anti-Spam Legislation (fightspam.gc.ca)&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/3089921120451630707/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/blog-post_20.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/3089921120451630707'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/3089921120451630707'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/blog-post_20.html' title='Shell phishing email with subject Re: Win a $1000 Shell Gift Card!'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjIfgud6i_HKeLuQZBI28Ni5tWG782vo6A9bS3Dn5kreYXNp6ubKmkVLBjNGDRxxp2eQV5uZOyX3e2D-b4f6AjY145S0xtD3btHXPAyYE3nCkqtMwSje3zsRlErKvfZeoTfAuofRU0hIWH-YRKpIPSIMzMG0Svl_KJ1-CG1is8L2BDSA570di4ElkZw/s72-w568-h640-c/PhishingEmailShell.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-588162182308519236</id><published>2023-06-03T07:00:00.001-04:00</published><updated>2023-06-03T07:00:00.139-04:00</updated><title type='text'>Tylenol Lawsuits phishing email with subject Put An End To Corporate Greed &amp; Unacceptable Practices With Tylenol Lawsuits</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;For the record, this is a&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;&lt;span style=&quot;background-color: white;&quot;&gt;Tylenol Lawsuits&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color: red;&quot;&gt;phishing email&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;attempt that is recently going around, with subject &quot;&lt;i&gt;Put An End To Corporate Greed &amp;amp; Unacceptable Practices With Tylenol Lawsuits&lt;/i&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;What to do? &amp;nbsp;&lt;/span&gt;&lt;b&gt;Report them&lt;/b&gt;&lt;span face=&quot;&quot;&gt;, goto bottom of page.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica; font-size: small;&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;center&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoNormalTable&quot; style=&quot;background-color: white; width: 600px;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;padding: 0in; width: 600px;&quot; valign=&quot;top&quot; width=&quot;100%&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;&lt;b&gt;From&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;YourCase Tylenol Info &amp;lt;classes@computersupplyhub.com&amp;gt;&lt;br /&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&amp;nbsp;Put An End To Corporate Greed &amp;amp; Unacceptable Practices With Tylenol Lawsuits&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhdeqxFjW_kwhy-S4Gegpo6o-4ZXUU59sLOmFgFJUzci-0TdGod_TuzbZh62UJlfl0RV-By3oxZTVhm-Ka_Z6rWydI5CewBwcJ0Ov7GVfNmycnsppI5Yl9UEnTXAw2PpCymgUab45DJiSmysqjWmwsXnbiEwWSu3f6AD_-DXZZ4d4lJl78ywwYxOgVJ/s1590/PhishingEmailTylenolLawsuit.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;1590&quot; data-original-width=&quot;810&quot; height=&quot;934&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhdeqxFjW_kwhy-S4Gegpo6o-4ZXUU59sLOmFgFJUzci-0TdGod_TuzbZh62UJlfl0RV-By3oxZTVhm-Ka_Z6rWydI5CewBwcJ0Ov7GVfNmycnsppI5Yl9UEnTXAw2PpCymgUab45DJiSmysqjWmwsXnbiEwWSu3f6AD_-DXZZ4d4lJl78ywwYxOgVJ/w476-h934/PhishingEmailTylenolLawsuit.jpg&quot; width=&quot;476&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;PHISHING LINKs;&lt;/span&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&lt;br /&gt;1.&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #2b00fe;&quot;&gt;https://computersupplyhub.com/xxxxxxxxxxxxx&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style=&quot;font-family: arial; font-size: medium;&quot;&gt;&lt;span style=&quot;font-weight: 400;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;div&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;How to tell this is a Phishing email ?&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Check email address in full, if it&#39;s not from originating company then it&#39;s phishing.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Hover over all links in email, if it&#39;s not from the&amp;nbsp; company&#39;s website then forget it.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;The best way is to&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;How to examine Email Message Source ?&lt;/span&gt;&lt;/h3&gt;
&lt;span face=&quot;&quot;&gt;Now lets look at message source&lt;/span&gt;&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Actions-&amp;gt;View Message Source.&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down arrow to top right)-&amp;gt;Show original.&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;span face=&quot;&quot;&gt;Check for suspicious links, anything that does not originate from apple.com.&lt;/span&gt;&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report Phishing Email (not as Spam)&lt;/span&gt;&lt;/h3&gt;
&lt;div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Junk (at Top)-&amp;gt;Phishing Scam&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down-arrow to top right)-&amp;gt;Report Phishing&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;span style=&quot;background-color: lime;&quot;&gt;Report Phishing&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h4&gt;
&lt;span face=&quot;&quot; style=&quot;font-weight: normal;&quot;&gt;If you have received this email take it further at&amp;nbsp;&lt;/span&gt;&lt;/h4&gt;
&lt;h3&gt;
&lt;ol style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;li&gt;&lt;span face=&quot;&quot; style=&quot;color: #0000ee;&quot;&gt;&lt;u&gt;&lt;a href=&quot;https://www.google.com/safebrowsing/report_phish/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://www.google.com/safebrowsing/report_phish/&lt;/a&gt;&lt;/u&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;/div&gt;
&lt;/h3&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report phishing at Microsoft and subsequently government agencies&lt;/span&gt;&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&quot; style=&quot;font-family: &amp;quot;trebuchet ms&amp;quot;, sans-serif;&quot;&gt;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.cisa.gov/uscert/report-phishing&quot;&gt;Report Phishing Sites | CISA&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.fightspam.gc.ca/eic/site/030.nsf/eng/home&quot;&gt;Home - Canada&#39;s Anti-Spam Legislation (fightspam.gc.ca)&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/588162182308519236/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/Tylenol-Lawsuits-phishing-email-with-subject-Put-An-End-To-Corporate-Greed-Unacceptable-Practices-With-Tylenol-Lawsuits.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/588162182308519236'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/588162182308519236'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/Tylenol-Lawsuits-phishing-email-with-subject-Put-An-End-To-Corporate-Greed-Unacceptable-Practices-With-Tylenol-Lawsuits.html' title='Tylenol Lawsuits phishing email with subject Put An End To Corporate Greed &amp; Unacceptable Practices With Tylenol Lawsuits'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhdeqxFjW_kwhy-S4Gegpo6o-4ZXUU59sLOmFgFJUzci-0TdGod_TuzbZh62UJlfl0RV-By3oxZTVhm-Ka_Z6rWydI5CewBwcJ0Ov7GVfNmycnsppI5Yl9UEnTXAw2PpCymgUab45DJiSmysqjWmwsXnbiEwWSu3f6AD_-DXZZ4d4lJl78ywwYxOgVJ/s72-w476-h934-c/PhishingEmailTylenolLawsuit.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-2187713763005796507</id><published>2023-05-31T07:30:00.011-04:00</published><updated>2023-05-31T07:30:00.142-04:00</updated><title type='text'>American Home Warranty phishing email with subject Home Warranty Repair and Replacement Coverage</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;For the record, this is an&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;American Home Warranty&amp;nbsp;&lt;span style=&quot;color: red;&quot;&gt;phishing email&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;attempt that is recently going around, with subject &quot;&lt;i&gt;Home Warranty Repair and Replacement Coverage. $50 Off. Limited Time.&lt;/i&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;What to do? &amp;nbsp;&lt;/span&gt;&lt;b&gt;Report them&lt;/b&gt;&lt;span face=&quot;&quot;&gt;, goto bottom of page.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica; font-size: small;&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;center&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoNormalTable&quot; style=&quot;background-color: white; width: 600px;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;padding: 0in; width: 600px;&quot; valign=&quot;top&quot; width=&quot;100%&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;&lt;b&gt;From&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;americanhomewarranty.net &amp;lt;classes@strepidemical.com&amp;gt;&lt;br /&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&amp;nbsp;Home Warranty Repair and Replacement Coverage. $50 Off. Limited Time.&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgMb0smB7zdMYjDxYK4PhmqwrBhwl8Ripliz12MbfU-Bs_1WE4HRMS2HHuRcMDzGbsxB2j6Rx-JYquxw6MERqbwxWuqFseJvinrCXa1JAwLVRD30Dpx9I2s9X6wjPWVyYmdFmiFGqghwYtzasTT99Vpd3_1RnG-IO6HbC3zNVsn2frZUYOETbQuRTBf/s1655/PhishingEmailAmericanHomeWarranty.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;1655&quot; data-original-width=&quot;749&quot; height=&quot;1000&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgMb0smB7zdMYjDxYK4PhmqwrBhwl8Ripliz12MbfU-Bs_1WE4HRMS2HHuRcMDzGbsxB2j6Rx-JYquxw6MERqbwxWuqFseJvinrCXa1JAwLVRD30Dpx9I2s9X6wjPWVyYmdFmiFGqghwYtzasTT99Vpd3_1RnG-IO6HbC3zNVsn2frZUYOETbQuRTBf/w453-h1000/PhishingEmailAmericanHomeWarranty.jpg&quot; width=&quot;453&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;h3&gt;
&lt;span face=&quot;&quot; style=&quot;font-family: helvetica;&quot;&gt;PHISHING LINKs;&lt;/span&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span&gt;&lt;br /&gt;1.&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #2b00fe;&quot;&gt;http://&lt;span style=&quot;font-size: 18.72px;&quot;&gt;strepidemical.com&lt;/span&gt;/?xxxxxxxxxxxxx&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;color: blue; font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style=&quot;font-size: medium;&quot;&gt;&lt;span style=&quot;font-family: helvetica; font-weight: 400;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica; font-size: x-large;&quot;&gt;How to tell this is a Phishing email ?&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span face=&quot;&quot; style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot; style=&quot;font-family: helvetica;&quot;&gt;Check email address in full, if it&#39;s not from originating company then it&#39;s phishing.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot; style=&quot;font-family: helvetica;&quot;&gt;Hover over all links in email, if it&#39;s not from the&amp;nbsp; company&#39;s website then forget it.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot; style=&quot;font-family: helvetica;&quot;&gt;The best way is to&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;h3&gt;
&lt;span face=&quot;&quot; style=&quot;font-family: helvetica;&quot;&gt;How to examine Email Message Source ?&lt;/span&gt;&lt;/h3&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;Now lets look at message source&lt;/span&gt;&lt;br /&gt;
&lt;/span&gt;&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot; style=&quot;font-family: helvetica;&quot;&gt;Outlook.com-&amp;gt;Actions-&amp;gt;View Message Source.&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot; style=&quot;font-family: helvetica;&quot;&gt;Gmail.com-&amp;gt;More (down arrow to top right)-&amp;gt;Show original.&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;Check for suspicious links, anything that does not originate from apple.com.&lt;/span&gt;&lt;br /&gt;
&lt;/span&gt;&lt;h3&gt;
&lt;span face=&quot;&quot; style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot; style=&quot;font-family: helvetica;&quot;&gt;Report Phishing Email (not as Spam)&lt;/span&gt;&lt;/h3&gt;
&lt;div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot; style=&quot;font-family: helvetica;&quot;&gt;Outlook.com-&amp;gt;Junk (at Top)-&amp;gt;Phishing Scam&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot; style=&quot;font-family: helvetica;&quot;&gt;Gmail.com-&amp;gt;More (down-arrow to top right)-&amp;gt;Report Phishing&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;span style=&quot;background-color: lime; font-family: helvetica;&quot;&gt;Report Phishing&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h4&gt;
&lt;span face=&quot;&quot; style=&quot;font-family: helvetica; font-weight: normal;&quot;&gt;If you have received this email take it further at&amp;nbsp;&lt;/span&gt;&lt;/h4&gt;
&lt;h3&gt;
&lt;ol style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;li&gt;&lt;span face=&quot;&quot; style=&quot;color: #0000ee; font-family: helvetica;&quot;&gt;&lt;u&gt;&lt;a href=&quot;https://www.google.com/safebrowsing/report_phish/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://www.google.com/safebrowsing/report_phish/&lt;/a&gt;&lt;/u&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;/div&gt;
&lt;/h3&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;h3&gt;
&lt;span face=&quot;&quot; style=&quot;font-family: helvetica;&quot;&gt;Report phishing at Microsoft and subsequently government agencies&lt;/span&gt;&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.cisa.gov/uscert/report-phishing&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Report Phishing Sites | CISA&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.fightspam.gc.ca/eic/site/030.nsf/eng/home&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Home - Canada&#39;s Anti-Spam Legislation (fightspam.gc.ca)&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/2187713763005796507/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/American-Home-Warranty-phishing-email-with-subject-Home-Warranty-Repair-and-Replacement-Coverage.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/2187713763005796507'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/2187713763005796507'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/American-Home-Warranty-phishing-email-with-subject-Home-Warranty-Repair-and-Replacement-Coverage.html' title='American Home Warranty phishing email with subject Home Warranty Repair and Replacement Coverage'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgMb0smB7zdMYjDxYK4PhmqwrBhwl8Ripliz12MbfU-Bs_1WE4HRMS2HHuRcMDzGbsxB2j6Rx-JYquxw6MERqbwxWuqFseJvinrCXa1JAwLVRD30Dpx9I2s9X6wjPWVyYmdFmiFGqghwYtzasTT99Vpd3_1RnG-IO6HbC3zNVsn2frZUYOETbQuRTBf/s72-w453-h1000-c/PhishingEmailAmericanHomeWarranty.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-7329642071845616702</id><published>2023-05-29T07:00:00.030-04:00</published><updated>2023-06-01T10:05:15.420-04:00</updated><title type='text'>Windows Rename Multiple Files and Folders with Regex - Alternative</title><content type='html'>&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;PowerRename is a new tool that allows you a bulk rename and modify a large number of filenames. It&#39;s part of the &lt;a href=&quot;https://learn.microsoft.com/en-us/windows/powertoys/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Microsoft PowerToys&lt;/a&gt; is a set of utilities for power users to tune and streamline their Windows experience for greater productivity.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;However,&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background-color: #fcff01; font-family: helvetica;&quot;&gt;PowerRename&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span style=&quot;background-color: #fcff01;&quot;&gt;&lt;b&gt;does not work on Windows&amp;nbsp; 7,&amp;nbsp;&lt;/b&gt;&lt;/span&gt;so I was on a quest to find a tool that was open source and could work on Windows 7 and above.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica; font-size: large;&quot;&gt;Top Solution To Rename Files and Folders on Windows&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;a href=&quot;https://tools.stefankueng.com/StExBar.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;StExBar: The ultimate tool for Windows Explorer&lt;/a&gt; is open source and fully supports regular expressions with replacements. This is written in C and is incredibly fast. Runs on Windows 7 and up.&amp;nbsp;Stefans Tools is well maintained and been around for years.&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;See my &lt;/span&gt;&lt;a href=&quot;https://metadataconsulting.blogspot.com/2023/05/The-Top-Regular-Expression-Testing-App-for-2023.html&quot; style=&quot;font-family: helvetica;&quot;&gt;post&lt;/a&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt; on the best regex tester application, it will blow you away.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;In image below, we are using&amp;nbsp;regular expression:&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;!--HTML generated using hilite.me--&gt;&lt;/p&gt;&lt;div style=&quot;background: rgb(248, 248, 248); border-color: gray; border-image: initial; border-style: solid; border-width: 0.1em 0.1em 0.1em 0.8em; border: solid gray; overflow: auto; padding: 0.2em 0.6em; width: auto;&quot;&gt;&lt;pre style=&quot;line-height: 125%; margin: 0px;&quot;&gt;&lt;b&gt;(&lt;span style=&quot;border: 1px solid rgb(255, 0, 0);&quot;&gt;\&lt;/span&gt;d*)_(.*)&lt;/b&gt;
&lt;/pre&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;to rename folders from &lt;b&gt;100_Project&lt;/b&gt; to &lt;b&gt;100Project &lt;/b&gt;(removing underscore),&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;with replacement groups: &lt;b&gt;$1$2&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgNvImduwGIVkgwLlZiLJDYjsn1VomOyssqeEicxDBeLJ6mQMD6fdI3HYbUDwSFOx35ee3hdYNFk88lNLGL6Jq3L8U6eB5k8hci9HpusrxS3rpxrSYnsbFsCXtbXs7vKJSmKtOXpJY1bN-T7dP6KYwEMuEII9mAjcnCKmIsL-8JZzHsvqO2zPfi2daY/s1421/StephansToolsStExBarShowInstall.png&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;958&quot; data-original-width=&quot;1421&quot; height=&quot;432&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgNvImduwGIVkgwLlZiLJDYjsn1VomOyssqeEicxDBeLJ6mQMD6fdI3HYbUDwSFOx35ee3hdYNFk88lNLGL6Jq3L8U6eB5k8hci9HpusrxS3rpxrSYnsbFsCXtbXs7vKJSmKtOXpJY1bN-T7dP6KYwEMuEII9mAjcnCKmIsL-8JZzHsvqO2zPfi2daY/w640-h432/StephansToolsStExBarShowInstall.png&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Install&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;a href=&quot;https://sourceforge.net/projects/file-folder-ren/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Download and install x64 bit of&amp;nbsp;&lt;/a&gt;&lt;a href=&quot;https://tools.stefankueng.com/StExBar.html&quot;&gt;StExBar - Stefans Tools (stefankueng.com)&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Goto View-&amp;gt;Toolbars-&amp;gt;StExBar to show Stephan&#39;s Explorer Bar&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica; font-size: large;&quot;&gt;Open Source&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://github.com/stefankueng/tools/tree/main&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;https://github.com/stefankueng/tools/tree/main&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/7329642071845616702/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/Windows-Rename-Multiple-Files-and-Folders-with-Regex-Best-Top-Choice-2023.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/7329642071845616702'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/7329642071845616702'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/Windows-Rename-Multiple-Files-and-Folders-with-Regex-Best-Top-Choice-2023.html' title='Windows Rename Multiple Files and Folders with Regex - Alternative'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgNvImduwGIVkgwLlZiLJDYjsn1VomOyssqeEicxDBeLJ6mQMD6fdI3HYbUDwSFOx35ee3hdYNFk88lNLGL6Jq3L8U6eB5k8hci9HpusrxS3rpxrSYnsbFsCXtbXs7vKJSmKtOXpJY1bN-T7dP6KYwEMuEII9mAjcnCKmIsL-8JZzHsvqO2zPfi2daY/s72-w640-h432-c/StephansToolsStExBarShowInstall.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-7764504136364346650</id><published>2023-05-28T07:30:00.023-04:00</published><updated>2023-06-01T10:06:35.921-04:00</updated><title type='text'>Windows Rename Multiple Files and Folders with Regex - Powerrename Alternative</title><content type='html'>&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;PowerRename is a new tool that allows you a bulk rename and modify a large number of filenames. It&#39;s part of the &lt;a href=&quot;https://learn.microsoft.com/en-us/windows/powertoys/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Microsoft PowerToys&lt;/a&gt; is a set of utilities for power users to tune and streamline their Windows experience for greater productivity.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;However,&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background-color: #fcff01; font-family: helvetica;&quot;&gt;PowerRename&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span style=&quot;background-color: #fcff01;&quot;&gt;&lt;b&gt;does not work for Windows 7&lt;/b&gt;&lt;/span&gt;&amp;nbsp;so I was on a quest to find a tool that was open source and could work on Windows 7 and above.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica; font-size: large;&quot;&gt;Solution To Rename Files and Folders on Windows&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;a href=&quot;https://sourceforge.net/projects/file-folder-ren/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Métamorphose File and Folder Renamer&lt;/a&gt; is open source and supports regular expressions. This is written in python and is incredibly fast. Runs on Windows 7 and up.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;In example below, we are choosing DIR (for directories to be renamed) and &lt;br /&gt;regular expression : \s|_|\. to remove spaces, underscores and periods from folder names.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEicdeOWgQ9vcrdxSjiRTLfYydBEe0rrD_vYJKDQrGHmkNuvfjDaDQ5BmRT5TY5Lk4NzZgYx24z4idWCfQcf7uihX2wLdOMI3lK5G6uqtIINeE1QzSsGBlaaO6xxzEr0hnTwTarW449TapvkGQn5pxut7PgHQ1YccRON-i73opUgTgzWGELacgvkGf2Z/s1291/M%C3%A9tamorphoseExample.jpg&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;1291&quot; data-original-width=&quot;1264&quot; height=&quot;670&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEicdeOWgQ9vcrdxSjiRTLfYydBEe0rrD_vYJKDQrGHmkNuvfjDaDQ5BmRT5TY5Lk4NzZgYx24z4idWCfQcf7uihX2wLdOMI3lK5G6uqtIINeE1QzSsGBlaaO6xxzEr0hnTwTarW449TapvkGQn5pxut7PgHQ1YccRON-i73opUgTgzWGELacgvkGf2Z/w656-h670/M%C3%A9tamorphoseExample.jpg&quot; width=&quot;656&quot; /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Install&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;a href=&quot;https://sourceforge.net/projects/file-folder-ren/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://sourceforge.net/projects/file-folder-ren/&amp;nbsp;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Use download button and unzip into a folder, run&amp;nbsp;metamorphose.exe. Ignore the errors.&amp;nbsp; The installer is broken.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica; font-size: large;&quot;&gt;Open Source&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;a href=&quot;https://github.com/metamorphose&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://github.com/metamorphose&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Enhancement&lt;/span&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&amp;nbsp;Request&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Enhancement request to enable regex matched groups such as $1, to be used in the &quot;Replacement with (blank to delete)&quot; field as a replacement value.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://github.com/timinaust/metamorphose2/issues/8&quot;&gt;Change Request - Enable Regex Groups in the replacement / rename field · Issue #8 · timinaust/metamorphose2 (github.com)&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Update - Better Choice&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;a href=&quot;https://metadataconsulting.blogspot.com/2023/05/Windows-Rename-Multiple-Files-and-Folders-with-Regex-Best-Top-Choice-2023.html&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Metadata Consulting [dot] ca: Windows Rename Multiple Files and Folders with Regex - Alternative&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/7764504136364346650/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/Windows-Rename-Multiple-Files-and-Folders-with-Regex-Powerrename-Alternative.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/7764504136364346650'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/7764504136364346650'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/Windows-Rename-Multiple-Files-and-Folders-with-Regex-Powerrename-Alternative.html' title='Windows Rename Multiple Files and Folders with Regex - Powerrename Alternative'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEicdeOWgQ9vcrdxSjiRTLfYydBEe0rrD_vYJKDQrGHmkNuvfjDaDQ5BmRT5TY5Lk4NzZgYx24z4idWCfQcf7uihX2wLdOMI3lK5G6uqtIINeE1QzSsGBlaaO6xxzEr0hnTwTarW449TapvkGQn5pxut7PgHQ1YccRON-i73opUgTgzWGELacgvkGf2Z/s72-w656-h670-c/M%C3%A9tamorphoseExample.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-5112626488635893902</id><published>2023-05-27T07:00:00.007-04:00</published><updated>2023-05-27T07:00:00.126-04:00</updated><title type='text'>Ancient Egyptian Ritual 10inch Monster Cocks phishing email with subject Male Breakthrough</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;For the record, this is a&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;Ancient Egyptian Ritual 10inch Monster Cocks&amp;nbsp;&lt;span style=&quot;color: red;&quot;&gt;phishing email&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;attempt that is recently going around, with subject &quot;&lt;i&gt;Male Breakthrough&lt;/i&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;What to do? &amp;nbsp;&lt;/span&gt;&lt;b&gt;Report them&lt;/b&gt;&lt;span face=&quot;&quot;&gt;, goto bottom of page.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica; font-size: small;&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;center&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoNormalTable&quot; style=&quot;background-color: white; width: 600px;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;padding: 0in; width: 600px;&quot; valign=&quot;top&quot; width=&quot;100%&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;&lt;b&gt;From&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;MEN ONLY &amp;lt;admin@1placeonline.com&amp;gt;&lt;br /&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&amp;nbsp;Male Breakthrough&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiDVkc7PtBhmD-CFdlzxBFC2ldFD9h84KrV7r6ctZgAd5S9gf51QAHnXVUheU_uWLLoRB_69GznkMPYmegew_1qga2J_52bDV9Z-_ikws7xNq9VYH1zDYxaYbHq3X8s_nSdTM3pTeeZGXVkdsQ8uQJZS0ciqt8ZxubktcUhqTDVX59eqCMU7hYN7Fcv/s981/PhishingEmailEgyptianRitualMonsterCocks.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;810&quot; data-original-width=&quot;981&quot; height=&quot;528&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiDVkc7PtBhmD-CFdlzxBFC2ldFD9h84KrV7r6ctZgAd5S9gf51QAHnXVUheU_uWLLoRB_69GznkMPYmegew_1qga2J_52bDV9Z-_ikws7xNq9VYH1zDYxaYbHq3X8s_nSdTM3pTeeZGXVkdsQ8uQJZS0ciqt8ZxubktcUhqTDVX59eqCMU7hYN7Fcv/w640-h528/PhishingEmailEgyptianRitualMonsterCocks.png&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;PHISHING LINKs;&lt;/span&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&lt;br /&gt;1.&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #2b00fe;&quot;&gt;http://mpoten.store/?xxxxxxxxxxxxx&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style=&quot;font-family: arial; font-size: medium;&quot;&gt;&lt;span style=&quot;font-weight: 400;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;div&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;How to tell this is a Phishing email ?&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Check email address in full, if it&#39;s not from originating company then it&#39;s phishing.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Hover over all links in email, if it&#39;s not from the&amp;nbsp; company&#39;s website then forget it.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;The best way is to&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;How to examine Email Message Source ?&lt;/span&gt;&lt;/h3&gt;
&lt;span face=&quot;&quot;&gt;Now lets look at message source&lt;/span&gt;&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Actions-&amp;gt;View Message Source.&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down arrow to top right)-&amp;gt;Show original.&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;span face=&quot;&quot;&gt;Check for suspicious links, anything that does not originate from apple.com.&lt;/span&gt;&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report Phishing Email (not as Spam)&lt;/span&gt;&lt;/h3&gt;
&lt;div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Junk (at Top)-&amp;gt;Phishing Scam&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down-arrow to top right)-&amp;gt;Report Phishing&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;span style=&quot;background-color: lime;&quot;&gt;Report Phishing&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h4&gt;
&lt;span face=&quot;&quot; style=&quot;font-weight: normal;&quot;&gt;If you have received this email take it further at&amp;nbsp;&lt;/span&gt;&lt;/h4&gt;
&lt;h3&gt;
&lt;ol style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;li&gt;&lt;span face=&quot;&quot; style=&quot;color: #0000ee;&quot;&gt;&lt;u&gt;&lt;a href=&quot;https://www.google.com/safebrowsing/report_phish/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://www.google.com/safebrowsing/report_phish/&lt;/a&gt;&lt;/u&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;/div&gt;
&lt;/h3&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report phishing at Microsoft and subsequently government agencies&lt;/span&gt;&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&quot; style=&quot;font-family: &amp;quot;trebuchet ms&amp;quot;, sans-serif;&quot;&gt;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.cisa.gov/uscert/report-phishing&quot;&gt;Report Phishing Sites | CISA&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.fightspam.gc.ca/eic/site/030.nsf/eng/home&quot;&gt;Home - Canada&#39;s Anti-Spam Legislation (fightspam.gc.ca)&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/5112626488635893902/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/blog-post.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/5112626488635893902'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/5112626488635893902'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/blog-post.html' title='Ancient Egyptian Ritual 10inch Monster Cocks phishing email with subject Male Breakthrough'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiDVkc7PtBhmD-CFdlzxBFC2ldFD9h84KrV7r6ctZgAd5S9gf51QAHnXVUheU_uWLLoRB_69GznkMPYmegew_1qga2J_52bDV9Z-_ikws7xNq9VYH1zDYxaYbHq3X8s_nSdTM3pTeeZGXVkdsQ8uQJZS0ciqt8ZxubktcUhqTDVX59eqCMU7hYN7Fcv/s72-w640-h528-c/PhishingEmailEgyptianRitualMonsterCocks.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-4474182082814929081</id><published>2023-05-27T07:00:00.005-04:00</published><updated>2023-05-27T07:00:00.126-04:00</updated><title type='text'>eHarmony phishing email with subject Love has bloomed. Find your person this spring.</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;For the record, this is a&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;eHarmony&amp;nbsp;&lt;span style=&quot;color: red;&quot;&gt;phishing email&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;attempt that is recently going around, with subject &quot;&lt;i&gt;&amp;nbsp;L﻿ov﻿e﻿ h﻿as b﻿l﻿o﻿o﻿me﻿d.﻿ F﻿i﻿n﻿d ﻿you﻿r﻿ p﻿e﻿rs﻿o﻿n ﻿t﻿h﻿is ﻿spr﻿i﻿ng﻿.&lt;/i&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;What to do? &amp;nbsp;&lt;/span&gt;&lt;b&gt;Report them&lt;/b&gt;&lt;span face=&quot;&quot;&gt;, goto bottom of page.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica; font-size: small;&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;center&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoNormalTable&quot; style=&quot;background-color: white; width: 600px;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;padding: 0in; width: 600px;&quot; valign=&quot;top&quot; width=&quot;100%&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;&lt;b&gt;From&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;eha﻿r﻿mo﻿ny﻿ ﻿Par﻿t﻿n﻿e﻿r No﻿w &amp;lt;classes@tinhkhiet.com&amp;gt;&lt;br /&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&amp;nbsp;&amp;nbsp;L﻿ov﻿e﻿ h﻿as b﻿l﻿o﻿o﻿me﻿d.﻿ F﻿i﻿n﻿d ﻿you﻿r﻿ p﻿e﻿rs﻿o﻿n ﻿t﻿h﻿is ﻿spr﻿i﻿ng﻿.&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioYMTGF1kJBdm8BBGbiMUF6TQwvcX_Q9pUBx_Xt_1elPWm8f_FJO6oFDt_3Fbkyi-py59-CSKzvS-wb5YwuXvukEkzuuOZCsWGOOzrh7A9hpZLGSm8F9ZVYxKvbkhidiAfBVqz09McIep_LI9RrY6_VJiFU1pG-roghPWsVbeXVSD6q1YwbtKlksC_/s1121/EharmonyPhishingEmail.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;1121&quot; data-original-width=&quot;748&quot; height=&quot;746&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioYMTGF1kJBdm8BBGbiMUF6TQwvcX_Q9pUBx_Xt_1elPWm8f_FJO6oFDt_3Fbkyi-py59-CSKzvS-wb5YwuXvukEkzuuOZCsWGOOzrh7A9hpZLGSm8F9ZVYxKvbkhidiAfBVqz09McIep_LI9RrY6_VJiFU1pG-roghPWsVbeXVSD6q1YwbtKlksC_/w498-h746/EharmonyPhishingEmail.jpg&quot; width=&quot;498&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;PHISHING LINKs;&lt;/span&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&lt;br /&gt;1.&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #2b00fe;&quot;&gt;https://tinhkhiet.com/xxxxxxxxxxxxx...&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style=&quot;font-family: arial; font-size: medium;&quot;&gt;&lt;span style=&quot;font-weight: 400;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;div&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;How to tell this is a Phishing email ?&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Check email address in full, if it&#39;s not from originating company then it&#39;s phishing.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Hover over all links in email, if it&#39;s not from the&amp;nbsp; company&#39;s website then forget it.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;The best way is to&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;How to examine Email Message Source ?&lt;/span&gt;&lt;/h3&gt;
&lt;span face=&quot;&quot;&gt;Now lets look at message source&lt;/span&gt;&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Actions-&amp;gt;View Message Source.&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down arrow to top right)-&amp;gt;Show original.&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;span face=&quot;&quot;&gt;Check for suspicious links, anything that does not originate from apple.com.&lt;/span&gt;&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report Phishing Email (not as Spam)&lt;/span&gt;&lt;/h3&gt;
&lt;div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Junk (at Top)-&amp;gt;Phishing Scam&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down-arrow to top right)-&amp;gt;Report Phishing&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;span style=&quot;background-color: lime;&quot;&gt;Report Phishing&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h4&gt;
&lt;span face=&quot;&quot; style=&quot;font-weight: normal;&quot;&gt;If you have received this email take it further at&amp;nbsp;&lt;/span&gt;&lt;/h4&gt;
&lt;h3&gt;
&lt;ol style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;li&gt;&lt;span face=&quot;&quot; style=&quot;color: #0000ee;&quot;&gt;&lt;u&gt;&lt;a href=&quot;https://www.google.com/safebrowsing/report_phish/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://www.google.com/safebrowsing/report_phish/&lt;/a&gt;&lt;/u&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;/div&gt;
&lt;/h3&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report phishing at Microsoft and subsequently government agencies&lt;/span&gt;&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&quot; style=&quot;font-family: &amp;quot;trebuchet ms&amp;quot;, sans-serif;&quot;&gt;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.cisa.gov/uscert/report-phishing&quot;&gt;Report Phishing Sites | CISA&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.fightspam.gc.ca/eic/site/030.nsf/eng/home&quot;&gt;Home - Canada&#39;s Anti-Spam Legislation (fightspam.gc.ca)&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/4474182082814929081/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/eHarmony-phishing-email-with-subject-Love-has-bloomed-Find-your-person-this-spring.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/4474182082814929081'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/4474182082814929081'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/eHarmony-phishing-email-with-subject-Love-has-bloomed-Find-your-person-this-spring.html' title='eHarmony phishing email with subject Love has bloomed. Find your person this spring.'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioYMTGF1kJBdm8BBGbiMUF6TQwvcX_Q9pUBx_Xt_1elPWm8f_FJO6oFDt_3Fbkyi-py59-CSKzvS-wb5YwuXvukEkzuuOZCsWGOOzrh7A9hpZLGSm8F9ZVYxKvbkhidiAfBVqz09McIep_LI9RrY6_VJiFU1pG-roghPWsVbeXVSD6q1YwbtKlksC_/s72-w498-h746-c/EharmonyPhishingEmail.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-748246202686926282</id><published>2023-05-25T07:30:00.023-04:00</published><updated>2023-05-30T10:50:03.275-04:00</updated><title type='text'>The Top Regular Expression Testing App for 2023</title><content type='html'>&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica; font-size: xx-large;&quot;&gt;The Top Regular Expression Testing App for 2023&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Top Pick -&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Netspresso Lite because it is the only regular expression (regex) testing application that&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;application that highlights replacements, not just matches.&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;div style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Netspresso Lite App&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span style=&quot;font-size: medium;&quot;&gt;Features&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Save regular expression project&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Generates a node for each match&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Each node expands to subgroups&amp;nbsp;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Locates each matches and subgroups in input test data&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Generated a node for each replacement&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Locates each replacement and subgroups in live generated replaced input test data and sub-groups, &lt;b&gt;www 1st&lt;/b&gt;&amp;nbsp;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;.NET code generation for match groups, Regex.Replace and Regex.Split.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;.NET Language Regex Supported&amp;nbsp;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhki1QnHHvxosPiOyM9szaMzoB5oicsVhBKxUS7MQM6vGmYpy_pwp0Oz9kDyPvoKtBlrUeOsqVyNpSsZfZd4gnvLLEN7b2IawJ31fUEjCGDP3ZaTxXhXmaThaygMxvQBZ9foFAWrC2SE6MLwVlcDYeTb0Uu0Isr8DVpvmXQCcH1gvWYa4XG-4SLXXNl/s1204/NetspressoClientMarkedup-May302023.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;1204&quot; data-original-width=&quot;1016&quot; height=&quot;803&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhki1QnHHvxosPiOyM9szaMzoB5oicsVhBKxUS7MQM6vGmYpy_pwp0Oz9kDyPvoKtBlrUeOsqVyNpSsZfZd4gnvLLEN7b2IawJ31fUEjCGDP3ZaTxXhXmaThaygMxvQBZ9foFAWrC2SE6MLwVlcDYeTb0Uu0Isr8DVpvmXQCcH1gvWYa4XG-4SLXXNl/w678-h803/NetspressoClientMarkedup-May302023.png&quot; width=&quot;678&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; font-family: &amp;quot;Times New Roman&amp;quot;; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;br style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;;&quot; /&gt;&lt;div style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; font-family: &amp;quot;Times New Roman&amp;quot;; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgjA5i7146ioTzpdfDAKSBLm9Bs8XmrqTXN_Fbwkv5F2B0tUVcFQJZtDJLWnUc4T-eLUvooSDK4yyOi_ZGZ1E5svQrbslxEPetv18Qi1yw7lUzBVogAWIqeyTb25Pxl1j0Q-Y2NT034-YZy1CLTLVCkjHc7tQcGwCpVSFuiVlZFTrnevbjsYXqhFvhZ/s1264/EmacsURLPasteforwebsite.jpg&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;br /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&lt;/div&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;Matches are highlighted in node tree - explained&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Netspresso Lite highlights &lt;span style=&quot;background-color: #fcff01;&quot;&gt;&lt;b&gt;named&lt;/b&gt; regular expressions&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;

&lt;!--HTML generated using hilite.me--&gt;&lt;div style=&quot;background: rgb(248, 248, 248); border-color: gray; border-image: initial; border-style: solid; border-width: 0.1em 0.1em 0.1em 0.8em; border: solid gray; overflow: auto; padding: 0.2em 0.6em; width: auto;&quot;&gt;&lt;pre style=&quot;line-height: 125%; margin: 0px;&quot;&gt;(?&amp;lt;Month&amp;gt;&lt;span style=&quot;border: 1px solid rgb(255, 0, 0);&quot;&gt;\&lt;/span&gt;d{&lt;span style=&quot;color: #666666;&quot;&gt;1.2&lt;/span&gt;})
&lt;/pre&gt;&lt;/div&gt;


&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;see screen capture in the Regular Expression field.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;In screen capture below Match Nodes are accessed in&amp;nbsp;&lt;span style=&quot;background-color: #04ff00;&quot;&gt;light green area&lt;/span&gt;, Replacement Nodes are accessed in the&amp;nbsp;&lt;span style=&quot;background-color: #01ffff;&quot;&gt;cyan (light blue) area&lt;/span&gt;.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Clicking each match highlights and locates the match in the Test Input Data!&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Netspresso Lites creates an &lt;/span&gt;&lt;span style=&quot;background-color: #fcff01; font-family: helvetica;&quot;&gt;expandable node tree for matches&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt; (named or number) and replacements.&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8X-ZrBLCLW_vdv-MBYTraNM9qn4OhHdmOwUJhf3wPpRpZbfoYUaFwTcgqUnxja64urLTONS-R8oUhSApoCX19RR1U7X08LaFvx03QeMTC3OaY0FeFZOcZeTLMklnzSJNKN7CdbBiRttEJBpsNJwJ5ZDiXNqyDQy5mWVEchu4CY0r5p1grJyUj53JG/s430/NetspressoClient-MatchesZoom.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;416&quot; data-original-width=&quot;430&quot; height=&quot;445&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8X-ZrBLCLW_vdv-MBYTraNM9qn4OhHdmOwUJhf3wPpRpZbfoYUaFwTcgqUnxja64urLTONS-R8oUhSApoCX19RR1U7X08LaFvx03QeMTC3OaY0FeFZOcZeTLMklnzSJNKN7CdbBiRttEJBpsNJwJ5ZDiXNqyDQy5mWVEchu4CY0r5p1grJyUj53JG/w459-h445/NetspressoClient-MatchesZoom.png&quot; width=&quot;459&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;That means each match appears as a node&amp;nbsp;number, 1&lt;/span&gt;&lt;b style=&quot;font-family: helvetica;&quot;&gt;. &quot;12/25/02&quot; above there are 4 matches found.&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Within each match you expand it to get the details of each match.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Each match is broken down into subgroups&amp;nbsp;of the match. Subgroup are delineated by parenthesis () in the regular expression,&amp;nbsp;&amp;nbsp;&lt;b&gt;(?&amp;lt;Month&amp;gt;\d{1.2}).&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Each subgroup match group is a number followed by&amp;nbsp;value&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;or name group, &lt;/span&gt;&lt;b style=&quot;font-family: helvetica;&quot;&gt;1 Month: &quot;12&quot; - Month named group matched yields value 12.&amp;nbsp;&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Likewise, replacements are highlighted - explained&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;span style=&quot;background-color: #fcff01;&quot;&gt;Click on a node and it will locate&amp;nbsp;and highlight&amp;nbsp;it in the replacement test data!&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8MB8jJVKfR16uQQvbuVrpRG-rwVznuHlXq1i5D3sh2BAwQuD9cxqNeCu-Fpwx2B4gYISrjVV_KeO8ZZTn3XHykuEBMZp-QpRD8NN1kyzRrma_1T5LKzP6_6rLNZLNfpfjFX3skFmULtu0Ub90TcOgU5QSnaBSSNnLgvvTsGYuUeodQqNG19s1w79Q/s435/NetspressoClient-ReplacementsZoom.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;435&quot; data-original-width=&quot;431&quot; height=&quot;472&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8MB8jJVKfR16uQQvbuVrpRG-rwVznuHlXq1i5D3sh2BAwQuD9cxqNeCu-Fpwx2B4gYISrjVV_KeO8ZZTn3XHykuEBMZp-QpRD8NN1kyzRrma_1T5LKzP6_6rLNZLNfpfjFX3skFmULtu0Ub90TcOgU5QSnaBSSNnLgvvTsGYuUeodQqNG19s1w79Q/w467-h472/NetspressoClient-ReplacementsZoom.png&quot; width=&quot;467&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;In image above, the replacement &lt;b&gt;3 1.$3 &#39;Year&#39;: &quot;02&quot;&lt;/b&gt;, means the 3rd item is matched only once, and with subgroup $3, named &#39;Year&#39; with replacement value &quot;02 &quot;. In screen capture above, the group is located in the rendered &lt;i&gt;replacement input test data.&lt;/i&gt;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica; font-size: large;&quot;&gt;Where can I get it?&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Netspresso Lite is one of 20 power tools available in&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;a href=&quot;https://clipboardplaintextpowertool.blogspot.com/&quot;&gt;Clipboard Plaintext PowerTool&lt;/a&gt;.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;i style=&quot;font-family: helvetica;&quot;&gt;The only tool to expand and explains regex matches and substitutions, another world wide 1st.&lt;/i&gt;&lt;/div&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/748246202686926282/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/The-Top-Regular-Expression-Testing-App-for-2023.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/748246202686926282'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/748246202686926282'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/The-Top-Regular-Expression-Testing-App-for-2023.html' title='The Top Regular Expression Testing App for 2023'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhki1QnHHvxosPiOyM9szaMzoB5oicsVhBKxUS7MQM6vGmYpy_pwp0Oz9kDyPvoKtBlrUeOsqVyNpSsZfZd4gnvLLEN7b2IawJ31fUEjCGDP3ZaTxXhXmaThaygMxvQBZ9foFAWrC2SE6MLwVlcDYeTb0Uu0Isr8DVpvmXQCcH1gvWYa4XG-4SLXXNl/s72-w678-h803-c/NetspressoClientMarkedup-May302023.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-4810784017983522999</id><published>2023-05-24T07:30:00.001-04:00</published><updated>2023-05-24T07:30:00.127-04:00</updated><title type='text'>Meet Ukranian Women phishing email with subject Enjoy with me</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;For the record, this is a&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;Meet Ukranian Women&amp;nbsp;&lt;span style=&quot;color: red;&quot;&gt;phishing email&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;attempt that is recently going around, with subject &quot;&lt;i&gt;Enjoy with me&lt;/i&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;What to do? &amp;nbsp;&lt;/span&gt;&lt;b&gt;Report them&lt;/b&gt;&lt;span face=&quot;&quot;&gt;, goto bottom of page.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica; font-size: small;&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;center&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoNormalTable&quot; style=&quot;background-color: white; width: 600px;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;padding: 0in; width: 600px;&quot; valign=&quot;top&quot; width=&quot;100%&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;&lt;b&gt;From&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;From Larysa &amp;lt;h4A1TeWcpa1S@farrelwebsite.my.id&amp;gt;&lt;br /&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&amp;nbsp;Re: Enjoy with me!&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzrqInKy3KNejwzeA59_kX_EcGZZYEP3SWfdbVk969QhLtt5WQBAn1d_XLLgJ2o-smevsPwZtFsUy-QSBdgmNjwXeM-R1jZLudH6umc6NVwNcliTMrypZ0hbqHvlPnFAEv4U2NCd8LN8YPgizE4BTNsLYe6EELA85v4jWWmr7zEb8WjCw1F09ceQ6p/s1765/PhishingUkranianWomen.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;1765&quot; data-original-width=&quot;832&quot; height=&quot;1021&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzrqInKy3KNejwzeA59_kX_EcGZZYEP3SWfdbVk969QhLtt5WQBAn1d_XLLgJ2o-smevsPwZtFsUy-QSBdgmNjwXeM-R1jZLudH6umc6NVwNcliTMrypZ0hbqHvlPnFAEv4U2NCd8LN8YPgizE4BTNsLYe6EELA85v4jWWmr7zEb8WjCw1F09ceQ6p/w482-h1021/PhishingUkranianWomen.jpg&quot; width=&quot;482&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;PHISHING LINKs;&lt;/span&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&lt;br /&gt;1.&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #2b00fe;&quot;&gt;http://satoshipink.africa/?xxxxxxxxxxxxx&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style=&quot;font-family: arial; font-size: medium;&quot;&gt;&lt;span style=&quot;font-weight: 400;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;div&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;How to tell this is a Phishing email ?&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Check email address in full, if it&#39;s not from originating company then it&#39;s phishing.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Hover over all links in email, if it&#39;s not from the&amp;nbsp; company&#39;s website then forget it.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;The best way is to&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;How to examine Email Message Source ?&lt;/span&gt;&lt;/h3&gt;
&lt;span face=&quot;&quot;&gt;Now lets look at message source&lt;/span&gt;&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Actions-&amp;gt;View Message Source.&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down arrow to top right)-&amp;gt;Show original.&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;span face=&quot;&quot;&gt;Check for suspicious links, anything that does not originate from apple.com.&lt;/span&gt;&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report Phishing Email (not as Spam)&lt;/span&gt;&lt;/h3&gt;
&lt;div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Junk (at Top)-&amp;gt;Phishing Scam&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down-arrow to top right)-&amp;gt;Report Phishing&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;span style=&quot;background-color: lime;&quot;&gt;Report Phishing&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h4&gt;
&lt;span face=&quot;&quot; style=&quot;font-weight: normal;&quot;&gt;If you have received this email take it further at&amp;nbsp;&lt;/span&gt;&lt;/h4&gt;
&lt;h3&gt;
&lt;ol style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;li&gt;&lt;span face=&quot;&quot; style=&quot;color: #0000ee;&quot;&gt;&lt;u&gt;&lt;a href=&quot;https://www.google.com/safebrowsing/report_phish/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://www.google.com/safebrowsing/report_phish/&lt;/a&gt;&lt;/u&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;/div&gt;
&lt;/h3&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report phishing at Microsoft and subsequently government agencies&lt;/span&gt;&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&quot; style=&quot;font-family: &amp;quot;trebuchet ms&amp;quot;, sans-serif;&quot;&gt;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.cisa.gov/uscert/report-phishing&quot;&gt;Report Phishing Sites | CISA&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.fightspam.gc.ca/eic/site/030.nsf/eng/home&quot;&gt;Home - Canada&#39;s Anti-Spam Legislation (fightspam.gc.ca)&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/4810784017983522999/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/Meet-Ukranian-Women-phishing-email-with-subject-Enjoy-with-me.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/4810784017983522999'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/4810784017983522999'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/Meet-Ukranian-Women-phishing-email-with-subject-Enjoy-with-me.html' title='Meet Ukranian Women phishing email with subject Enjoy with me'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzrqInKy3KNejwzeA59_kX_EcGZZYEP3SWfdbVk969QhLtt5WQBAn1d_XLLgJ2o-smevsPwZtFsUy-QSBdgmNjwXeM-R1jZLudH6umc6NVwNcliTMrypZ0hbqHvlPnFAEv4U2NCd8LN8YPgizE4BTNsLYe6EELA85v4jWWmr7zEb8WjCw1F09ceQ6p/s72-w482-h1021-c/PhishingUkranianWomen.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-5486775241222520700</id><published>2023-05-22T07:30:00.002-04:00</published><updated>2023-05-22T17:26:32.124-04:00</updated><title type='text'>Malicious Exploits has hit VSCode Extensions Marketplace</title><content type='html'>&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Even innocuous items like themes are under threat by malware writers. Theme Dracula dark, not to be confused with Dark-Dracula Theme and&amp;nbsp;4986 others, is one such theme infected by malware and pointed out by CheckPoint. Removed by Microsoft, but now what extensions can you trust?&amp;nbsp; Same old opens source problem, you pay for what you get.&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW-YBOlJmWdfw0DJilpq_APiEt7P1LLj7mU5w-Z95mMmGM_2UfxOXzMqjVvp44yQJUD1aX08dwPnziOx1xlH1ydEywRu_uKd7IlxNOviGoo57rX1qU6HSjwp0r9nrZiTH03MICdKyiOESI05sBcTKyEkMC2jpRRWDbmf7MHRcPiDa8F_xL_C5iaAwf/s1012/DraculaDark.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;386&quot; data-original-width=&quot;1012&quot; height=&quot;244&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW-YBOlJmWdfw0DJilpq_APiEt7P1LLj7mU5w-Z95mMmGM_2UfxOXzMqjVvp44yQJUD1aX08dwPnziOx1xlH1ydEywRu_uKd7IlxNOviGoo57rX1qU6HSjwp0r9nrZiTH03MICdKyiOESI05sBcTKyEkMC2jpRRWDbmf7MHRcPiDa8F_xL_C5iaAwf/w640-h244/DraculaDark.jpg&quot; width=&quot;640&quot; /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Source Article :&amp;nbsp;&lt;a href=&quot;https://blog.checkpoint.com/securing-the-cloud/malicious-vscode-extensions-with-more-than-45k-downloads-steal-pii-and-enable-backdoors/&quot;&gt;VSCode Security: Malicious Extensions Detected- More Than 45,000 Downloads- PII Exposed, and Backdoors Enabled - Check Point Blog&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/5486775241222520700/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/blog-post_22.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/5486775241222520700'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/5486775241222520700'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/blog-post_22.html' title='Malicious Exploits has hit VSCode Extensions Marketplace'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW-YBOlJmWdfw0DJilpq_APiEt7P1LLj7mU5w-Z95mMmGM_2UfxOXzMqjVvp44yQJUD1aX08dwPnziOx1xlH1ydEywRu_uKd7IlxNOviGoo57rX1qU6HSjwp0r9nrZiTH03MICdKyiOESI05sBcTKyEkMC2jpRRWDbmf7MHRcPiDa8F_xL_C5iaAwf/s72-w640-h244-c/DraculaDark.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-6522595039942403665</id><published>2023-05-20T07:30:00.001-04:00</published><updated>2023-05-20T12:15:30.316-04:00</updated><title type='text'>Walmart phishing email with subject FW $500 Giftcard</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;For the record, this is a&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;Walmart&amp;nbsp;&lt;span style=&quot;color: red;&quot;&gt;phishing email&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;attempt that is recently going around, with subject &quot;&lt;i&gt;Giftcard&lt;/i&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;What to do? &amp;nbsp;&lt;/span&gt;&lt;b&gt;Report them&lt;/b&gt;&lt;span face=&quot;&quot;&gt;, goto bottom of page.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica; font-size: small;&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;center&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoNormalTable&quot; style=&quot;background-color: white; width: 600px;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;padding: 0in; width: 600px;&quot; valign=&quot;top&quot; width=&quot;100%&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;&lt;b&gt;From&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;: _Walmart_&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&amp;lt;business.accountsgxNIQBn6lcO6@icumed.com&amp;gt;&lt;br /&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&amp;nbsp;FW Giftcard&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;span style=&quot;font-family: verdana;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh9t9WhqHX9VCojwj_OMce42yCdtplfg8AYCdb_bf_sYU8f7C-qi8nkKg3AQENn-qefflKUdFJ8TGD48mHzzj_5QjKLeLzMeIllMFe7KhHCDQs6HauLEIzzq8fG8rvWmQit4RDfT-rvlpnc5mOZI3oJS3EuEoYMXu80I-3m_p68pMxx2zl7vDJeTgWV/s1107/WalmartPhishingEmail500GiftCard.PNG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;1107&quot; data-original-width=&quot;845&quot; height=&quot;640&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh9t9WhqHX9VCojwj_OMce42yCdtplfg8AYCdb_bf_sYU8f7C-qi8nkKg3AQENn-qefflKUdFJ8TGD48mHzzj_5QjKLeLzMeIllMFe7KhHCDQs6HauLEIzzq8fG8rvWmQit4RDfT-rvlpnc5mOZI3oJS3EuEoYMXu80I-3m_p68pMxx2zl7vDJeTgWV/w488-h640/WalmartPhishingEmail500GiftCard.PNG&quot; width=&quot;488&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;PHISHING LINKs;&lt;/span&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&lt;br /&gt;1.&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #2b00fe;&quot;&gt;http://robotcooking.info/?xxxxxxxx....&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style=&quot;font-family: arial; font-size: medium;&quot;&gt;&lt;span style=&quot;font-weight: 400;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;div&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;How to tell this is a Phishing email ?&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Check email address in full, if it&#39;s not from originating company then it&#39;s phishing.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Hover over all links in email, if it&#39;s not from the&amp;nbsp; company&#39;s website then forget it.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;The best way is to&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;How to examine Email Message Source ?&lt;/span&gt;&lt;/h3&gt;
&lt;span face=&quot;&quot;&gt;Now lets look at message source&lt;/span&gt;&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Actions-&amp;gt;View Message Source.&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down arrow to top right)-&amp;gt;Show original.&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;span face=&quot;&quot;&gt;Check for suspicious links, anything that does not originate from apple.com.&lt;/span&gt;&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report Phishing Email (not as Spam)&lt;/span&gt;&lt;/h3&gt;
&lt;div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Junk (at Top)-&amp;gt;Phishing Scam&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down-arrow to top right)-&amp;gt;Report Phishing&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;span style=&quot;background-color: lime;&quot;&gt;Report Phishing&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h4&gt;
&lt;span face=&quot;&quot; style=&quot;font-weight: normal;&quot;&gt;If you have received this email take it further at&amp;nbsp;&lt;/span&gt;&lt;/h4&gt;
&lt;h3&gt;
&lt;ol style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;li&gt;&lt;span face=&quot;&quot; style=&quot;color: #0000ee;&quot;&gt;&lt;u&gt;&lt;a href=&quot;https://www.google.com/safebrowsing/report_phish/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://www.google.com/safebrowsing/report_phish/&lt;/a&gt;&lt;/u&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;/div&gt;
&lt;/h3&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report phishing at Microsoft and subsequently government agencies&lt;/span&gt;&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&quot; style=&quot;font-family: &amp;quot;trebuchet ms&amp;quot;, sans-serif;&quot;&gt;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.cisa.gov/uscert/report-phishing&quot;&gt;Report Phishing Sites | CISA&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.fightspam.gc.ca/eic/site/030.nsf/eng/home&quot;&gt;Home - Canada&#39;s Anti-Spam Legislation (fightspam.gc.ca)&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/6522595039942403665/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/Walmart-phishing-email-with-subject-FW-24500-Giftcard.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/6522595039942403665'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/6522595039942403665'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/Walmart-phishing-email-with-subject-FW-24500-Giftcard.html' title='Walmart phishing email with subject FW $500 Giftcard'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh9t9WhqHX9VCojwj_OMce42yCdtplfg8AYCdb_bf_sYU8f7C-qi8nkKg3AQENn-qefflKUdFJ8TGD48mHzzj_5QjKLeLzMeIllMFe7KhHCDQs6HauLEIzzq8fG8rvWmQit4RDfT-rvlpnc5mOZI3oJS3EuEoYMXu80I-3m_p68pMxx2zl7vDJeTgWV/s72-w488-h640-c/WalmartPhishingEmail500GiftCard.PNG" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-2340925809228887437</id><published>2023-05-10T07:00:00.002-04:00</published><updated>2023-05-27T13:27:43.005-04:00</updated><title type='text'>iCloud phishing email with subject Re: Your Cloud storage might be full</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;For the record, this is a iCloud&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;&amp;nbsp;&lt;span style=&quot;color: red;&quot;&gt;phishing email&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;attempt that is recently going around, with subject &quot;&lt;i&gt;Re: Your Cloud storage might be full&lt;/i&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;What to do? &amp;nbsp;&lt;/span&gt;&lt;b&gt;Report them&lt;/b&gt;&lt;span face=&quot;&quot;&gt;, goto bottom of page.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica; font-size: small;&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;center&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoNormalTable&quot; style=&quot;background-color: white; width: 600px;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;padding: 0in; width: 600px;&quot; valign=&quot;top&quot; width=&quot;100%&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;&lt;b&gt;From&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;Cloud Storage &amp;lt;warehouse@stem.net.nz&amp;gt;&lt;br /&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&amp;nbsp;Re: Your Cloud storage might be full&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjFqeXhxL0tUYkq0pOKRvOu3mnGDPsVNxDPwH8JUla8B6WXteMR6gp49XNb_3Zied0n-beBBn9H1rK6Px34w4y5CKhot_EWJrhmNq-2uExAXLoJJKOscn-gBE2IszkVGQRMLzZ5QkIW0buyKFnJ60jgBh6dvoSAnvJ5UZGiTFVKADbnDp76bfd1xwAn/s896/PhishingEmailiCloudFull.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;451&quot; data-original-width=&quot;896&quot; height=&quot;322&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjFqeXhxL0tUYkq0pOKRvOu3mnGDPsVNxDPwH8JUla8B6WXteMR6gp49XNb_3Zied0n-beBBn9H1rK6Px34w4y5CKhot_EWJrhmNq-2uExAXLoJJKOscn-gBE2IszkVGQRMLzZ5QkIW0buyKFnJ60jgBh6dvoSAnvJ5UZGiTFVKADbnDp76bfd1xwAn/w640-h322/PhishingEmailiCloudFull.png&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;PHISHING LINKs;&lt;/span&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&lt;br /&gt;1.&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #2b00fe;&quot;&gt;http://everasolutions.store/?xxxxxxxxxxxxx&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style=&quot;font-family: arial; font-size: medium;&quot;&gt;&lt;span style=&quot;font-weight: 400;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;div&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;How to tell this is a Phishing email ?&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Check email address in full, if it&#39;s not from originating company then it&#39;s phishing.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Hover over all links in email, if it&#39;s not from the&amp;nbsp; company&#39;s website then forget it.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;The best way is to&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;How to examine Email Message Source ?&lt;/span&gt;&lt;/h3&gt;
&lt;span face=&quot;&quot;&gt;Now lets look at message source&lt;/span&gt;&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Actions-&amp;gt;View Message Source.&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down arrow to top right)-&amp;gt;Show original.&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;span face=&quot;&quot;&gt;Check for suspicious links, anything that does not originate from apple.com.&lt;/span&gt;&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report Phishing Email (not as Spam)&lt;/span&gt;&lt;/h3&gt;
&lt;div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Junk (at Top)-&amp;gt;Phishing Scam&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down-arrow to top right)-&amp;gt;Report Phishing&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;span style=&quot;background-color: lime;&quot;&gt;Report Phishing&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h4&gt;
&lt;span face=&quot;&quot; style=&quot;font-weight: normal;&quot;&gt;If you have received this email take it further at&amp;nbsp;&lt;/span&gt;&lt;/h4&gt;
&lt;h3&gt;
&lt;ol style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;li&gt;&lt;span face=&quot;&quot; style=&quot;color: #0000ee;&quot;&gt;&lt;u&gt;&lt;a href=&quot;https://www.google.com/safebrowsing/report_phish/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://www.google.com/safebrowsing/report_phish/&lt;/a&gt;&lt;/u&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;/div&gt;
&lt;/h3&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report phishing at Microsoft and subsequently government agencies&lt;/span&gt;&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&quot; style=&quot;font-family: &amp;quot;trebuchet ms&amp;quot;, sans-serif;&quot;&gt;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.cisa.gov/uscert/report-phishing&quot;&gt;Report Phishing Sites | CISA&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.fightspam.gc.ca/eic/site/030.nsf/eng/home&quot;&gt;Home - Canada&#39;s Anti-Spam Legislation (fightspam.gc.ca)&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/2340925809228887437/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/blog-post_24.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/2340925809228887437'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/2340925809228887437'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/05/blog-post_24.html' title='iCloud phishing email with subject Re: Your Cloud storage might be full'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjFqeXhxL0tUYkq0pOKRvOu3mnGDPsVNxDPwH8JUla8B6WXteMR6gp49XNb_3Zied0n-beBBn9H1rK6Px34w4y5CKhot_EWJrhmNq-2uExAXLoJJKOscn-gBE2IszkVGQRMLzZ5QkIW0buyKFnJ60jgBh6dvoSAnvJ5UZGiTFVKADbnDp76bfd1xwAn/s72-w640-h322-c/PhishingEmailiCloudFull.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-4004733006885448013</id><published>2023-04-29T10:51:00.005-04:00</published><updated>2023-04-29T10:54:53.463-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="phishing"/><title type='text'>Shell phishing email with subject Re: Shell Gas Station Knows Rewards! Get your Rewards Here!</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;For the record, this is a&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;Shell&amp;nbsp;&lt;span style=&quot;color: red;&quot;&gt;phishing email&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;attempt that is recently going around, with subject &quot;&lt;i&gt;Re: Shell Gas Station Knows Rewards! Get your Rewards Here!&lt;/i&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;What to do? &amp;nbsp;&lt;/span&gt;&lt;b&gt;Report them&lt;/b&gt;&lt;span face=&quot;&quot;&gt;, goto bottom of page.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica; font-size: small;&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;center&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoNormalTable&quot; style=&quot;background-color: white; width: 600px;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;padding: 0in; width: 600px;&quot; valign=&quot;top&quot; width=&quot;100%&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;span face=&quot;&quot;&gt;&lt;span&gt;&lt;b&gt;From&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;Shell Gas Station Rewards &amp;lt;&lt;span style=&quot;background-color: #fcff01;&quot;&gt;noreply@proofserve.com&lt;/span&gt;&amp;gt;&lt;br /&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;span face=&quot;&quot;&gt;&amp;nbsp;:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;Re: Shell Gas Station Knows Rewards! Get your Rewards Here!&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;span style=&quot;font-family: verdana;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh1y9hXClNIuRtrcX-US98y_QUm2C2XArXY0KJ2KmsFMZTipOFC3-c5NbAZArN62A1jKJKV5Kjo7_Ba4Xqt1S7ETqsI28qL92XK3X9bIwZZIYjWJlLJonbzaDOhCg4q6NRHJLCui49hA9fNVgJdb4xUqO0rx4Iu6gmX1ePk5xZofjkHZEHDy7sW2g8T/s1261/ShellPhishingEmail.PNG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;1261&quot; data-original-width=&quot;790&quot; height=&quot;749&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh1y9hXClNIuRtrcX-US98y_QUm2C2XArXY0KJ2KmsFMZTipOFC3-c5NbAZArN62A1jKJKV5Kjo7_Ba4Xqt1S7ETqsI28qL92XK3X9bIwZZIYjWJlLJonbzaDOhCg4q6NRHJLCui49hA9fNVgJdb4xUqO0rx4Iu6gmX1ePk5xZofjkHZEHDy7sW2g8T/w468-h749/ShellPhishingEmail.PNG&quot; width=&quot;468&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;links to&amp;nbsp;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgDe_g8ExM05Haf6Hc8aePtNuyXCQX7TQppEQ5d7BCmDZmBCVD9I5NfIu1eDJBb5jD7TcUGs9K-VUi6yXowF-JRO_sq15oswr6wE8ZR5kyNB7_PiGr4xNTbQCNFYrZE8Hl0A1sZpAnpjLnd8wCbTFqOOR_qQdov3Bu0AQWo8dt_lbUtV065N2nML5hb/s1023/ShellPhishingEmailPart2.PNG&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;770&quot; data-original-width=&quot;1023&quot; height=&quot;428&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgDe_g8ExM05Haf6Hc8aePtNuyXCQX7TQppEQ5d7BCmDZmBCVD9I5NfIu1eDJBb5jD7TcUGs9K-VUi6yXowF-JRO_sq15oswr6wE8ZR5kyNB7_PiGr4xNTbQCNFYrZE8Hl0A1sZpAnpjLnd8wCbTFqOOR_qQdov3Bu0AQWo8dt_lbUtV065N2nML5hb/w568-h428/ShellPhishingEmailPart2.PNG&quot; width=&quot;568&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;PHISHING LINKs;&lt;/span&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&lt;br /&gt;1.&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #2b00fe;&quot;&gt;http://fanroom.shop/?xxxxx....&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style=&quot;font-family: arial; font-size: medium;&quot;&gt;&lt;span style=&quot;font-weight: 400;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;div&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;How to tell this is a Phishing email ?&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Check email address in full, if it&#39;s not from originating company then it&#39;s phishing.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Hover over all links in email, if it&#39;s not from the&amp;nbsp; company&#39;s website then forget it.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;The best way is to&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;How to examine Email Message Source ?&lt;/span&gt;&lt;/h3&gt;
&lt;span face=&quot;&quot;&gt;Now lets look at message source&lt;/span&gt;&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Actions-&amp;gt;View Message Source.&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down arrow to top right)-&amp;gt;Show original.&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;span face=&quot;&quot;&gt;Check for suspicious links, anything that does not originate from apple.com.&lt;/span&gt;&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report Phishing Email (not as Spam)&lt;/span&gt;&lt;/h3&gt;
&lt;div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Outlook.com-&amp;gt;Junk (at Top)-&amp;gt;Phishing Scam&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span face=&quot;&quot;&gt;Gmail.com-&amp;gt;More (down-arrow to top right)-&amp;gt;Report Phishing&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;&lt;span style=&quot;background-color: lime;&quot;&gt;Report Phishing&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h4&gt;
&lt;span face=&quot;&quot; style=&quot;font-weight: normal;&quot;&gt;If you have received this email take it further at&amp;nbsp;&lt;/span&gt;&lt;/h4&gt;
&lt;h3&gt;
&lt;ol style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;li&gt;&lt;span face=&quot;&quot; style=&quot;color: #0000ee;&quot;&gt;&lt;u&gt;&lt;a href=&quot;https://www.google.com/safebrowsing/report_phish/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://www.google.com/safebrowsing/report_phish/&lt;/a&gt;&lt;/u&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div style=&quot;font-size: medium; font-weight: normal;&quot;&gt;
&lt;/div&gt;
&lt;/h3&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span face=&quot;&quot;&gt;Report phishing at Microsoft and subsequently government agencies&lt;/span&gt;&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&quot; style=&quot;font-family: &amp;quot;trebuchet ms&amp;quot;, sans-serif;&quot;&gt;http://www.microsoft.com/security/online-privacy/phishing-faq.aspx&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.cisa.gov/uscert/report-phishing&quot;&gt;Report Phishing Sites | CISA&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.fightspam.gc.ca/eic/site/030.nsf/eng/home&quot;&gt;Home - Canada&#39;s Anti-Spam Legislation (fightspam.gc.ca)&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/4004733006885448013/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/04/Shell-phishing-email-with-subject-Re-Shell-Gas-Station-Knows-Rewards-Get-your-Rewards-Here.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/4004733006885448013'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/4004733006885448013'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/04/Shell-phishing-email-with-subject-Re-Shell-Gas-Station-Knows-Rewards-Get-your-Rewards-Here.html' title='Shell phishing email with subject Re: Shell Gas Station Knows Rewards! Get your Rewards Here!'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh1y9hXClNIuRtrcX-US98y_QUm2C2XArXY0KJ2KmsFMZTipOFC3-c5NbAZArN62A1jKJKV5Kjo7_Ba4Xqt1S7ETqsI28qL92XK3X9bIwZZIYjWJlLJonbzaDOhCg4q6NRHJLCui49hA9fNVgJdb4xUqO0rx4Iu6gmX1ePk5xZofjkHZEHDy7sW2g8T/s72-w468-h749-c/ShellPhishingEmail.PNG" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-490083043304637307</id><published>2023-04-18T07:30:00.029-04:00</published><updated>2023-06-23T14:46:20.144-04:00</updated><title type='text'>C# Parse Linux stat command timestamp with timezone</title><content type='html'>&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiMHbROi1nhmEjAKg1Ndg7wOQywtjcTGcpkolX2wEjevV1XOTWUNj6lYbdLXocCWBkZub5Q7lIMwFQOnE24UtJhp9pZxZmBH73oEPu83Iet-6BigNiGmSe4XnCDetd6GtGo3bdb_Hg-lh3cEMeO8D1oj4fb2BJx26Xzpvmw-C0GzsCOCRyRrIZ9KyKd/s474/HospitalLINUX.jpg&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;474&quot; data-original-width=&quot;474&quot; height=&quot;134&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiMHbROi1nhmEjAKg1Ndg7wOQywtjcTGcpkolX2wEjevV1XOTWUNj6lYbdLXocCWBkZub5Q7lIMwFQOnE24UtJhp9pZxZmBH73oEPu83Iet-6BigNiGmSe4XnCDetd6GtGo3bdb_Hg-lh3cEMeO8D1oj4fb2BJx26Xzpvmw-C0GzsCOCRyRrIZ9KyKd/w134-h134/HospitalLINUX.jpg&quot; width=&quot;134&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;Here&#39;s a prototype on how to handle datetime formats not supported by the limits of the .NET framework&#39;s DateTime and&amp;nbsp;DateTimeOffset format strings.&amp;nbsp;&lt;/span&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;This code will parse UNIX/LINUX datetime with timezone, specifically as generated by stat command.&lt;/span&gt;&lt;/p&gt;&lt;div style=&quot;background: rgb(255, 255, 255); border-color: gray; border-image: initial; border-style: solid; border-width: 0.1em 0.1em 0.1em 0.8em; border: solid gray; overflow: auto; padding: 0.2em 0.6em; width: auto;&quot;&gt;&lt;pre style=&quot;line-height: 125%; margin: 0px;&quot;&gt;stat .bashrc| grep Modify
Modify: &lt;span style=&quot;color: #009999;&quot;&gt;2014&lt;/span&gt;-&lt;span style=&quot;color: #009999;&quot;&gt;03&lt;/span&gt;-&lt;span style=&quot;color: #009999;&quot;&gt;30&lt;/span&gt; &lt;span style=&quot;color: #009999;&quot;&gt;23&lt;/span&gt;:&lt;span style=&quot;color: #009999;&quot;&gt;14&lt;/span&gt;:&lt;span style=&quot;color: #009999;&quot;&gt;47.658210121&lt;/span&gt; -&lt;span style=&quot;color: #009999;&quot;&gt;0500&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;
We normally would expect to parse this format&amp;nbsp;
  
 &lt;!--HTML generated using hilite.me--&gt;using custom DateTimeOffset format with a ...ParseExact statement.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div style=&quot;background: rgb(255, 255, 255); border-color: gray; border-image: initial; border-style: solid; border-width: 0.1em 0.1em 0.1em 0.8em; border: solid gray; overflow: auto; padding: 0.2em 0.6em; width: auto;&quot;&gt;&lt;pre style=&quot;line-height: 125%; margin: 0px;&quot;&gt;&lt;span style=&quot;color: #aa5500;&quot;&gt;&quot;yyyy-MM-dd HH:mm:ss.FFFFFFFFF zzz&quot;&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;On first blush, we expect this to work. A custom format should handle the input we are trying to parse. Note the 9 Fs in a row.&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;But this is not supported in the .NET framework.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;This is because .NET datetime format strings will not support consuming more than 7Fs in a row. 7Fs is the limit in terms of accuracy. I was a little shocked at this. Custom formats should handle any combination and permutation thrown at it, but more importantly this is a canonical Linux timestamp! This &lt;i&gt;should&lt;/i&gt; have been part of the test suite guys!&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;So, here&#39;s a way to parser stat command timestamp, but it will lose a tiny amount of accuracy.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;The regex here is used to validate the stat datetimeoffset format and truncate the last 2 digits, losing the picoseconds (10^-9) in resolution.&amp;nbsp; Satisfactory in my situation. &lt;br /&gt;&lt;br /&gt;Note: The lowest datetime resolution measurement is a single tick which represents one hundred nanoseconds or one ten-millionth of a second. There are 10,000 ticks in a millisecond (see &lt;a href=&quot;https://learn.microsoft.com/en-us/dotnet/api/system.timespan.tickspermillisecond?view=net-5.0&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;TicksPerMillisecond&lt;/a&gt;) and 10 million ticks in a second.&lt;br /&gt;&lt;/span&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;iframe frameborder=&quot;0&quot; height=&quot;475&quot; src=&quot;https://dotnetfiddle.net/Widget/rUASg1&quot; style=&quot;background-color: #5e4674; background-image: url(&#39;https://nxllng.bl.files.1drv.com/y4mcb76YiFbzD3rVmSSlyisd-zAHplfhsHEbv8pFMAgbcyoZwdb43wza_-Xvz4DTMAEyqB2DsYCYja4tgfRKaJqZbW16SjZF3S-3iqeyuvrI6VMoWO2F207YuKogage76aLR4ObLfVA0rzHaenwAJfi_gHHxkbtFAj-EUPRs2TR8dPLwJIfdBZJVNzP-TBfVeiQnAyLKgv0VMDbuA_MJtsOJw&#39;); background-position: center; background-repeat: no-repeat; background-size: 480px 360px;&quot; width=&quot;100%&quot;&gt;
&lt;p&gt;Fallback link for browsers that don&#39;t support iframes - &lt;a href=&quot;https://dotnetfiddle.net/Widget/rUASg1&quot;&gt;.netfiddle widget improved by http://metadataconsulting.blogspot.com/&lt;/a&gt;&lt;/p&gt;
&lt;/iframe&gt;

&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Here&#39;s the static code in case JIT site expires.&lt;/span&gt;&lt;/p&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;!--HTML generated using hilite.me--&gt;&lt;div style=&quot;background: rgb(255, 255, 255); border-color: gray; border-image: initial; border-style: solid; border-width: 0.1em 0.1em 0.1em 0.8em; border: solid gray; overflow: auto; padding: 0.2em 0.6em; width: auto;&quot;&gt;&lt;pre style=&quot;line-height: 125%; margin: 0px;&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;using&lt;/span&gt; System;&lt;span style=&quot;color: blue;&quot;&gt;using&lt;/span&gt; System.Globalization; &lt;span style=&quot;color: blue;&quot;&gt;using&lt;/span&gt; System.Text.RegularExpressions;
					
&lt;span style=&quot;color: blue;&quot;&gt;public&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;class&lt;/span&gt; &lt;span style=&quot;color: #2b91af;&quot;&gt;Program&lt;/span&gt;
{
	&lt;span style=&quot;color: blue;&quot;&gt;public&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;static&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;void&lt;/span&gt; Main()
	{
		&lt;span style=&quot;color: green;&quot;&gt;//Unix Stat CMD CANNOT BE FORMALIZED USING DATETIME and.or DATETIMEOFFSET FORMATS in .NET&lt;/span&gt;
		&lt;span style=&quot;color: green;&quot;&gt;//                                         FFFFFFFFF  not accepted!&lt;/span&gt;
		
		&lt;span style=&quot;color: #2b91af;&quot;&gt;string&lt;/span&gt; dateString = &lt;span style=&quot;color: #a31515;&quot;&gt;&quot;2010-11-29 17:56:22.000000000 -0800&quot;&lt;/span&gt;; 
		DateTimeOffset unixstatdt = &lt;span style=&quot;color: blue;&quot;&gt;new&lt;/span&gt; DateTimeOffset();  
                &lt;span style=&quot;color: green;&quot;&gt;//                                                                123456789&lt;/span&gt;
		&lt;span style=&quot;color: blue;&quot;&gt;if&lt;/span&gt; (DateTimeOffset.TryParseExact(dateString, &lt;span style=&quot;color: #a31515;&quot;&gt;&quot;yyyy-MM-dd HH:mm:ss.FFFFFFFFF zzz&quot;&lt;/span&gt;, CultureInfo.InvariantCulture, DateTimeStyles.None, &lt;span style=&quot;color: blue;&quot;&gt;out&lt;/span&gt; unixstatdt))
		{
				Console.WriteLine(&lt;span style=&quot;color: #a31515;&quot;&gt;&quot;Worked parsed Unix stat datetime with time zone\n        {0}&quot;&lt;/span&gt;, unixstatdt.ToString (&lt;span style=&quot;color: #a31515;&quot;&gt;&quot;o&quot;&lt;/span&gt;));
		}
		&lt;span style=&quot;color: blue;&quot;&gt;else&lt;/span&gt;
		{
			Console.WriteLine(&lt;span style=&quot;color: #a31515;&quot;&gt;&quot;Failed to parsed Unix stat datetime&quot;&lt;/span&gt;);
		}
		
		&lt;span style=&quot;color: green;&quot;&gt;//SOLUTION &lt;/span&gt;
		&lt;span style=&quot;color: green;&quot;&gt;//WE MUST TRUNCATE THE VALUE, CRUDE BUT IT WORKS down to 7 characters from 9&lt;/span&gt;
		&lt;span style=&quot;color: green;&quot;&gt;//REGEX TO VALIDATE AND CONSUME STAT CMD&lt;/span&gt;
		&lt;span style=&quot;color: #2b91af;&quot;&gt;string&lt;/span&gt; LinuxStatCMDpattern = &lt;span style=&quot;color: #a31515;&quot;&gt;@&quot;(\d{4}-\d{2}-\d{2})\s(\d{2}:\d{2}:\d{2}\.)(\d{7})\d{2}\s ([\+-]\d{4})&quot;&lt;/span&gt;;
                &lt;span style=&quot;color: #2b91af;&quot;&gt;string&lt;/span&gt; substitution = &lt;span style=&quot;color: #a31515;&quot;&gt;@&quot;$1 $2$3 $4&quot;&lt;/span&gt;;
                &lt;span style=&quot;color: green;&quot;&gt;//ACCEPTED F&#39;s of length 7 max&lt;/span&gt;
		&lt;span style=&quot;color: green;&quot;&gt;//                                   123456789&lt;/span&gt;
		&lt;span style=&quot;color: #2b91af;&quot;&gt;string&lt;/span&gt; input = &lt;span style=&quot;color: #a31515;&quot;&gt;@&quot;2021-03-17 08:53:39.540802643 +0100&quot;&lt;/span&gt;;
        RegexOptions options = RegexOptions.Singleline | RegexOptions.IgnorePatternWhitespace;
        
		Regex regexstatcmd = &lt;span style=&quot;color: blue;&quot;&gt;new&lt;/span&gt; Regex(LinuxStatCMDpattern, options);
		
		&lt;span style=&quot;color: #2b91af;&quot;&gt;string&lt;/span&gt; result = &lt;span style=&quot;color: #2b91af;&quot;&gt;string&lt;/span&gt;.Empty; 
		
		&lt;span style=&quot;color: blue;&quot;&gt;if&lt;/span&gt; (regexstatcmd.IsMatch(input)) 
			result = regexstatcmd.Replace(input, substitution);					          
		
		Console.WriteLine(&lt;span style=&quot;color: #a31515;&quot;&gt;&quot;Trimmed &quot;&lt;/span&gt;  + result);
&lt;span&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;//&lt;span&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;1234567&lt;/span&gt;&lt;/span&gt;
		&lt;span style=&quot;color: blue;&quot;&gt;if&lt;/span&gt; (DateTimeOffset.TryParseExact(result, &lt;span style=&quot;color: #a31515;&quot;&gt;&quot;yyyy-MM-dd HH:mm:ss.FFFFFFF zzz&quot;&lt;/span&gt;, CultureInfo.InvariantCulture, DateTimeStyles.None, &lt;span style=&quot;color: blue;&quot;&gt;out&lt;/span&gt; unixstatdt))
		{
				Console.WriteLine(&lt;span style=&quot;color: #a31515;&quot;&gt;&quot;Pass 2: Worked parsed Unix stat datetime with time zone\n        {0}&quot;&lt;/span&gt;, unixstatdt.ToString(&lt;span style=&quot;color: #a31515;&quot;&gt;&quot;o&quot;&lt;/span&gt;));
		}
		&lt;span style=&quot;color: blue;&quot;&gt;else&lt;/span&gt;
		{
			Console.WriteLine(&lt;span style=&quot;color: #a31515;&quot;&gt;&quot;Pass 2: Failed&quot;&lt;/span&gt;);
		}
		
		
	}
}
&lt;/pre&gt;&lt;/div&gt;

  
  &lt;/div&gt;&lt;/div&gt;


&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;
See it in action using my Clipboard PowerTool (&amp;nbsp;&lt;a href=&quot;https://clipboardplaintextpowertool.blogspot.com/&quot; target=&quot;_blank&quot;&gt;https://clipboardplaintextpowertool.blogspot.com/&lt;/a&gt;&amp;nbsp;) which allows you to copy any of the below dates and translate that to &lt;b&gt;current time zone and readable datetime&lt;/b&gt; stamp!!!&lt;/span&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;table style=&quot;background-color: white; border-collapse: collapse; border-spacing: 0px; border: 1px solid rgb(221, 221, 221); box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px 0px; color: #333333; font-family: sans-serif; font-size: 17.6px; margin: 0px 0px 1em; padding: 0px; width: 100%;&quot;&gt;&lt;tbody style=&quot;box-sizing: border-box; margin: 0px; padding: 0px;&quot;&gt;&lt;tr style=&quot;background-color: #f7f7f7; border-bottom: 1px solid rgb(221, 221, 221); box-sizing: border-box; margin: 0px; padding: 0px;&quot;&gt;&lt;th style=&quot;background-color: #e2f0c6; box-sizing: border-box; margin: 0px; padding: 5px; text-align: left;&quot;&gt;Date Time Format&lt;/th&gt;&lt;th style=&quot;background-color: #e2f0c6; box-sizing: border-box; margin: 0px; padding: 5px; text-align: left;&quot;&gt;DFT Date Time Now&lt;/th&gt;&lt;/tr&gt;&lt;tr style=&quot;border-bottom: 1px solid rgb(221, 221, 221); box-sizing: border-box; margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;UTC&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;2023-04-19T16:25:39Z&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;background-color: #f7f7f7; border-bottom: 1px solid rgb(221, 221, 221); box-sizing: border-box; margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;ISO-8601&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;2023-04-19T16:25:39+0000&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;border-bottom: 1px solid rgb(221, 221, 221); box-sizing: border-box; margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;RFC 2822&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;Wed, 19 Apr 2023 16:25:39 +0000&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;background-color: #f7f7f7; border-bottom: 1px solid rgb(221, 221, 221); box-sizing: border-box; margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;RFC 850&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;Wednesday, 19-Apr-23 16:25:39 UTC&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;border-bottom: 1px solid rgb(221, 221, 221); box-sizing: border-box; margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;RFC 1036&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;Wed, 19 Apr 23 16:25:39 +0000&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;background-color: #f7f7f7; border-bottom: 1px solid rgb(221, 221, 221); box-sizing: border-box; margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;RFC 1123&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;Wed, 19 Apr 2023 16:25:39 +0000&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;border-bottom: 1px solid rgb(221, 221, 221); box-sizing: border-box; margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;RFC 822&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;Wed, 19 Apr 23 16:25:39 +0000&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;background-color: #f7f7f7; border-bottom: 1px solid rgb(221, 221, 221); box-sizing: border-box; margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;RFC 3339&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;2023-04-19T16:25:39+00:00&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;border-bottom: 1px solid rgb(221, 221, 221); box-sizing: border-box; margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;ATOM&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;2023-04-19T16:25:39+00:00&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;background-color: #f7f7f7; border-bottom: 1px solid rgb(221, 221, 221); box-sizing: border-box; margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;COOKIE&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;Wednesday, 19-Apr-2023 16:25:39 UTC&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;border-bottom: 1px solid rgb(221, 221, 221); box-sizing: border-box; margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;RSS&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;Wed, 19 Apr 2023 16:25:39 +0000&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;background-color: #f7f7f7; border-bottom: 1px solid rgb(221, 221, 221); box-sizing: border-box; margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;W3C&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;2023-04-19T16:25:39+00:00&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;border-bottom: 1px solid rgb(221, 221, 221); box-sizing: border-box; margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;&lt;span style=&quot;font-size: 17.6px;&quot;&gt;UNIX STAT COMMAND TIMESTAMP&lt;/span&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;&lt;span style=&quot;font-size: 17.6px;&quot;&gt;2023-04-19 16:25:39.658210121 +0000&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;background-color: #f7f7f7; border-bottom: 1px solid rgb(221, 221, 221); box-sizing: border-box; margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;YYYY-DD-MM HH:MM:SS&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;2023-19-04 16:25:39&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;border-bottom: 1px solid rgb(221, 221, 221); box-sizing: border-box; margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;YYYY-DD-MM HH:MM:SS am/pm&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;2023-19-04 04:25:39 PM&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;background-color: #f7f7f7; border-bottom: 1px solid rgb(221, 221, 221); box-sizing: border-box; margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;DD-MM-YYYY HH:MM:SS&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;19-04-2023 16:25:39&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;border-bottom: 1px solid rgb(221, 221, 221); box-sizing: border-box; margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;MM-DD-YYYY HH:MM:SS&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; margin: 0px; padding: 5px;&quot;&gt;04-19-2023 16:25:39&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/490083043304637307/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/04/CSharp-Parse-Linux-stat-command-timestamp-with-timezone.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/490083043304637307'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/490083043304637307'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/04/CSharp-Parse-Linux-stat-command-timestamp-with-timezone.html' title='C# Parse Linux stat command timestamp with timezone'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiMHbROi1nhmEjAKg1Ndg7wOQywtjcTGcpkolX2wEjevV1XOTWUNj6lYbdLXocCWBkZub5Q7lIMwFQOnE24UtJhp9pZxZmBH73oEPu83Iet-6BigNiGmSe4XnCDetd6GtGo3bdb_Hg-lh3cEMeO8D1oj4fb2BJx26Xzpvmw-C0GzsCOCRyRrIZ9KyKd/s72-w134-h134-c/HospitalLINUX.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4054614406137433263.post-2682170552406698769</id><published>2023-04-13T07:30:00.004-04:00</published><updated>2023-04-15T12:24:02.072-04:00</updated><title type='text'>The easy simple way to check if an image has a transparent background</title><content type='html'>&lt;p&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Here&#39;s a tip for novices if you want to make absolutely sure your images have a transparent background. Using tools like &lt;a href=&quot;https://www.gimp.org/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;GIMP&lt;/a&gt; can sometimes leave your wondering if your properly set the transparency correctly.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ol style=&quot;text-align: left;&quot;&gt;&lt;li&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Google to the rescue. Head on over to&amp;nbsp;&lt;a href=&quot;https://images.google.com/&quot;&gt;Google Images&lt;/a&gt;. Click &#39;Search by Image&#39; &#39;camera&#39; looking icon.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjfH8N2cS746H29E2vQkfoWHfUtQV4GmkRCLao90HCag6uJn-4MQOVrQbG0vX7ENfHcN9kxkI0-UoXqAMypaX9dnNKvUAaMOvXkXs9mJgaESxOc-B0766R4nt7WuuG38C7hXdtjuW5VWBf8h9Lv0Goh5JpuDrPSlHUrRedohKAmNnq3tXCGcVO9IOmo/s784/GoogleImageHomePage.png&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;288&quot; data-original-width=&quot;784&quot; height=&quot;221&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjfH8N2cS746H29E2vQkfoWHfUtQV4GmkRCLao90HCag6uJn-4MQOVrQbG0vX7ENfHcN9kxkI0-UoXqAMypaX9dnNKvUAaMOvXkXs9mJgaESxOc-B0766R4nt7WuuG38C7hXdtjuW5VWBf8h9Lv0Goh5JpuDrPSlHUrRedohKAmNnq3tXCGcVO9IOmo/w603-h221/GoogleImageHomePage.png&quot; width=&quot;603&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;Upload your image.&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhB7A4Jv8CpjY6XwalFyMHXhGEIos5HOS_MigL__2iv9lsgHoOzVVNXTTY8EFcCTM0fcApSZ6DDtNNwVyRxVPiqlIOuF2f2pid7UtVb9if_FD7rn8QTlcstLyFb98AJt67fXkbrxYyizI0kBgMqTymBLfFZmnB17QDUaPKoWfNuz4_UvsbKIRkvnxJN/s809/GoogleImageUploadFile.PNG&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;624&quot; data-original-width=&quot;809&quot; height=&quot;494&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhB7A4Jv8CpjY6XwalFyMHXhGEIos5HOS_MigL__2iv9lsgHoOzVVNXTTY8EFcCTM0fcApSZ6DDtNNwVyRxVPiqlIOuF2f2pid7UtVb9if_FD7rn8QTlcstLyFb98AJt67fXkbrxYyizI0kBgMqTymBLfFZmnB17QDUaPKoWfNuz4_UvsbKIRkvnxJN/w640-h494/GoogleImageUploadFile.PNG&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-family: helvetica;&quot;&gt;If the checkerboard&amp;nbsp;pattern appears in the background, then you have a &lt;b&gt;transparent &lt;/b&gt;background. The red arrow points to the checkerboard background.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiHSNoKRopPPFS5VFUSem1AVBaF4LlG3ac6lbiE7OUVcC9mGFSovIPQ_EwAjmKGSqntfDlxcZpPiThgICs_IznAtsp2Nw-pntNQ6199UUKoIIOe59mZy9V37BrzWpXXkYxl8ApdBqQaOAZLYWRGOkr8-O6kvdh0zO3bFA_konPgS4U4sD2bZQkbjYst/s794/EarthDayApril22TransinGoogleImages.jpg&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;794&quot; data-original-width=&quot;704&quot; height=&quot;640&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiHSNoKRopPPFS5VFUSem1AVBaF4LlG3ac6lbiE7OUVcC9mGFSovIPQ_EwAjmKGSqntfDlxcZpPiThgICs_IznAtsp2Nw-pntNQ6199UUKoIIOe59mZy9V37BrzWpXXkYxl8ApdBqQaOAZLYWRGOkr8-O6kvdh0zO3bFA_konPgS4U4sD2bZQkbjYst/w568-h640/EarthDayApril22TransinGoogleImages.jpg&quot; width=&quot;568&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;FAILS&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;If your background is&lt;b&gt; black&lt;/b&gt;, and you see no chess board pattern, then you have not produced a transparent background. This is a default background color in many image editing programs.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEheGx49e3qE6NkT7RGoHoLuP6tnPkCnv5ZsN1kCGpidVozdSpuaaWnkyU3J1KKmafy0QKPS-j1ssfsbTdsqR5wC6IxTcpH3eSeVyCSymZHQ4hXviuy8Y3DB5UpdeDJzwe5eAPRhgZI8Scuo3-BFraqlPvASAmC5AzoeSusAcL-ixZaeiuz8Ug8-6De5/s500/EarthDayApril2022BlackBackground.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;500&quot; data-original-width=&quot;500&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEheGx49e3qE6NkT7RGoHoLuP6tnPkCnv5ZsN1kCGpidVozdSpuaaWnkyU3J1KKmafy0QKPS-j1ssfsbTdsqR5wC6IxTcpH3eSeVyCSymZHQ4hXviuy8Y3DB5UpdeDJzwe5eAPRhgZI8Scuo3-BFraqlPvASAmC5AzoeSusAcL-ixZaeiuz8Ug8-6De5/s320/EarthDayApril2022BlackBackground.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;If your background is &lt;b&gt;white&lt;/b&gt;, and you see no chess board pattern, then you have not produced a transparent background. This is a default background color in many image editing programs.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi0CU0EOw5fAMwlV13J8vvcsTrCKLzZ6EU2VzdpQ1styADF49c9nhx-yQNVhXFg-z3P5Mo4mT0tiUd1Rb4P18FUXYYwbnuk6lLuN6R1pKmoxaRTs88ADQ0SRkwozFNl3XJayLpeEOqBvENoRi4aIKJY2ogNXbcyvtxshdwGCvnjAcqWYY0zROctIM4a/s500/EarthDayApril2022WhiteBackground.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;500&quot; data-original-width=&quot;500&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi0CU0EOw5fAMwlV13J8vvcsTrCKLzZ6EU2VzdpQ1styADF49c9nhx-yQNVhXFg-z3P5Mo4mT0tiUd1Rb4P18FUXYYwbnuk6lLuN6R1pKmoxaRTs88ADQ0SRkwozFNl3XJayLpeEOqBvENoRi4aIKJY2ogNXbcyvtxshdwGCvnjAcqWYY0zROctIM4a/s320/EarthDayApril2022WhiteBackground.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://metadataconsulting.blogspot.com/feeds/2682170552406698769/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://metadataconsulting.blogspot.com/2023/04/The-easy-simple-way-to-check-if-an-image-has-a-transparent-background.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/2682170552406698769'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4054614406137433263/posts/default/2682170552406698769'/><link rel='alternate' type='text/html' href='http://metadataconsulting.blogspot.com/2023/04/The-easy-simple-way-to-check-if-an-image-has-a-transparent-background.html' title='The easy simple way to check if an image has a transparent background'/><author><name>metadataconsulting (profile)</name><uri>http://www.blogger.com/profile/02252886574672860301</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='30' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHkhjItJireYEPu_1BICPZ5UrfXr2sMQ-Nq8WVCH_nb45JqPj4ll1FlLrxJWt9TUMzFPPLcdh55uZbDbdXPjW_gxiI3iVBjS_sWQaAB2DP_Ulcq03798eNgLiIbN_NW_s/s78/ASCIIfy-JamieLanniseterDoppleGanger.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjfH8N2cS746H29E2vQkfoWHfUtQV4GmkRCLao90HCag6uJn-4MQOVrQbG0vX7ENfHcN9kxkI0-UoXqAMypaX9dnNKvUAaMOvXkXs9mJgaESxOc-B0766R4nt7WuuG38C7hXdtjuW5VWBf8h9Lv0Goh5JpuDrPSlHUrRedohKAmNnq3tXCGcVO9IOmo/s72-w603-h221-c/GoogleImageHomePage.png" height="72" width="72"/><thr:total>0</thr:total></entry></feed>