Cisco Releases Security Updates for Multiple Products

Cisco Releases Security Updates for Multiple Products

This article is contributed. See the original author and article here.

Dot gov

Official websites use .gov
A .gov website belongs to an official government organization in the United States.

SSL

Secure .gov websites use HTTPS A lock (lock icon) or https:// means you’ve safely connected to the .gov website. Share sensitive information only on official, secure websites.
It’s official: Get free COVID test kits at COVIDtests.gov

It’s official: Get free COVID test kits at COVIDtests.gov

This article was originally posted by the FTC. See the original article here.

There’s a new federal resource to get free FDA-authorized coronavirus test kits. At COVIDtests.gov, you’ll find information about testing and a link to the U.S. Postal Service – special.usps.com/testkits – where you can order up to four rapid tests to be sent to your home address. Your kits will be mailed through the U.S. Postal Service within 7 to 12 days.

The tests are completely free. There are no shipping costs, and you don’t have to give a credit card or bank account number. You only need to give a name and address. You also can order for other people who may not have online access. Once you place an order, you’ll get an order confirmation number. If you give your email address, you’ll also get an order confirmation email and delivery updates. Anyone who asks for more information than that is a scammer. So, remember:

  • Go to COVIDtests.gov to order your free COVID test kits from the federal government. If you click to order, you’ll be redirected to special.usps.com/testkits. Or, if you follow a link from a news story, double-check the URL that shows in your browser’s address bar.
  • No one will call, text, or email you from the federal government to ask for your information to “help” you order free kits. Only a scammer will contact you, asking for information like your credit card, bank account, or Social Security number. Do not respond. Instead, report it to the FTC at ReportFraud.ftc.gov.

Right now, there’s no phone number to call to order your tests. That might change soon, and we’ll update you as soon as it’s live. Until then, the only way to order is online. 

Covidtests.gov

Please share this information with others and stay connected to stay informed. Subscribe to consumer alerts from the FTC to get updates delivered right to your email inbox.

If you spot a scammer offering COVID test kits, tell the FTC about it right away at ReportFraud.ftc.gov. Or, file a complaint with your state or territory attorney general at consumerresources.org, the consumer website of the National Association of Attorneys General. Your reports can make a difference by helping us investigate, bring law enforcement cases, and alert people about what frauds to be on the lookout for so they can protect themselves, their friends, and family.

Brought to you by Dr. Ware, Microsoft Office 365 Silver Partner, Charleston SC.

Runbook to manage Azure Firewall Back ups

Runbook to manage Azure Firewall Back ups

This article is contributed. See the original author and article here.

Azure Firewall is a managed stateful network security service that recently became generally available for premium features across most Azure regions, providing capabilities such as TLS inspection, URL filtering and more


Across the different virtual networks and subscriptions, rules are created for network segmentation and access control. Managing the network traffic may require you to audit rules for utilization, flow hit count or require a previous working configuration.


This runbook will help create instantaneous back-up copies of Azure Firewall with the Firewall Policy and when scheduled with an automation account, you can take daily/weekly snapshots and store them in a specified path.


For this runbook, Azure blob storage will be used to store Azure Firewall configuration for both network infrastructure and firewall policy at the time of the dump. You can edit the template to specify another storage method. We also discuss how to redeploy a firewall to a known configuration using one of the backed-up templates. For more information on other network resources that you may like to adapt to this runbook, please see the Export-AzResourceGroup module.



Requirements



  • Automation account

  • Storage Account

  • Runbook


 


Set up Automation account


Go to the Search bar and type Automation account. Create a New Automation account. When done, go to the Automation account and in the Settings blade, under Account settings, create a “Run As” account. This provide the service principal access that will be used to auto-login into our script later.


tobiotolorin_0-1642610140453.png


This runbook is a PowerShell module and we need to confirm that we have access to network and resources modules. On the Automation account blade which you have just created, go to Modules and then search the Gallery to import the following three requisites:


– Az.Account


– Az.Network


– Az.Resources


tobiotolorin_1-1642610193540.png


Create Storage account


Next, we create a storage account to store each back-up created in Azure Blob storage. Go to the search bar for resources and search for Storage Account. Create a Storage account. Select Cool storage mode


tobiotolorin_2-1642610219475.png


Next, we create the Runbook.


On the Automation account blade, click on Runbooks and create one. Here below, I have created AzFwBackUp.


tobiotolorin_3-1642610262929.png


 


After creating the runbook, copy the code from our Azure Network Security Github repository and paste it in line one. This code has three functions: 1. Create storage, 2. Export the firewall configuration, and save in the storage, and 3. Purge the older backups. It uses the Get-AzFirewall and Get-AzFirewallPolicy cmdlet to create snapshot instances.


 


