<?xml version="1.0" encoding="UTF-8"?>






<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
	<channel>
		<title>Featured Blog</title>
		<link>https://techcommunity.microsoft.com</link>
		<description>
			
			
		</description>
				<item>
				<title>Creating Custom Vision Demos on the fly using Bing Image Search</title>
					<link>https://techcommunity.microsoft.com/t5/azure-architecture-blog/creating-custom-vision-demos-on-the-fly-using-bing-image-search/ba-p/1551968</link>
					<description>&lt;P&gt;&lt;A href=&quot;https://azure.microsoft.com/en-au/services/cognitive-services/&quot; target=&quot;_blank&quot; rel=&quot;noopener noopener noreferrer&quot;&gt;Azure Cognitive Services&lt;/A&gt; provides a suite of AI services and APIs that lets developers work with AI technologies without having a deep expertise in machine learning. This post will cover how we can use two of these services together, &lt;A href=&quot;https://azure.microsoft.com/en-us/services/cognitive-services/custom-vision-service/&quot; target=&quot;_blank&quot; rel=&quot;noopener noopener noreferrer&quot;&gt;Custom Vision&lt;/A&gt; and &lt;A href=&quot;https://azure.microsoft.com/en-us/services/cognitive-services/bing-image-search-api/&quot; target=&quot;_blank&quot; rel=&quot;noopener noopener noreferrer&quot;&gt;Bing Image Search APIs&lt;/A&gt;, along with a .net core console application for rapid prototyping of Custom Vision models.&lt;/P&gt;&lt;P&gt;Custom Vision is a service that lets user build and deploy customized computer vision models using their own image datasets. The process of training a customized computer vision model is simplified as the machine learning happening under the hood is all managed by Azure, only the image data for the model itself is required by the user. A separate &lt;A href=&quot;https://www.customvision.ai/&quot; target=&quot;_blank&quot; rel=&quot;noopener nofollow noopener noreferrer&quot;&gt;user interface&lt;/A&gt; is also provided as part of the Custom Vision service which makes it very simple to understand and use.&lt;/P&gt;&lt;P&gt;Bing Image Search APIs is a service that executes a search query and returns a result of images and functions very similarly to an image search done the web version of &lt;A href=&quot;https://www.bing.com/images&quot; target=&quot;_blank&quot; rel=&quot;noopener nofollow noopener noreferrer&quot;&gt;Bing Image Search&lt;/A&gt;. Query filters can also be applied as part of the Bing Image Search APIs to refine the results e.g: filtering for specific colours, selecting image type (photograph, clipart, GIF). The image below shows the Bing Image Search APIs through a &lt;A href=&quot;https://azure.microsoft.com/en-us/services/cognitive-services/bing-image-search-api/&quot; target=&quot;_blank&quot; rel=&quot;noopener noopener noreferrer&quot;&gt;visual interface&lt;/A&gt; that users can try their own search terms on, as well as apply some query filters such as the image type and content freshness.&lt;/P&gt;&lt;P&gt;&lt;span class=&quot;lia-inline-image-display-wrapper lia-image-align-center&quot; image-alt=&quot;taeyh_0-1595984669709.png&quot; style=&quot;width: 999px;&quot;&gt;&lt;img src=&quot;https://gxcuf89792.i.lithium.com/t5/image/serverpage/image-id/208671iE1C9BF125CCBEF28/image-size/large?v=1.0&amp;amp;px=999&quot; title=&quot;taeyh_0-1595984669709.png&quot; alt=&quot;taeyh_0-1595984669709.png&quot; /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To create a Custom Vision model, it is recommended to have at least 50 images for each label before beginning to train a model. This can be a time consuming process especially when you have no pre-existing datasets and looking to prototype multiple models. By using a combination of the Bing Image Search APIs and the Custom Vision REST APIs, the process of populating a Custom Vision project with tagged images can be accelerated, and once all the images are in the Custom Vision project and tagged, a model can immediately be trained. The flow of this process is captured in a .net core console application that easily be altered to test this process with different Bing Image Search terms and query filters to understand what results are returned and how to further improve the model. The below diagram shows the flow between the components of this application.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class=&quot;lia-inline-image-display-wrapper lia-image-align-center&quot; image-alt=&quot;taeyh_6-1595984229629.png&quot; style=&quot;width: 999px;&quot;&gt;&lt;img src=&quot;https://gxcuf89792.i.lithium.com/t5/image/serverpage/image-id/208670i40622E8584CD95DA/image-size/large?v=1.0&amp;amp;px=999&quot; title=&quot;taeyh_6-1595984229629.png&quot; alt=&quot;taeyh_6-1595984229629.png&quot; /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After creating the necessary resources on Azure, the console application of this solution can be opened to specify the name of the tag and the search term to be queried in Bing Image Search. In this example, two subjects are set, the first one with a tag name of &quot;Apple&quot; and a search term of &quot;Red Apple&quot;, and the second one with a tag name of &quot;Pear&quot; and a search term of &quot;Green Pear&quot;. Afterwards, the console application is run and the user populates all the required values such as the resource keys. This will then trigger off the application at it starts with carrying out a search query and populates the specified Custom Vision Project. Once the application has finished running, the Custom Vision project should be populated with tagged images of red apples and green pears. To now train the model, the user can select between two options: quick training and advanced training.&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Quick training trains the model in a few minutes which is good for quick testing of simpler models.&lt;/LI&gt;&lt;LI&gt;Advanced training option provides the option of allocating virtual machines over a selected amount of time to train a more in-depth model.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;span class=&quot;lia-inline-image-display-wrapper lia-image-align-center&quot; image-alt=&quot;taeyh_2-1595983281981.png&quot; style=&quot;width: 999px;&quot;&gt;&lt;img src=&quot;https://gxcuf89792.i.lithium.com/t5/image/serverpage/image-id/208663i2A46F3FBD7126FC6/image-size/large?v=1.0&amp;amp;px=999&quot; title=&quot;taeyh_2-1595983281981.png&quot; alt=&quot;taeyh_2-1595983281981.png&quot; /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this example, within 2 minutes after selecting the quick training option, a model for distinguishing between apples and pears has been trained. To test my model, I&#39;ve used a photo of an apple at home which has been correctly identified as being an apple. If the user wanted to expand on this and include more fruit as part of this model, this can easily be done with very minor changes to the code. Otherwise, by also changing the count &amp;amp; offset values when running the console application, more images of apples and pears can be populated in the project to retrain an updated model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class=&quot;lia-inline-image-display-wrapper lia-image-align-center&quot; image-alt=&quot;taeyh_3-1595983281971.png&quot; style=&quot;width: 999px;&quot;&gt;&lt;img src=&quot;https://gxcuf89792.i.lithium.com/t5/image/serverpage/image-id/208664i47DFE4A06BB480E4/image-size/large?v=1.0&amp;amp;px=999&quot; title=&quot;taeyh_3-1595983281971.png&quot; alt=&quot;taeyh_3-1595983281971.png&quot; /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;More detailed steps on running this solution are available in the Readme as part of the GitHub repository for this solution which can be used to not just classify between apples and pears but any other examples you have in mind - I have also used this solution to create a Custom Vision model that classifies between 5+ different car models. At the time of writing this post, this solution can be run on the free tiers of both Custom Vision and Bing Image Search APIs so please feel free to try this in your own environment.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href=&quot;https://github.com/taeyh/customvision-bingsearch&quot; target=&quot;_blank&quot; rel=&quot;noopener noopener noreferrer&quot;&gt;&lt;STRONG&gt;Link to GitHub Repository&amp;nbsp;&lt;/STRONG&gt;&lt;/A&gt;&lt;/P&gt;</description>
					<guid>https://techcommunity.microsoft.com/t5/azure-architecture-blog/creating-custom-vision-demos-on-the-fly-using-bing-image-search/ba-p/1551968</guid>
                    <dc:creator>taeyh</dc:creator>
					<pubDate>Tue, 28 Jul 2020 18:22:51 PDT</pubDate>
				</item>
				<item>
				<title>SHA-1 Windows content to be retired August 3, 2020</title>
					<link>https://techcommunity.microsoft.com/t5/windows-it-pro-blog/sha-1-windows-content-to-be-retired-august-3-2020/ba-p/1544373</link>
					<description>&lt;P&gt;To support evolving industry security standards, and continue to keep you protected and productive, Microsoft will retire content that is Windows-signed for Secure Hash Algorithm 1 (SHA-1) from the &lt;A href=&quot;https://www.microsoft.com/en-us/download/windows.aspx&quot; target=&quot;_blank&quot; rel=&quot;noopener noopener noreferrer&quot;&gt;Microsoft Download Center&lt;/A&gt; on August 3, 2020. This is the next step in our continued efforts to adopt Secure Hash Algorithm 2 (SHA-2), which better meets modern security requirements and offers added protections from common attack vectors.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SHA-1 is a legacy cryptographic hash that many in the security community believe is no longer secure. Using the SHA-1 hashing algorithm in digital certificates could allow an attacker to spoof content, perform phishing attacks, or perform man-in-the-middle attacks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Microsoft no longer uses SHA-1 to authenticate Windows operating system updates due to security concerns associated with the algorithm, and has provided the appropriate updates to move customers to SHA-2 as &lt;A href=&quot;https://support.microsoft.com/help/4472027/2019-sha-2-code-signing-support-requirement-for-windows-and-wsus&quot; target=&quot;_blank&quot; rel=&quot;noopener noopener noreferrer&quot;&gt;previously announced&lt;/A&gt;. Accordingly, beginning in August 2019, devices without SHA-2 support have not received Windows updates. If you are still reliant upon SHA-1, we recommend that you move to a currently supported version of Windows and to stronger alternatives, such as SHA-2.&lt;/P&gt;</description>
					<guid>https://techcommunity.microsoft.com/t5/windows-it-pro-blog/sha-1-windows-content-to-be-retired-august-3-2020/ba-p/1544373</guid>
                    <dc:creator>Namrata_Bachwani</dc:creator>
					<pubDate>Tue, 28 Jul 2020 17:00:28 PDT</pubDate>
				</item>
				<item>
				<title>SWOOP Analytics explains why Microsoft Yammer &amp; Teams make the perfect partnership for collaboration</title>
					<link>https://techcommunity.microsoft.com/t5/yammer-blog/swoop-analytics-explains-why-microsoft-yammer-amp-teams-make-the/ba-p/1528108</link>
					<description>&lt;P&gt;At&amp;nbsp;&lt;A href=&quot;https://www.swoopanalytics.com/&quot; target=&quot;_self&quot; rel=&quot;nofollow noopener noreferrer&quot;&gt;SWOOP Analytics&lt;/A&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;a&lt;/SPAN&gt; Microsoft Partner, we’ve &lt;A href=&quot;https://www.swoopanalytics.com/benchmarking&quot; target=&quot;_blank&quot; rel=&quot;noopener nofollow noopener noreferrer&quot;&gt;benchmarked&lt;/A&gt; hundreds of organizations using Yammer and Microsoft Teams, and millions of interactions world-wide, to know exactly what “good” looks like. We have the data to see what makes a highly productive team on Teams and a collaborative organization on Yammer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Our &lt;A href=&quot;https://www.swoopanalytics.com/microsoft-teams-benchmarking&quot; target=&quot;_blank&quot; rel=&quot;noopener nofollow noopener noreferrer&quot;&gt;Teams benchmarking&lt;/A&gt; found the best performing, and highly productive teams use Microsoft Teams for their day-to-day work, for collaborating within their own team, when you know the people you’re working with.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But what happens when you need to reach outside your team? When you need answers, knowledge or inspiration from a wider group?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Chances are, someone in your organization has the answer to your issue, someone has encountered the same thing and if you can find that person and tap into the knowledge, your job could be done in a fraction of the time, probably at a fraction of the cost.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Microsoft has just made it so much easier to find the people and the knowledge you’re looking for, without interrupting your day-to-day work, by introducing the Communities app to Microsoft Teams.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When the Communities app is installed on Teams, it delivers Yammer inside Teams. You can navigate to all the Communities in your Yammer network and participate in conversations, join communities, watch live events, share announcements, pin conversations and mark best answers just as you would in Yammer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class=&quot;lia-inline-image-display-wrapper lia-image-align-inline&quot; image-alt=&quot;Yammer in Teams Community.png&quot; style=&quot;width: 999px;&quot;&gt;&lt;img src=&quot;https://gxcuf89792.i.lithium.com/t5/image/serverpage/image-id/206155i6F3F0470CE8CEC33/image-size/large?v=1.0&amp;amp;px=999&quot; title=&quot;Yammer in Teams Community.png&quot; alt=&quot;Yammer in Teams Community.png&quot; /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Yammer and Teams – better together&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yammer is for open knowledge sharing. A place to ask questions and find answers, to access knowledge across the entire organization, not just within your team.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Combining Microsoft Teams and Yammer with the Communities app means there is no more toggling between apps or confusion about where to post.&amp;nbsp;Just add the Communities app to your Teams page by searching for “Communities” in Apps on the left-hand menu bar. You’ll start discovering communities, knowledge and conversations alongside your projects, chat and meetings.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;“Collaboration always involves interacting with people you know, like the people in your team,” said SWOOP Analytics CEO Cai Kjaer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;“This is the core value proposition for Teams. But often you need to reach outside your core team to find answers. In this case, it’s all about collaborating with people you don&#39;t yet know and this is one of Yammer&#39;s superpowers.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;“Together, Teams and Yammer are a formidable ally for business performance, and since most of our daily work is happening within a team, it makes a lot of sense to make &lt;A href=&quot;https://techcommunity.microsoft.com/t5/microsoft-teams-blog/yammer-communities-app-now-available-for-microsoft-teams-mobile/ba-p/1521884&quot; target=&quot;_self&quot;&gt;Yammer available in the Teams mobile app.&lt;/A&gt;”&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class=&quot;lia-inline-image-display-wrapper lia-image-align-inline&quot; image-alt=&quot;1AndroidCommunitiesLiveEvent.png&quot; style=&quot;width: 331px;&quot;&gt;&lt;img src=&quot;https://gxcuf89792.i.lithium.com/t5/image/serverpage/image-id/206156iC7C38158012FB8D3/image-dimensions/331x594?v=1.0&quot; width=&quot;331&quot; height=&quot;594&quot; title=&quot;1AndroidCommunitiesLiveEvent.png&quot; alt=&quot;1AndroidCommunitiesLiveEvent.png&quot; /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Communities app in Teams allows instant all-company communication&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If teams are to truly perform online, their size should be limited to less than 10 members, says SWOOP’s Chief Scientist Dr Laurence Lock Lee. Following this rule, &lt;A href=&quot;https://www.swoopanalytics.com/blog/optimum-team-size?rq=team%20size&quot; target=&quot;_blank&quot; rel=&quot;noopener nofollow noopener noreferrer&quot;&gt;which is backed by decades of research&lt;/A&gt;, Microsoft Teams becomes the primary place where staff log in when they come to work. By adding the Communities app to Teams it allows teams to operate while remaining connected to the entire organization, something that’s become even more important during times of crisis when leaders need quick and clear communication with all staff.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And now with the &lt;A href=&quot;https://techcommunity.microsoft.com/t5/microsoft-teams-blog/yammer-communities-app-now-available-for-microsoft-teams-mobile/ba-p/1521884&quot; target=&quot;_self&quot;&gt;Communities app in Teams mobile app&lt;/A&gt;, it allows employees to put out a call for assistance in Yammer during their day-to-day work, without fear of losing their place in their regular workflow.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class=&quot;lia-inline-image-display-wrapper lia-image-align-inline&quot; image-alt=&quot;HERO_iOS_CommunitiesEmergency.png&quot; style=&quot;width: 322px;&quot;&gt;&lt;img src=&quot;https://gxcuf89792.i.lithium.com/t5/image/serverpage/image-id/206154i299FD2650CA49EE4/image-dimensions/322x658?v=1.0&quot; width=&quot;322&quot; height=&quot;658&quot; title=&quot;HERO_iOS_CommunitiesEmergency.png&quot; alt=&quot;HERO_iOS_CommunitiesEmergency.png&quot; /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Do you behave differently on Teams and Yammer?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SWOOP Analytics &lt;A href=&quot;https://www.swoopanalytics.com/case-studies/real-foundations&quot; target=&quot;_blank&quot; rel=&quot;noopener nofollow noopener noreferrer&quot;&gt;conducted research&lt;/A&gt; using real-time data to explore whether the increased use of Teams resulted in a drop in Yammer usage.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In terms of activity, we found a high correlation between individual activity levels on Yammer and Teams, showing if you are highly active on Yammer, you will also be highly active on Teams and vice versa. Overall, our research found &lt;STRONG&gt;more collaboration is happening overall when both tools are utilised&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With the data to prove using Teams and Yammer together increases collaboration, it seems the most logical step to make the Yammer Community app easily accessible in Teams. SWOOP is also following Microsoft’s lead by integrating &lt;A href=&quot;https://www.swoopanalytics.com/swoop-for-yammer&quot; target=&quot;_blank&quot; rel=&quot;noopener nofollow noopener noreferrer&quot;&gt;SWOOP for Yammer&lt;/A&gt; and &lt;A href=&quot;https://www.swoopanalytics.com/swoop-for-microsoft-teams&quot; target=&quot;_blank&quot; rel=&quot;noopener nofollow noopener noreferrer&quot;&gt;SWOOP for Teams&lt;/A&gt; into a single navigable dashboard, which can also be accessed as an app within Microsoft Teams.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The new-look Yammer has also changed the name of “Groups” to “Communities”, something Kjaer says is a better reflection of the purpose of Yammer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;“Yammer was always about connecting people from across the enterprise, and re-framing groups as communities now makes that purpose even more clear,” he said.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The new-look Yammer clearly demonstrates Microsoft&#39;s commitment to the Yammer platform and the importance of an enterprise social network to run alongside day-to-day team work in Teams.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The ability to embed the new-look Yammer in Teams and respond to a post via Outlook on your phone or your tablet shows Microsoft’s commitment to make collaboration adaptable, flexible and focused by breaking down the barriers between apps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;About SWOOP&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href=&quot;https://www.swoopanalytics.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener nofollow noopener noreferrer&quot;&gt;SWOOP&lt;/A&gt; provides collaboration analytics for Microsoft Teams and Yammer to give you insights to measure and improve your digital workplace relationships. SWOOP analyses the content and relationships in Teams and Yammer to help you adapt behaviours to reach better business outcomes and make informed decisions about collaboration effectiveness.&lt;/P&gt;</description>
					<guid>https://techcommunity.microsoft.com/t5/yammer-blog/swoop-analytics-explains-why-microsoft-yammer-amp-teams-make-the/ba-p/1528108</guid>
                    <dc:creator>Sharon Dawson</dc:creator>
					<pubDate>Tue, 28 Jul 2020 16:44:00 PDT</pubDate>
				</item>
				<item>
				<title>Fileless Attack Detection for Linux Preview is Expanding</title>
					<link>https://techcommunity.microsoft.com/t5/azure-security-center/fileless-attack-detection-for-linux-preview-is-expanding/ba-p/1551766</link>
					<description>&lt;P&gt;&lt;EM&gt;This blog post was co-authored by Aditya Joshi, Senior Software Engineer, Enterprise Protection and Detection.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Security Center team is excited to share that the Fileless Attack Detection for Linux Preview, &lt;A href=&quot;https://azure.microsoft.com/en-us/blog/fileless-attack-detection-for-linux-in-preview/&quot; target=&quot;_blank&quot; rel=&quot;noopener noopener noreferrer&quot;&gt;which we announced earlier this year&lt;/A&gt;, is expanding to include all Azure VMs and non-Azure machines enrolled in Azure Security Center Standard and Standard Trial pricing tiers.&amp;nbsp; This solution periodically scans your machine and extracts insights directly from the memory of processes.&amp;nbsp; Automated memory forensic techniques identify fileless attack toolkits, techniques, and behaviors.&amp;nbsp; This detection capability identifies attacker payloads that persist within the memory of compromised processes and perform malicious activities.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See below for an example fileless attack from our preview program, a description of detection capabilities, and an overview of the onboarding process.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3 id=&quot;toc-hId-1200722396&quot;&gt;&lt;STRONG&gt;Real-world attack pattern from our preview program &lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;We continue to see the exploitation of vulnerabilities and multi-staged attack payloads with shellcode and dynamic code visible only in memory.&amp;nbsp; In this example, a customer’s VM is running shellcode-based malware and a cryptominer as root within a compromised docker container. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are the steps of the attack:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;The attacker uses an unauthenticated network facing service running inside a docker container to achieve code execution as root inside the container.&lt;/LI&gt;
