惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
Check Point Blog
AI
AI
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
U
Unit 42
Vercel News
Vercel News
Stack Overflow Blog
Stack Overflow Blog
P
Proofpoint News Feed
Microsoft Security Blog
Microsoft Security Blog
The GitHub Blog
The GitHub Blog
WordPress大学
WordPress大学
Martin Fowler
Martin Fowler
博客园 - 【当耐特】
B
Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
F
Full Disclosure
Google DeepMind News
Google DeepMind News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Help Net Security
Recorded Future
Recorded Future
N
News and Events Feed by Topic
雷峰网
雷峰网
V
Vulnerabilities – Threatpost
Schneier on Security
Schneier on Security
aimingoo的专栏
aimingoo的专栏
S
Schneier on Security
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
O
OpenAI News
Project Zero
Project Zero
罗磊的独立博客
G
GRAHAM CLULEY
腾讯CDC
P
Privacy International News Feed
V
V2EX
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Hugging Face - Blog
Hugging Face - Blog
爱范儿
爱范儿
H
Heimdal Security Blog
L
LINUX DO - 热门话题
Forbes - Security
Forbes - Security
美团技术团队
MongoDB | Blog
MongoDB | Blog
Security Latest
Security Latest
M
MIT News - Artificial intelligence
T
Tor Project blog
Cisco Talos Blog
Cisco Talos Blog
宝玉的分享
宝玉的分享
T
Threat Research - Cisco Blogs
TaoSecurity Blog
TaoSecurity Blog

Recent Commits to url:main

Report a validation error for IPv4 addresses from non-ASCII input Close more gaps between URL writing and parser sections Define valid IPv6-address string inline Valid domain needs to account for ending with a number Make relative-URL-with-fragment string account for opaque-path base URLs · whatwg/url@24deb59 Path segments can be empty · whatwg/url@1505976 Simplify ends in a number checker · whatwg/url@12c0c5c Close gap between URL writing and parser sections Rename domain to ASCII to domain parser · whatwg/url@3c83874 Add Unicode ToASCII fallback for ASCII domains Meta: remove duplicate Alexis Hunt from acknowledgments · whatwg/url@9fe73be Editorial: fix minor markup and grammar inconsistencies · whatwg/url@6d83609 Meta: remove extra space in query definition · whatwg/url@afc0820 Correct a couple minor issues Document invariants of percent-encode sets better · whatwg/url@dc66b3b Meta: update repository files · whatwg/url@8f0372b Meta: add pywhatwgurl to list of implementations · whatwg/url@b8936db Review Draft Publication: February 2026 Define the "extract an origin" operation · whatwg/url@b6b3251
Editorial: add missing article before "hexadecimal number" · whatwg/url@91c807f
shannonbooth · 2026-04-18 · via Recent Commits to url:main
Original file line numberDiff line numberDiff line change

@@ -418,7 +418,7 @@ bytes that are not <a>ASCII bytes</a> might be insecure and is not recommended.

418418
419419

<ol>

420420

<li><p>Let <var>bytePoint</var> be the two bytes after <var>byte</var> in <var>input</var>,

421-

<a lt="isomorphic decode">decoded</a>, and then interpreted as hexadecimal number.

421+

<a lt="isomorphic decode">decoded</a>, and then interpreted as a hexadecimal number.

422422

<!-- We should have a better definition for this. -->

423423
424424

<li><p>Append a byte whose value is <var>bytePoint</var> to

@@ -1280,7 +1280,7 @@ actually doing that with the editors of this document first.

12801280

<li><p>Let <var>value</var> and <var>length</var> be 0.

12811281
12821282

<li><p>While <var>length</var> is less than 4 and <a>c</a> is an <a>ASCII hex digit</a>, set

1283-

<var>value</var> to <var>value</var> &times; 0x10 + <a>c</a> interpreted as hexadecimal number,

1283+

<var>value</var> to <var>value</var> &times; 0x10 + <a>c</a> interpreted as a hexadecimal number,

12841284

and increase <var>pointer</var> and <var>length</var> by 1.

12851285
12861286

<li>