Click Save and then click on Test Plane.


tobiotolorin_4-1642610311710.png


 


On the next page, you will be prompted for a few parameters which you have set up earlier:



  • Provide the resource group name, Azure Firewall name and Firewall Policy name, obtainable in your Resource group

  • Provide storage account name that was created in the step earlier above and the storage key.  The storage key can be obtained under “Access Keys” in the Storage Account blade (see image below).

  • Give it a Blob container name and specify a retention date. Back-ups older than this date will be deleted at next run.


tobiotolorin_5-1642610351313.png


 


Test the script


Click Start to begin the dry run to confirm you can store a copy of the current configuration. Once done, you can then proceed to create a schedule to make this run periodically.


tobiotolorin_7-1642610388322.png


 The back-up should be available in your Storage -> Container in .json format.


 


Create a schedule


To create a schedule, go to the Runbook that was created, at the Runbook blade, select Schedules -> Add a Schedule. Give it a name and select “RecurringConfigure for every week or month.


tobiotolorin_8-1642610470056.png


Click to “Link the schedule to the runbook.” Select the runbook you have created and then click “Configure parameters and run settings,” Fill this form as done earlier.


The Runbook should now be all set to create back-ups in. json template that may be used to restore the firewall to an earlier configuration. The storage account should now store your back-ups as specified.


tobiotolorin_9-1642610536508.png


 


Restore Azure Firewall


To restore an Azure firewall (firewall infrastructure and firewall policy) to an earlier configuration, run the following syntax in your Cloud shell:


 

New-AzResourceGroupDeployment -name $azurefirewallname -ResourceGroupName $resourcegroupname -TemplateFile $filepath

 


 


Note that Rule Collection Groups or RCGs are treated as dependency objects and these objects cannot be deployed in parallel. Collection groups all reference the policy as dependant (dependsOn in the arm template).


This means it will first update policy and then try to update all rule collection groups in parallel. This may fail due to the policy dependency issue. (This is currently by ARM (Azure Resource Manager) design and a roadmap item).


Hence, rule collection groups must be deployed one after the other using the “depends on” tag in your firewall backup file.


As an example, the Rule Collection Group would have to be edited using the rule processing order.


The format is to first specify the Firewall Policy name, then Policy RCG object.


 


 

      "type": "Microsoft.Network/firewallPolicies/ruleCollectionGroups",

      "apiVersion": "2020-11-01",

      "name": "SOC-NS-FWPolicy_premium/DefaultNetworkRuleCollectionGroup",

      "location": "westus2",

      "dependsOn": [

        "[resourceId('Microsoft.Network/firewallPolicies', 'SOC-NS-FWPolicy_premium')]",

   "[resourceId('Microsoft.Network/firewallPolicies/ruleCollectionGroups', 'SOC-NS-FWPolicy_premium','DefaultDnatRuleCollectionGroup')]"

      ]

 


 


(Also, confirm that the KeyVault information is not missing after the redeployment is complete)


 


In summary, you may need to export firewall settings when creating child policies, restoring from a wrong configuration, auditing rules etc. By setting up frequent back up schedule, you can create a historical record of your configuration.
For more information about Azure firewall use cases and governance information, see the Azure Network Security TechCommunity blog  





FTC names 25 sellers who must stop making unsubstantiated COVID treatment claims

FTC names 25 sellers who must stop making unsubstantiated COVID treatment claims

This article was originally posted by the FTC. See the original article here.

As part of the FTC’s ongoing efforts to protect you from shady sellers during the pandemic, the agency sent cease and desist demands to 25 companies that claimed their products can prevent or treat COVID-19. Treatments peddled by these companies include the use of vitamin C infusions, Ivermectin, peptide therapies, herbal remedies, teas, juices, filtered water, nasal irrigation, and seaweed extract. But there is no proof, as required by law, that any of these products can prevent or treat COVID-19 or the Delta or Omicron variants.

The companies identified today used social media to promote their unproven products. The sellers have 48 hours to notify the FTC of the specific actions they have taken to address the agency’s concerns. Companies failing to make adequate corrections could be sued under the 2020 COVID-19 Consumer Protection Act. Not only does the law make it illegal to deceptively market products that claim to prevent, treat, or cure COVID-19, it also lets the FTC seek financial penalties. In all, the agency has sent similar health-related cease and desist demands to more than 400 companies and individuals.