&lt;LI&gt;The attacker downloads and executes a file and deletes the file to deter disk-based detection, leaving only the in-memory payload.&lt;/LI&gt;
&lt;LI&gt;The attacker achieves persistence by adding a crontab task to run a bash shell script to download a 2&lt;SUP&gt;nd&lt;/SUP&gt; stage payload.&amp;nbsp; The 2&lt;SUP&gt;nd&lt;/SUP&gt; stage payload is a packed file containing the XMRIG cryptocurrency miner.&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;The attacker unpacks and runs XMRIG within the container. XMRIG persists in memory and connects to a miner pool to start crypto mining.&lt;/LI&gt;
&lt;LI&gt;The attacker deletes the on-disk packed file so that the crypto mining activity is only observable in-memory.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2 id=&quot;toc-hId-1190219292&quot;&gt;&amp;nbsp;&lt;/H2&gt;
&lt;H3 id=&quot;toc-hId-1880780766&quot;&gt;&lt;STRONG&gt;Detecting the attack&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;In the attack above, fileless attack detection, running on the docker host, uncovers the compromise via in-memory analysis.&amp;nbsp; It starts by identifying dynamically allocated code segments, then scanning each code segment for specific behaviors and indicators.&lt;/P&gt;
&lt;P&gt;The first payload’s code segment contains shellcode with references to syscalls used for creating new tasks, getting process information and process control. Subset of detected syscalls include: fork, getpid, gettid and &amp;nbsp;rt_sigaction.&lt;/P&gt;
&lt;P&gt;The second payload’s code segment contains an injected executable consisting of a well-known crypto mining toolkit: XMRIG.&amp;nbsp; Additionally, fileless attack detection identifies the active network connection to the crypto mining pool. &amp;nbsp;&lt;/P&gt;
&lt;H2 id=&quot;toc-hId-1870277662&quot;&gt;&amp;nbsp;&lt;/H2&gt;
&lt;H3 id=&quot;toc-hId--1734128160&quot;&gt;&lt;STRONG&gt;Fileless attack detection preview capabilities&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;For the preview program, fileless attack detection scans the memory of all processes for shellcode, malicious injected ELF executables, and well-known toolkits.&amp;nbsp; Toolkits include crypto mining software such as the one mentioned above.&lt;/P&gt;
&lt;P&gt;At the start of the preview program, we will emit alerts for well-known toolkits:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class=&quot;lia-inline-image-display-wrapper lia-image-align-inline&quot; image-alt=&quot;teasureforblog.JPG&quot; style=&quot;width: 823px;&quot;&gt;&lt;img src=&quot;https://gxcuf89792.i.lithium.com/t5/image/serverpage/image-id/208618i1D4887ACFAEBB0EE/image-size/large?v=1.0&amp;amp;px=999&quot; title=&quot;teasureforblog.JPG&quot; alt=&quot;teasureforblog.JPG&quot; /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The alerts contain information to assist with triaging and correlation activities, which include process metadata:&lt;/P&gt;
&lt;P&gt;&lt;span class=&quot;lia-inline-image-display-wrapper lia-image-align-inline&quot; image-alt=&quot;blogprocessmetadata1.png&quot; style=&quot;width: 744px;&quot;&gt;&lt;img src=&quot;https://gxcuf89792.i.lithium.com/t5/image/serverpage/image-id/208621i0AAD975513C54ED3/image-size/large?v=1.0&amp;amp;px=999&quot; title=&quot;blogprocessmetadata1.png&quot; alt=&quot;blogprocessmetadata1.png&quot; /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Alert details also include the toolkit name, capabilities of the detected payload, and network endpoints.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We plan to add and refine alert capabilities over time. Additional alert types will be documented &lt;A href=&quot;https://docs.microsoft.com/en-us/azure/security-center/alerts-reference#alerts-linux&quot; target=&quot;_blank&quot; rel=&quot;noopener noopener noreferrer&quot;&gt;here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Process memory scanning is non-invasive and does not affect the other processes on the system.&amp;nbsp;Most scans run in less than five seconds. The privacy of your data is protected throughout this procedure as all memory analysis is performed on the host itself. Scan results contain only security-relevant metadata and details of suspicious payloads.&lt;/P&gt;
&lt;H2 id=&quot;toc-hId--1744631264&quot;&gt;&amp;nbsp;&lt;/H2&gt;
&lt;H3 id=&quot;toc-hId--1054069790&quot;&gt;&lt;STRONG&gt;Onboarding details&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;We will be onboarding customer machines in phases to ensure the smoothest possible customer experience.&amp;nbsp; Deployment begins on July 28&lt;SUP&gt;th&lt;/SUP&gt; and completes by September 3&lt;SUP&gt;rd&lt;/SUP&gt;.&amp;nbsp; This capability is automatically deployed to your Linux machines as an extension to the Log Analytics Agent for Linux (also known as the OMS Agent). This agent supports the Linux OS distributions described&amp;nbsp;&lt;A href=&quot;https://docs.microsoft.com/en-us/azure/azure-monitor/platform/log-analytics-agent&quot; target=&quot;_blank&quot; rel=&quot;noopener noopener noreferrer&quot;&gt;in this document&lt;/A&gt;. Azure VMs and non-Azure machines must be enrolled in Standard or Standard Trial pricing tier to benefit from this detection capability.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To learn more about Azure Security Center, visit the&amp;nbsp;&lt;A href=&quot;https://aka.ms/azuresecuritycenter&quot; target=&quot;_blank&quot; rel=&quot;noopener noopener noreferrer&quot;&gt;Azure Security Center page&lt;/A&gt;.&lt;/P&gt;</description>
					<guid>https://techcommunity.microsoft.com/t5/azure-security-center/fileless-attack-detection-for-linux-preview-is-expanding/ba-p/1551766</guid>
                    <dc:creator>Ben Nick</dc:creator>
					<pubDate>Tue, 28 Jul 2020 15:56:26 PDT</pubDate>
				</item>
				<item>
				<title>Using Intune to manage purpose-built specialty devices without Google Mobile Services (GMS)</title>
					<link>https://techcommunity.microsoft.com/t5/intune-customer-success/using-intune-to-manage-purpose-built-specialty-devices-without/ba-p/1522313</link>
					<description>&lt;P&gt;&lt;STRONG&gt;By Priya Ravichandran | Sr. PM - Microsoft Endpoint Manager - Intune&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Android OS is ubiquitous and a popular choice for purpose-built device manufacturers. However, not all purpose-built devices will ship with Google Mobile Services (GMS). These purpose-built devices enable organizations to accomplish critical tasks in a more streamlined manner and provide the ability to connect remotely while remaining productive. Purpose-built devices have become even more essential with the current shift to remote work during COVID-19. An example of this includes the &lt;A href=&quot;https://techcommunity.microsoft.com/t5/microsoft-teams-blog/microsoft-announces-realwear-integration-for-teams/ba-p/1233202&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Teams integrated RealWear devices&lt;/A&gt;&amp;nbsp;which deliver purpose-built experiences for field service in safety-critical environments. OEMs such as Lenovo, Facebook, and Vuzix have also shipped Android (non-GMS) purpose-built devices for enterprises.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Most purpose-built devices are based on the Android platform, without integration with GMS. Microsoft Endpoint Manager’s Android Enterprise management options are dependent on GMS, which introduces challenges for managing these types of devices today. However, these devices are critical assets an organization will expect to manage alongside the rest of their device estate. &lt;BR /&gt;&lt;BR /&gt;In this blog, we will review the current options for managing these Android (non-GMS) devices via Microsoft Endpoint Manager - Intune.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Leveraging device administrator to manage non-GMS Android devices&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Today Intune supports two options to manage Android devices – Android Enterprise or device administrator.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Android Enterprise is the industry standard that Google is driving to enable a consistent management experience across Android devices, independent of device OEM. However, Android Enterprise requires the devices be integrated with GMS – something many purpose-built specialty devices do not ship with.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Device administrator is the other management mode that Intune currently supports. While&amp;nbsp;&lt;A href=&quot;https://developers.google.com/android/work/device-admin-deprecation&quot; target=&quot;_blank&quot; rel=&quot;noopener nofollow noopener noreferrer&quot;&gt;Google is decreasing support for device administrator from Android 10&lt;/A&gt;, device administrator is still a viable and supported option to manage devices on earlier versions of Android and will be able to address the management needs for these purpose-built devices.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Managing your non-GMS purpose-built devices with Intune&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Prerequisites&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Before starting enrollment, ensure that the following pre-requisites are met:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;The device has met all the necessary requirements – as defined by the OEM – to be successfully managed.&lt;/LI&gt;
