Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@financial-times/ads-heavy-ad-reporting
Advanced tools
This package sets up an instance of the [`ReportingObserver`](https://developer.mozilla.org/en-US/docs/Web/API/ReportingObserver/ReportingObserver) class, which collects reports of type `intervention` generated by the browser.
This package sets up an instance of the ReportingObserver
class, which collects reports of type intervention
generated by the browser.
A callback
is executed every time a report is created, which subsequently sends a post message - with type oAds.heavyAdIntervention
- to the parent window.
The Google Chrome browser generates a report whenever a heavy ad is detected, and immediately removes the third-party creative from the iframe. Unfortunately the intervention is not guaranteed.
However, because the intervention will literally remove the page from the iframe, a failsafe is added to ensure that the report is definitely captured before the page is gone completely, for example, an ad within an iframe. See also, Google's documentation What happens when an ad is removed?
/** @typedef {import("$typings/heavy-ad-reporting")} */
import { monitorHeavyAdsIntervention } from '@financial-times/ads-heavy-ad-reporting';
/**
* Process the reports
* @param {HeavyAdReportingT.Report[]} reports
*/
const onReportsReceived = reports => {
for (let report of reports) {
console.log('Report detected', report);
}
}
monitorHeavyAdsIntervention({
onReportsReceived
})
FAQs
This package sets up an instance of the [`ReportingObserver`](https://developer.mozilla.org/en-US/docs/Web/API/ReportingObserver/ReportingObserver) class, which collects reports of type `intervention` generated by the browser.
The npm package @financial-times/ads-heavy-ad-reporting receives a total of 9 weekly downloads. As such, @financial-times/ads-heavy-ad-reporting popularity was classified as not popular.
We found that @financial-times/ads-heavy-ad-reporting demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.