When it comes to fighting COVID-19 and spotting unsupported treatment claims, remember:

  • When there’s a medical breakthrough to treat, prevent, or cure a disease, you’re not going to hear about it for the first time through an ad or sales pitch.
  • Always talk with your doctor or healthcare professional before you try any product claiming to treat, prevent, or cure COVID-19.
  • Visit CDC.gov and the FDA.gov for the most up-to-date information about COVID-19 and its variants.

If you suspect fraud, tell the FTC at ReportFraud.ftc.gov.

Brought to you by Dr. Ware, Microsoft Office 365 Silver Partner, Charleston SC.

Dynamics 365 helps build the retail supply chain of the future

Dynamics 365 helps build the retail supply chain of the future

This article is contributed. See the original author and article here.

Earlier in 2021, we had discussed how retailers can create an intelligent supply chain to successfully navigate through the disruptions and quickly adapt to changing customer behavior. As our retail customers embarked on the journey to create a resilient and intelligent supply chain, there were three key areas that emerged where our customers prioritized their investmentsoptimizing fulfillment, predicting supply chain risks, and enhancing supply chain visibility. Let’s take a look at some of Microsoft’s recent innovations in these areas that enable retailers to create a supply chain of the future.

Turning order fulfillment into a competitive advantage

A retailer’s success hinges on having the right inventory at the right place at the right time. As retailers and brands continue to adapt to meeting the growing e-commerce demand, determining where the inventory is fulfilled for e-commerce versus in-store orders becomes critical to ensure that customer demands are met on time and in a profitable manner.

As a recent Gartner report found, one of the ways to achieve supply chain excellence is by holding distribution center inventory in a channel-agnostic manner for flexible use of inventory to fulfill online and in-store demand effectively1. To achieve this level of flexibility, retailers need a system that offers rules-based order orchestration leveraging AI and real-time omnichannel inventory data to proactively address constraints and profitably fulfill orders on time and in full.

At Microsoft, we are at the forefront of these efforts, investing in solutions like Microsoft Dynamics 365 Intelligent Order Management that help retailers reimagine the future of global supply chains and turn order fulfillment into a competitive advantage.

This embed requires accepting cookies from the embed’s site to view the embed. Activate the link to accept cookies and view the embedded content.

This site uses cookies for analytics, personalized content and ads. By continuing to browse this site, you agree to this use.

Predict risk and enhance visibility with AI-powered insights

According to Gartner, 76 percent of supply chain executives indicated that compared to three years ago, their company today faces more frequent disruptions in their supply chain. Meanwhile, another 72 percent reported that the impact of disruptive events has increased.2

Retailers have made significant strides in 2021 to create resiliency in their supply chains but the response has still been very reactive in nature. Slow digitization of the supply chain continues to inhibit organizations from proactively planning for changing customer demand and supply challenges. With an increase in e-commerce, it is imperative to gain real-time visibility into inventory at every node of the supply chain, all the way from the manufacturer to shipping ports to distribution centers to stores and finally to the consumer. Brands gain affinity when they consistently deliver on their order promise to their customers.

With this need for increased visibility and consistency in mind, we recently launched Microsoft Dynamics 365 Supply Chain Insights in preview that enables organizations to predict risks in their supply chain based on news, weather, geo-political events, etc., and enables them to make better supply chain decisions with proactive risk mitigation via prescriptive insights powered by AI.

With Dynamics 365 Supply Chain Insights, retailers and consumer goods companies can create a digital representation of their physical supply chain. This enables them to simulate different scenarios at different nodes along the value chain and make well-informed decisions to mitigate any disruption. They can further gain visibility into the supply chains of their multiple tiers of suppliers, and improve the effectiveness of their demand and supply planning to ensure a delightful customer experience.

We also made significant enhancements to the Inventory Visibility add-in for Dynamics 365 Supply Chain Management. Retailers can now get near real-time inventory visibility across all their internal channels and disparate third-party supply chain systems in a single place. Adding multiple systems in a scalable manner allows them to add new third-party integrations as they grow their supplier network or acquire new businesses. The enhanced visibility enables businesses to proactively mitigate any out-of-stock situations. Furthermore, they can perform soft reservations based on omnichannel sales demand so that they do not incorrectly commit to a customer.

Retailers can further leverage enhanced planning capabilities to enable near real-time inventory planning by prioritizing certain orders over others with ease. For example, they can prioritize orders for products that are low on stock versus the ones that are not. Lastly, retailers can optimize and streamline back-of-house operations like receiving and replenishment using the Warehouse Management mobile app. The mobile app empowers distribution centers, warehouses, and brick-and-mortar locations to make inventory decisions like transferring goods from one location to another simply by scanning the items. By running critical warehouse operations on Edge, retailers can ensure business continuity across all locations despite latency or network issues at HQ.

