Listen to this Post
The Microsoft Security Summit Finland is set to take place on May 14th, 2025, in Helsinki at the Scandic Park. The event will feature keynotes, panel discussions, and technical sessions focused on cybersecurity, cloud security, data governance, and AI in security.
π Registration & Details: http://msft.it/6042qXfHY
Agenda Highlights:
- 09:45 β 10:15 Keynote by Mervi Airaksinen & Jukka Ylimutka (Microsoft)
- 10:15 β 10:45 Data Governance in a Global Energy Company β Susan Lamb & Atle Skjekkeland (Infotechtion)
- 10:45 β 11:15 Next-Gen Data Security with Microsoft Purview β Tony Lintunen & Kim SΓΆderstrΓΆm (Microsoft)
- 13:30 β 14:00 “Improving Cloud Security: What Would an Attacker Do?” β Marko Lauren (Microsoft)
- 15:30 β 16:00 “Use Cases for GenAI in Security” β Sami Lamppu & Joosua Santasalo (MVP)
You Should Know:
1. Microsoft Purview for Data Security
Microsoft Purview helps organizations manage data governance and compliance. Key commands for security auditing:
List sensitive data labels in Microsoft 365 Get-Label -Identity "Confidential" Check data retention policies Get-RetentionCompliancePolicy
2. Cloud Security Hardening (Azure & AWS)
To detect misconfigurations in cloud environments:
Azure CLI β Check for open storage containers az storage account list --query "[?allowBlobPublicAccess==true].name" AWS CLI β Identify publicly accessible S3 buckets aws s3api list-buckets --query "Buckets[].Name"
3. AI in Cybersecurity with Microsoft Sentinel
Automate threat detection using KQL (Kusto Query Language):
SecurityAlert | where ProviderName == "Microsoft Sentinel" | summarize Count = count() by AlertName
4. Linux Security Commands
Check for unauthorized SSH access:
View recent SSH login attempts grep "Failed password" /var/log/auth.log Block repeated failed login IPs with fail2ban sudo fail2ban-client status sshd
5. Windows Defender Firewall Rules
Audit inbound firewall rules:
Get-NetFirewallRule -Direction Inbound | Where-Object { $_.Enabled -eq "True" }
What Undercode Say:
The Microsoft Security Summit Finland is a crucial event for cybersecurity professionals, covering cloud security, AI-driven defense, and real-world case studies. Implementing Microsoft Purview, Sentinel, and hardening cloud environments are essential for modern security operations. Automation with PowerShell, KQL, and Linux security tools enhances threat detection and response.
Expected Output:
- Event URL: http://msft.it/6042qXfHY
- Key Topics: Cloud Security, AI in Cybersecurity, Data Governance
- Commands: PowerShell, KQL, Azure/AWS CLI, Linux security checks
References:
Reported By: Markolauren Microsoftsecurity – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass β



