This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

RegEx function?

Hello there,

i have trouble with windows update(s).
Unter windows 8 i can work with updates, windows 7 do not.
Question is:

Do the following regex exception
^https?://([A-Za-z0-9.-]*\.)?microsoft\.com/

includes following (sub)domains?
http(s)://*.microsoft.com AND
http(s)://*.*.microsoft.com AND
http(s)://*.*.  .... *.microsoft.com and so on?

i still get this ssl-errors in web-logging when trying to update windows 7 clients:
2013:04:19-23:20:43 utm httpproxy[4381]: id="0003" severity="info" sys="SecureWeb" sub="http" request="0x14707bd0" function="ssl_log_errors" file="ssl.c" line="58" message="C 1.2.3.4: 2986204016:error:140780E5:SSL routines:SSL23_READ:ssl handshake failure:s23_lib.c:131:" 

A problem with microsoft certificates? Why not to ignore any certificate in relation with windows updates?

Thx,

Manuel


This thread was automatically locked due to age.
Parents
  • Hi,
    I think the regex could be cleaned up a little; try:
    ^https?://([A-Za-z0-9\.-]*)microsoft\.com/
    or
    ^https?://([A-Za-z0-9\.-]*)microsoft\.com/.*

    The parentheses probably aren't needed.

    Are you using this as a "Transparent Mode Skiplist" entry?

    You might also need to skip windowsupdate.com and maybe some other domains.

    Barry
Reply
  • Hi,
    I think the regex could be cleaned up a little; try:
    ^https?://([A-Za-z0-9\.-]*)microsoft\.com/
    or
    ^https?://([A-Za-z0-9\.-]*)microsoft\.com/.*

    The parentheses probably aren't needed.

    Are you using this as a "Transparent Mode Skiplist" entry?

    You might also need to skip windowsupdate.com and maybe some other domains.

    Barry
Children
  • Hi,
    ...
    Are you using this as a "Transparent Mode Skiplist" entry?

    You might also need to skip windowsupdate.com and maybe some other domains.

    Barry



    Hi Barry,

    yes, i'm using this in the transp. mode skiplist.
    The default from sophos only works with Windows 8 (pro) Clients, but not with Windows 7 (errorcodes in Winupate-window). The Problem is, that Microsoft is using different Hosts and (Sub)Domains, not only update.microsoft.com. I still get some ssl issues in the livelog, when i try to connect a win7-client (a handshake thing).

    I also have this rule for windowsupdate.com.

    Thx,

    Manuel