Sophos WebProtection – Office365 Exceptions

Damit Office365 korrekt funktioniert, wenn eine Sophos WebProtection als Proxy dazwischen hängt sind folgende Ausnahmen nötig. ( STAND 01.03.2018 )

^https?://([A-Za-z0-9.-]*\.)?office365\.com/
^https?://([A-Za-z0-9.-]*\.)?office\.com/
^https?://([A-Za-z0-9.-]*\.)?skype\.com/
^https?://([A-Za-z0-9.-]*\.)?skypeforbusiness\.com/
^https?://([A-Za-z0-9.-]*\.)?signup.microsoft\.com/
^https?://([A-Za-z0-9.-]*\.)?home.office\.com/
^https?://([A-Za-z0-9.-]*\.)?portal.office\.com/
^https?://([A-Za-z0-9.-]*\.)?agent.office\.com/
^https?://([A-Za-z0-9.-]*\.)?outlook.office365\.com/
^https?://([A-Za-z0-9.-]*\.)?login.microsoft\.com/
^https?://([A-Za-z0-9.-]*\.)?portal.microsoftonline\.com/
^https?://([A-Za-z0-9.-]*\.)?graph.microsoft\.com/
^https?://([A-Za-z0-9.-]*\.)?onmicrosoft\.com/
^https?://([A-Za-z0-9.-]*\.)?live\.com/
^https?://([A-Za-z0-9.-]*\.)?smtp.office365\.com/
^https?://([A-Za-z0-9.-]*\.)?login.windows\.net/
^https?://([A-Za-z0-9.-]*\.)?outlook\.com/
^https?://([A-Za-z0-9.-]*\.)?ceipmsn\.com/
^https?://([A-Za-z0-9.-]*\.)?edgesuite\.net/
^https?://([A-Za-z0-9.-]*\.)?microsoft\.com/

2 thoughts on “Sophos WebProtection – Office365 Exceptions

  1. ^https?://([A-Za-z0-9.-]*\.)?microsoft\.com/

    erlaubt doch bereits:

    ^https?://([A-Za-z0-9.-]*\.)?login.microsoft\.com/
    ^https?://([A-Za-z0-9.-]*\.)?portal.microsoftonline\.com/
    ^https?://([A-Za-z0-9.-]*\.)?graph.microsoft\.com/

  2. Hi, thanks for this info.

    You need to escape the dots in the exceptions. In RegEx a dot means any character, so with:
    ^https?://([A-Za-z0-9.-]*\.)?portal.office\.com/

    Someone can register the domain portalxoffice.com and this will not be checked by the proxy.

    To fix this add the escape character before the dot:
    ^https?://([A-Za-z0-9.-]*\.)?portal\.office\.com/

Schreibe einen Kommentar zu Terry Antworten abbrechen

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert