|
phishingSafelistStream.write({ |
|
jsonrpc: '2.0', |
|
method: 'safelistPhishingDomain', |
|
params: [suspectHostname], |
|
id: createRandomId(), |
|
}); |
|
|
|
window.location.href = suspectHref; |
Improvements to the extension's phishing detection make it so much faster that we still end up blocking the request, as the message is received after our detection kicks in.
phishing-warning/src/index.ts
Lines 242 to 249 in 3cf9b0c
Improvements to the extension's phishing detection make it so much faster that we still end up blocking the request, as the message is received after our detection kicks in.