&lt;LI&gt;The Intune tenant is provisioned, and device administrator management is enabled.&lt;/LI&gt;
&lt;LI&gt;The Microsoft Intune Company Portal app .apk is downloaded. The Company Portal app .apk can be downloaded &lt;A href=&quot;https://www.microsoft.com/en-us/download/details.aspx?id=49140&quot; target=&quot;_blank&quot; rel=&quot;noopener noopener noreferrer&quot;&gt;here.&lt;/A&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Onboarding non-GMS devices&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Management of your devices starts with the enrollment workflow. For device administrator, the enrollment workflow requires the Microsoft Intune Company Portal app to be installed onto the device. Once the Intune Company Portal app has been installed, the enrollment workflow begins when the user launches the app and &lt;A href=&quot;https://docs.microsoft.com/en-us/mem/intune/user-help/enroll-device-android-company-portal&quot; target=&quot;_blank&quot; rel=&quot;noopener noopener noreferrer&quot;&gt;completes the steps&lt;/A&gt; presented.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once enrolled, all the applicable device administrator policies would be available for the management of these devices. The only exceptions are &lt;A href=&quot;https://docs.microsoft.com/en-us/mem/intune/apps/manage-without-gms&quot; target=&quot;_blank&quot; rel=&quot;noopener noopener noreferrer&quot;&gt;policies that are dependent&lt;/A&gt; on GMS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Key things to note&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Device administrator enrollment &lt;STRONG&gt;must&lt;/STRONG&gt; be permitted on your tenant for these device enrollments to succeed. If device administrator enrollments are blocked via the &lt;A href=&quot;https://docs.microsoft.com/en-us/mem/intune/enrollment/enrollment-restrictions-set&quot; target=&quot;_blank&quot; rel=&quot;noopener noopener noreferrer&quot;&gt;enrollment restrictions&lt;/A&gt;, the enrollments on these devices will fail.&lt;/LI&gt;
&lt;LI&gt;If multi-factor authentication (MFA) is enabled for the organization, a user will be expected to complete the MFA challenge when enrolling the device.&lt;/LI&gt;
&lt;LI&gt;App protection policies (APP) that have been deployed in the organization will also be equally enforced for apps provisioned on these devices as they will be considered part of the applicable Android device landscape. An example of this would be requiring a PIN to access Teams on a RealWear device.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Looking ahead&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;We are aware that&amp;nbsp;&lt;A href=&quot;https://techcommunity.microsoft.com/t5/intune-customer-success/decreasing-support-for-android-device-administrator/ba-p/1441935&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;support for management using Device Administration mode&lt;/A&gt; is moving out of support within the Android platform starting with Android 10. Microsoft Endpoint Manager has been guiding customers to migrate the management of their Android devices to Android Enterprise.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;These purpose-built devices are an exception to this guidance because they do not have GMS support. Additionally, most of the major OEMs building these purpose-built devices are using Android versions below Android 10. Thus, device administrator management capabilities are available and supported for these devices.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Looking ahead, the Microsoft Endpoint Manager team is investigating long term options to provide an alternative to device administrator to ensure continuity of management on these devices as their platforms also progress to later Android versions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Customer support&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Managing purpose-built specialty devices without GMS with device administrator mode in Intune is considered a fully supported scenario. As such, this scenario will be supported through our usual &lt;A href=&quot;https://docs.microsoft.com/intune/get-support&quot; target=&quot;_blank&quot; rel=&quot;noopener noopener noreferrer&quot;&gt;Intune support channels&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Additional resources&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href=&quot;https://docs.microsoft.com/en-us/mem/intune/enrollment/android-enroll-device-administrator&quot; target=&quot;_blank&quot; rel=&quot;noopener noopener noreferrer&quot;&gt;Microsoft Endpoint Manager device administrator management&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href=&quot;https://www.microsoft.com/en-us/download/details.aspx?id=49140&quot; target=&quot;_blank&quot; rel=&quot;noopener noopener noreferrer&quot;&gt;Microsoft Intune Company Portal for Android download location&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href=&quot;https://docs.microsoft.com/en-us/mem/intune/enrollment/enrollment-restrictions-set&quot; target=&quot;_blank&quot; rel=&quot;noopener noopener noreferrer&quot;&gt;Managing Enrollment Restrictions in Intune&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href=&quot;https://docs.microsoft.com/en-us/mem/intune/apps/manage-without-gms&quot; target=&quot;_blank&quot; rel=&quot;noopener noopener noreferrer&quot;&gt;How to use Intune in environments without Google Mobile Services&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href=&quot;https://techcommunity.microsoft.com/t5/microsoft-teams-blog/microsoft-announces-realwear-integration-for-teams/ba-p/1233202&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Microsoft announces RealWear integration for Teams&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href=&quot;https://docs.microsoft.com/en-us/MicrosoftTeams/flw-realwear&quot; target=&quot;_blank&quot; rel=&quot;noopener noopener noreferrer&quot;&gt;Microsoft Teams for RealWear&lt;/A&gt; documentation&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
					<guid>https://techcommunity.microsoft.com/t5/intune-customer-success/using-intune-to-manage-purpose-built-specialty-devices-without/ba-p/1522313</guid>
                    <dc:creator>Intune Support Team</dc:creator>
					<pubDate>Tue, 28 Jul 2020 15:18:21 PDT</pubDate>
				</item>
	</channel>
</rss>