All the supply chain solutions from Dynamics 365 are not only interoperable with each other but also seamlessly work with other third-party ERP, commerce, and supply chain systems.

Take the Supply Chain Visibility Guided Tour to see how a retailer can enhance supply chain visibility using Dynamics 365 and Microsoft Cloud for Retail.

Here are some recent examples of our retail customers who have created a resilient supply chain this past year using Dynamics 365.

Servis Industries Limited powers direct-to-consumer expansion by moving to the cloud

Established more than 50 years ago, Servis Industries Limited (SIL) is a leading manufacturer and exporter in Pakistan. To achieve its goal of becoming a global, world-class, and diversified company, SIL moved its on-premises infrastructure to the cloud by adopting Dynamics 365 Finance, Dynamics 365 Supply Chain Management, and Dynamics 365 Commerce. Now, the company has a holistic overview of its retail stores and an infrastructure management system that can support rapid national and international growth.

“To achieve our goal, we need to open 40 to 50 outlets per year. It used to be that with each new store, our team had to be on-site to provide technical support. Now, everything is cloud-based, so we don’t have to travel. The new stores can just access the systems and start their operations almost immediately.”Faisal Rizvi, Head of IT, Servis Industries Limited.  

Another challenge that SIL encountered in its journey was the need to meet the evolving customer expectation for personalized engagement, omnichannel experiences, and frictionless interactions. For this, the company turned to Distributed Order Management to deliver smooth order processing between its e-commerce platform and physical stores and to optimize order fulfillment across their network by utilizing AI, automation, and real-time inventory.

Khaadi delivers rapid omnichannel success

Founded in 1998, Khaadi is Pakistan’s premier fashion retailer with more than 70 physical stores across Pakistan, the Gulf Cooperation Council (GCC), the United Kingdom, and online stores in more than 12 countries. With its growing network of physical and online storefronts, the company needed a solution that could streamline its omnichannel sales delivery and empower its daily operations with actionable store-level insights for managers. The drive towards omnichannel was forced into overdrive when pandemic lockdowns moved all of Khaadi’s operations online. Suddenly, they needed to pivot to leverage a single inventory across the business and use their stores as fulfillment hubs.

To meet this challenge, Khaadi turned to Microsoft Power Apps and Power BI, alongside Dynamics 365 Commerce, Dynamics 365 Finance, and Dynamics 365 Supply Chain Management. With this technology in place, Khaadi successfully transitioned to omnichannel.

“We were able to draw up a blueprint for omnichannel sales rapidly and implemented a complete enterprise-level scenario in just in one weekend. IT was able to transform the dynamics of our business within just a week’s time, making Khaadi a truly omnichannel enabled retailer. From there, it was only a matter of three months before we scaled the roll out ten times with help of Dynamics 365 Commerce Distributed Order Management.”Muhammad Rehan Qadri, Chief Information Officer, Khaadi.

As you can see by these recent customer success stories, Dynamics 365 Supply Chain Management is helping companies to deliver the retail supply chain of the future by empowering direct-to-consumer expansion and accelerating omnichannel success.

What’s next?

The events of the past two years have made it essential for businesses to invest in technology that can help them sense supply chain constraints and disruptions and predict spikes and troughs in demand. Microsoft Dynamics 365 assists companies in integrating these types of new capabilities, such as real-time, end-to-end visibility, priority-based planning, and AI-empowered insights so that they can effectively compete in this new normal. As we have seen here, this can take the form of accelerating direct-to-consumer and omnichannel success, empowering retailers to turn order fulfillment into a competitive advantage, and integrating advanced warehousing solutions to improve distribution processes.  

To learn more, join the Ask the Experts session on how to automate and optimize fulfillment on Tuesday, January 25, 2022, at 10:00 AM Pacific Time. You can watch the on-demand webinar on how to create a resilient and sustainable supply chain and the total economic impact of implementing Dynamics 365 Supply Chain Management. You can also watch the on-demand webinar on how to enhance the visibility of your supply chain by taking a composable approach to rapidly deploy a Supply Chain Control Tower.


Sources:

1- Gartner: The Contemporary Guide to Retail Supply Chain Excellence: Part 1 Inventory and Assortment Published 22 November 2021 – ID G00743960

2- Gartner, Six Ways Supply Chain Analytics Mitigate Business Disruptions, 2021

GARTNER is a registered trademark and service mark of Gartner, Inc. and/or its affiliates in the U.S. and internationally and is used herein with permission. All rights reserved.

The post Dynamics 365 helps build the retail supply chain of the future appeared first on Microsoft Dynamics 365 Blog.

Brought to you by Dr. Ware, Microsoft Office 365 Silver Partner, Charleston SC.