Access to the list of "bad sites" from the built-in chrome?

The built-in Chromium does not have the same protection as stand-alone Chrome when it comes to warning users about "bad sites." Chrome users are familiar with the warning screen that appears when you try to go to a website where Google detects malware or other vile web elements. However, repeating this operation in the built-in Chromium does not lead to a warning screen. Does anyone know how to reproduce this feature, so I can add it to my built-in Chromimum project (in Delphi 6 Pro)? If someone has tracked the web calls needed to recreate this feature, I would like to know.

+6
source share
1 answer

You can check the URL against the lists of suspicious phishing pages and Google malware using the Google Safe Browsing API . To learn how to access this API from delphi in this article Using the Google Safe Browsing API from Delphi , you can integrate the article code inside your own project.

+12
source

Source: https://habr.com/ru/post/894082/


All Articles