This content originally appeared on Chromium Blog and was authored by Chromium Blog
Keeping Chrome users safe as they browse the web is crucially important to Chrome; in fact, security has always been one of our four core principles. In some cases, security can come at the expense of performance. In our next post in The Fast and the Curious series, we are excited to share how improvements to our phishing detection algorithms keeps users safe online. With these improvements, phishing detection is now 50 times faster and drains less battery.
Phishing detection
Every time you navigate to a new page, Chrome evaluates a collection of signals about the page to see if it matches those of phishing sites. To do that, we compare the color profile of the visited page - that’s the range and frequency of the colors present on the page - with the color profiles of common pages. For example in the image below, we can see that the colors are mostly orange, followed by green and then a touch of purple.If the site matches a known phishing site, Chrome warns you to protect your personal information and prevent you from exposing your credentials.
What you will see if a phishing attempt is detected
To preserve your privacy, by default Chrome's Safe Browsing mode never sends any images outside the browser. While this is great for privacy, it means that your machine has to do all the work to analyze the image.
Image processing can often generate heavy workloads because analyzing the image requires an evaluation of each pixel in what is commonly known as a “pixel loop.” Some modern monitors display upwards of 14 million pixels, so even simple operations on each of those pixels can add up to a lot of CPU use! For phishing detection, the operation that takes place on each pixel is the counting of its basic colors.
Here is what this looks like. The counts are stored in an associative data structure called a hashmap. For each pixel, we extract its RGB color values and store the counts in one of 3 different hashmaps -- one for each color.
Our improvements to the pipeline look like this:
To preserve your privacy, by default Chrome's Safe Browsing mode never sends any images outside the browser. While this is great for privacy, it means that your machine has to do all the work to analyze the image.
Image processing can often generate heavy workloads because analyzing the image requires an evaluation of each pixel in what is commonly known as a “pixel loop.” Some modern monitors display upwards of 14 million pixels, so even simple operations on each of those pixels can add up to a lot of CPU use! For phishing detection, the operation that takes place on each pixel is the counting of its basic colors.
Here is what this looks like. The counts are stored in an associative data structure called a hashmap. For each pixel, we extract its RGB color values and store the counts in one of 3 different hashmaps -- one for each color.
Making it more efficient
Adding one item to a hashmap is fast, but we have to do this for millions of pixels. We try to avoid reducing the number of pixels to avoid compromising the quality of the analysis. However, the computation itself can be improved.Our improvements to the pipeline look like this:
- The code now avoids keeping track of RGB channels in three different hashmaps and instead uses only one to index by color. Three times less counting!
- Consecutive pixels are summed before being counted in the hashmap. For a site with a uniform background color, this can reduce the hashmap overhead to almost nothing.
How much faster did this get?
Starting with M92, Chrome now executes image-based phishing classification up to 50 times faster at the 50th percentile and 2.5 times faster at the 99th percentile. On average, users will get their phishing classification results after 100 milliseconds, instead of 1.8 seconds.This benefits you in two ways as you use Chrome. First and foremost, using less CPU time to achieve the same work improves general performance. Less CPU time means less battery drain and less time with spinning fans.
Second, getting the results faster means Chrome can warn you earlier. The optimization brought the percentage of requests that took more than 5 seconds to process from 16.25% to less than 1.6%. This speed improvement makes a real difference in security - especially when it comes to stopping you from entering your password in a malicious site!
Overall, these changes achieve a reduction of almost 1.2% of the total CPU time used by all Chrome renderer processes and utility processes.
At Chrome’s scale, even minor algorithm improvements can result in major energy efficiency gains in aggregate. Here’s to many more centuries of CPU time saved!
Stay tuned for many more performance improvements to come!
Posted by Olivier Li Shing Tat-Dupuis, Chrome Developer
Data source for all statistics: Real-world data anonymously aggregated from Chrome clients.
This content originally appeared on Chromium Blog and was authored by Chromium Blog
Print
Share
Comment
Cite
Upload
Translate
Updates
There are no updates yet.
Click the Upload button above to add an update.
APA
MLA
Chromium Blog | Sciencx (2021-07-20T16:58:00+00:00) Faster and more efficient phishing detection in M92. Retrieved from https://www.scien.cx/2021/07/20/faster-and-more-efficient-phishing-detection-in-m92/
" » Faster and more efficient phishing detection in M92." Chromium Blog | Sciencx - Tuesday July 20, 2021, https://www.scien.cx/2021/07/20/faster-and-more-efficient-phishing-detection-in-m92/
HARVARDChromium Blog | Sciencx Tuesday July 20, 2021 » Faster and more efficient phishing detection in M92., viewed ,<https://www.scien.cx/2021/07/20/faster-and-more-efficient-phishing-detection-in-m92/>
VANCOUVERChromium Blog | Sciencx - » Faster and more efficient phishing detection in M92. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/07/20/faster-and-more-efficient-phishing-detection-in-m92/
CHICAGO" » Faster and more efficient phishing detection in M92." Chromium Blog | Sciencx - Accessed . https://www.scien.cx/2021/07/20/faster-and-more-efficient-phishing-detection-in-m92/
IEEE" » Faster and more efficient phishing detection in M92." Chromium Blog | Sciencx [Online]. Available: https://www.scien.cx/2021/07/20/faster-and-more-efficient-phishing-detection-in-m92/. [Accessed: ]
rf:citation » Faster and more efficient phishing detection in M92 | Chromium Blog | Sciencx | https://www.scien.cx/2021/07/20/faster-and-more-efficient-phishing-detection-in-m92/ |
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.