Spectroscope
Search for endpoints potentially vulnerable to Spectre.
Spectroscope là gì?
Spectroscope là một tiện ích mở rộng Chrome được phát triển bởi Lukas Weichselbaum, và tính năng chính của nó là "Search for endpoints potentially vulnerable to Spectre.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Spectroscope
Tải xuống các tệp mở rộng Spectroscope dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Spectroscope is a prototype extension for security engineers and web developers to help track down application resources which aren't protected from being embedded by other websites. Such resources can, in some cases, be exfiltrated by malicious sites making use of CPU-level information leaks on users' devices, such as the Spectre vulnerability. The tool identifies resources which are exempt from default protections enabled in Google Chrome (Cross-Origin Read Blocking, SameSite cookies) and which can be embedded cross-site. The results are added to Chrome's DevTools "Spectroscope" panel and include security recommendations to help protect your resources from Spectre and other cross-site attacks. Note: This is a prototype extension which is meant to be used only as a convenience tool to help you protect your site; it is not an official Google product. Testing your site with Spectroscope is not a substitute for careful deployment of recommended web security features. See https://w3c.github.io/webappsec-post-spectre-webdev/ for a complete list of best practices. Authors (alphabetically): Roberto Clapis, Santiago Diaz, Aleksandr Dobkin, David Dworken, Artur Janc, Aaron Shim, Lukas Weichselbaum
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Spectroscope |
ID | idppnaadbabknjeaifkegolcciafchpp |
URL Chính Thức | https://chromewebstore.google.com/detail/spectroscope/idppnaadbabknjeaifkegolcciafchpp |
Mô tả | Search for endpoints potentially vulnerable to Spectre. |
Kích Thước Tệp | 5.5 MB |
Số Lần Cài Đặt | 232 |
Phiên Bản Hiện Tại | 0.1.0 |
Cập Nhật Lần Cuối | 2021-08-19 |
Ngày Phát Hành | 2021-03-07 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Lukas Weichselbaum |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spectroscope", "version": "0.1.0", "description": "Search for endpoints potentially vulnerable to Spectre.", "icons": { "128": "icon128.png" }, "manifest_version": 2, "devtools_page": "devtools.html", "permissions": [ "cookies", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ], "background": { "persistent": false, "scripts": [ "background.js" ] } } |