Categories: Cyber Security News

M365 Copilot Chat and Office Apps Now Protected with SafeLinks at Time-of-Click

Microsoft has announced a security enhancement for its AI-powered productivity suite: the integration of into Microsoft 365 Copilot Chat across desktop, web, and mobile platforms.

This update addresses growing concerns about AI-generated content and the risk of malicious links, marking a pivotal step in safeguarding enterprise collaboration.

SafeLinks, a feature of Microsoft Defender for Office 365, now provides real-time, time-of-click URL protection for all hyperlinks generated in Copilot Chat responses.

When a user clicks a link, SafeLinks checks its safety at that moment-blocking access if the URL is found to be malicious, even if it was safe when first surfaced.

This protection is available to all users with Microsoft Defender for Office 365 Plan 1 or Plan 2, with no additional configuration required.

For users without Defender licenses, Copilot Chat introduces a native time-of-click URL reputation check. This ensures that every link is evaluated for threats before the user proceeds, democratizing baseline security across all users.

Additionally, Copilot Chat will no longer redact hyperlinks found in its grounding data, improving transparency and user experience while maintaining robust security.

M365 copilot chat and office apps now protected with safelinks at time-of-click 2

Below is a simplified example of how a time-of-click URL check might be implemented in a web application, illustrating the core principle behind SafeLinks:

javascript// Pseudocode for time-of-click URL check
async function handleLinkClick(url) {
  const response = await fetch(`/safelinks/check?url=${encodeURIComponent(url)}`);
  const result = await response.json();
  if (result.isSafe) {
    window.location.href = url;
  } else {
    alert("Warning: This link is potentially unsafe and has been blocked.");
  }
}

// Usage: Attach to all links in Copilot Chat output
document.querySelectorAll('.copilot-chat-link').forEach(link => {
  link.addEventListener('click', event => {
    event.preventDefault();
    handleLinkClick(link.href);
  });
});

This code demonstrates the logic: before redirecting the user, the system checks the link’s safety in real time and blocks access if necessary.

Sponsored

Risk Factors: What Organizations Should Watch

While SafeLinks raises the security baseline, organizations must remain vigilant about several persistent and emerging risks associated with AI-powered collaboration:

Risk Factor Description Mitigation Strategy
Oversharing Sensitive Data Copilot can surface and share information beyond intended audiences if permissions are lax Regularly audit permissions, apply labels
Inaccurate Data Classification Mislabeling or inconsistent tagging can expose confidential content Enforce sensitivity labels, automate tagging
Compliance Violations AI-generated content may inadvertently breach regulations (e.g., HIPAA, GDPR) Implement governance frameworks
Poor Content Quality Outdated or irrelevant data may be surfaced, leading to misinformation Maintain data hygiene, update content
User Security Awareness Users may bypass warnings or ignore security popups Ongoing training and awareness programs

Looking Ahead

Microsoft plans to extend SafeLinks protection to Copilot App Chats within Word, PowerPoint, and Excel, further embedding security into the AI-driven workplace.

As threats evolve alongside AI, continuous improvement and layered defense remain essential.

The integration of SafeLinks into M365 Copilot Chat is a decisive move toward a future where productivity and protection go hand in hand.

Organizations are encouraged to update user training and remain proactive in managing AI-related risks as these capabilities roll out worldwide.

Find this Story Interesting! Follow us on LinkedIn and X to Get More Instant updates

The post M365 Copilot Chat and Office Apps Now Protected with SafeLinks at Time-of-Click appeared first on Cyber Security News.

rssfeeds-admin

Recent Posts

The Ultra Slim Lisen 5,000Mah Qi2-Certified Wireless Magnetic Power Bank Drops to $16.99

Apple iPhone users, check out this new deal on an ultra-slim MagSafe power bank that…

5 minutes ago

IGN Live Returns June 6 and 7 2026

IGN Live is back for another year, this year taking place June 6-7 in downtown…

5 minutes ago

New and Exclusive Clip From One Piece Season 2 | IGN Fan Fest 2026

One Piece Season 2 arrives on Netflix on March 10 at 12:00am PDT, and IGN…

5 minutes ago

Qualcomm won’t be announcing Windows gaming handhelds at GDC after all

In January, Qualcomm hinted to The Verge that it might finally bring its powerful Arm-based…

40 minutes ago

DHS reportedly detained a Columbia University student and content creator

Students are seen on the campus of Columbia University on April 14, 2025, in New…

40 minutes ago

Today’s Best Deals: Pokémon Booster Bundle, Huge Woot Video Game Sale, and MTG x TMNT Boosters

If you’ve been waiting to grab any video games, today might be the day. On…

1 hour ago

This website uses cookies.