Cannot get URL filter to work (I really tried in all possible ways) #885
Unanswered
fredrik-nti-johanneberg
asked this question in
Q&A
Replies: 2 comments 4 replies
-
Beta Was this translation helpful? Give feedback.
0 replies
-
You can inspect the inner workings of the filtering mechanism in real time by activating the application log in your configuration (see https://safeexambrowser.org/windows/win_usermanual_en.html#SecurityPane > Allow access to application log et al.). Once enabled, open the application log via the action center or taskbar and then inspect which URLs are being blocked while navigation or performing actions in the browser. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to get URL filtering to work on Ciscos platform skillsforall.com given the following:
Start URL (this is the exam page):
https://skillsforall.com/launch?id=437dd255-f560-43e4-aa3c-34185fc916da&tab=learning&assignment=e58d98dd-9870-4b8e-88d3-b04738a708a2&activeTab=assignmentdetails
I have an allow filter for
https://auth.netacad.com/*
which is necessary for authentication before opening the exam (the start URL will redirect to auth.netacad.com before opening). This filter works as expected.There are links accessible on the exam page which navigates to pages with learning material that I want to restrict access to during the test. The learning material (course modules/chapters) have links that look like this:
https://skillsforall.com/launch?id=437dd255-f560-43e4-aa3c-34185fc916da&tab=curriculum&view=6e73cc94-0b45-533d-8449-3c3bbcd8f215
. There is an URL parametertab=curriculum
that I tried to use as a pattern for blocking these URLs.So far I have tried blocking
https://skillsforall.com/launch?id=437dd255-f560-43e4-aa3c-34185fc916da&tab=curriculum*
(with and without the appended wildcard). I have also tried blocking these URLs with a regex rule:(?<==)curriculum(?=&)
or a regular wildcard-rule*curriculum
.None of these blocking rules works. I'm unable to block this content. Maybe I'm missing something here, but I really tried to read through the documentation and similar topics posted here. The documentation mentions that "URL parameters like a query string can be indicated and always have to start with the character '?'. Parts of the query can be replaced with the wildcard char '*'.". However, there are no examples using the ?-sign and I do not fully understand if this is a valid token similar to wildcard.
Any help on this topic would be highly appreciated.
Beta Was this translation helpful? Give feedback.
All reactions