Title: [271963] trunk/Source/WebKit
Revision
271963
Author
[email protected]
Date
2021-01-27 10:07:16 -0800 (Wed, 27 Jan 2021)

Log Message

[macOS] WebContent sandbox regex incorrect
https://bugs.webkit.org/show_bug.cgi?id=221045
<rdar://problem/73473985>

Reviewed by Brent Fulgham.

When the regex is intended to match the character '.', the pattern '\.' should be used.

* WebProcess/com.apple.WebProcess.sb.in:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (271962 => 271963)


--- trunk/Source/WebKit/ChangeLog	2021-01-27 18:05:47 UTC (rev 271962)
+++ trunk/Source/WebKit/ChangeLog	2021-01-27 18:07:16 UTC (rev 271963)
@@ -1,5 +1,17 @@
 2021-01-27  Per Arne  <[email protected]>
 
+        [macOS] WebContent sandbox regex incorrect
+        https://bugs.webkit.org/show_bug.cgi?id=221045
+        <rdar://problem/73473985>
+
+        Reviewed by Brent Fulgham.
+
+        When the regex is intended to match the character '.', the pattern '\.' should be used.
+
+        * WebProcess/com.apple.WebProcess.sb.in:
+
+2021-01-27  Per Arne  <[email protected]>
+
         [macOS] Tighten IOUSB access when camera is enabled
         https://bugs.webkit.org/show_bug.cgi?id=221042
         <rdar://problem/70504956>

Modified: trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in (271962 => 271963)


--- trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-01-27 18:05:47 UTC (rev 271962)
+++ trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-01-27 18:07:16 UTC (rev 271963)
@@ -442,13 +442,13 @@
         "kern.tcsm_enable"
         "kern.tcsm_available"
         "vm.footprint_suspend")
-    (sysctl-name-regex #"^hw.(active|avail)cpu")
-    (sysctl-name-regex #"^hw.(busfrequency|cachelinesize|cpufrequency(|_max)|pagesize|tbfrequency)(|_compat)")
-    (sysctl-name-regex #"^hw.l.+cachesize")
-    (sysctl-name-regex #"^hw.(logical|physical)cpu_max")
-    (sysctl-name-regex #"^hw.optional\.")
-    (sysctl-name-regex #"^kern.os(release|type|variant_status|version)")
-    (sysctl-name-regex #"^net.routetable")
+    (sysctl-name-regex #"^hw\.(active|avail)cpu")
+    (sysctl-name-regex #"^hw\.(busfrequency|cachelinesize|cpufrequency(|_max)|pagesize|tbfrequency)(|_compat)")
+    (sysctl-name-regex #"^hw\.l.+cachesize")
+    (sysctl-name-regex #"^hw\.(logical|physical)cpu_max")
+    (sysctl-name-regex #"^hw\.optional\.")
+    (sysctl-name-regex #"^kern\.os(release|type|variant_status|version)")
+    (sysctl-name-regex #"^net\.routetable")
 )
 
 (allow sysctl-write
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to