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

Hi,

I would like to create a web exception by regex for a specific Facebook page and its content

As easy as this sounds I am having trouble with the regex I built:

^([A-Za-z0-9.-]*\.)?facebook\.com\/xxx\/([A-Za-z0-9]*)

I would appreciate if anyone can tell me what I am doing wrong.  

^([A-Za-z0-9.-]*\.)?facebook\.com\.?/



This thread was automatically locked due to age.

Top Replies

  • in reply to pulc001 +2 verified

    You need to import the Certificate Authority on every machine where TLS traffic will be decrypted.

    You can get more information on this Article.

    Also, if all machines are connected to Active Directory, you can import to all of them at the same time. (I believe the Article also covers this.)

    Jump to answer
Parents Reply
  • Hello ,

    A Regex like this should work for you:

    • ^([a-zA-Z0-9.-]*\.)?facebook\.com\.?/FinductiveLtd*

    In this regex, It will count anything before "facebook.com", and when It matches the initial /test - anything after that will go through the exemption.

    Just a warning, this isn't a good Regex, but It should work as you expect.

    EDIT: Look at  answer, doing /xxx apparently also include everything after It.

    Thanks!


    If a post solves your question use the 'Verify Answer' button.

    XG 115w Rev.3 8GB RAM v19.5 MR1 @ Home.

Children