Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
gdpr-consent
Advanced tools
GDPR banner to comply with the European cookie law. Inspired by tarteaucitronjs.
Comply to the european cookie law. Inspired by AmauriC/tarteaucitron.js
The european cookie law regulates the management of cookies and you should ask your visitors their consent before exposing them to third party services.
Clearly this script will:
The prebuilt CSS/JS files can be found in the build folder.
build/gdpr-consent.css
build/gdpr-consent.js
To add the GDPR banner you need to add these lines at the end of the <head>
section
<link rel="stylesheet" href="gdpr-consent.css" />
<script type="text/javascript" src="gdpr-consent.js"></script>
<script type="text/javascript">
GDPRConsent.init({
hashtag: "#tarteaucitron" /* Open the panel with this hashtag */,
cookieName: "tarteaucitron" /* Cookie name */,
timeExpire: 31536000000 /* Cookie expiration time */,
acceptAllCta: true /* Show the accept all button*/,
moreInfoLink: true /* Show more info link */,
mandatory: false /* Don't show a message about mandatory cookies */,
preferLocalStorage: true /* Use the localStorage to save responses if it's available */,
websiteName: "Les Jours" /* The name of the Website */,
siteDisclaimerTitle: "« Le site qui raconte l’actualité en séries »" /* A title for the disclaimer message */,
siteDisclaimerMessage: '<i>Les Jours</i> sont un média <a href="/les-jours-c-quoi/">indépendant et sans pub</a>.', /* The content of the disclaimer message */,
});
</script>
You can then configure your services by adding these lines at the end of the <body>
section
<script type="text/javascript">
/* Initialize gdprconsent.js job array */
GDPRConsent.job = GDPRConsent.job || [];
/* Add Google Tag Manager */
GDPRConsent.user.googletagmanagerId = "GTM-P5GRMRT";
GDPRConsent.job.push("googletagmanager");
/* Add Google Analytics (gtag.js) */
GDPRConsent.user.googleanalyticsUa = "UA-59581990-1";
GDPRConsent.user.googleanalyticsInitOptions = {
send_page_view: false,
optimize_id: "GTM-W4WVC25",
};
GDPRConsent.job.push("googleanalytics");
/* Add Socials Sharing Services : Twitter & Facebook */
GDPRConsent.job.push("twitter");
window.fbAsyncInit = function () {
FB.init({ appId: "1716167151957741", status: true, version: "v3.0" });
};
GDPRConsent.job.push("facebook");
/* Add Ads Services : Facebook Pixel */
GDPRConsent.user.fbPixelId = "1415993661766511";
GDPRConsent.job.push("facebookpixel");
/* Add Vidéos : Vimeo & YT */
GDPRConsent.job.push("vimeo");
GDPRConsent.job.push("youtube");
/* Add Sign-in with */
GDPRConsent.job.push("signinwithapple");
GDPRConsent.job.push("signinwithgoogle");
/* Add Subscribe with Google */
GDPRConsent.job.push("subscribewithgoogle");
</script>
You can also use this module with you own bundler.
You can change the style of the banner with these variables.
$gdprcst-font-family-title: "Archer SSm A", "Archer SSm B", "Helvetica Neue",
Helvetica, Arial, sans-serif;
$gdprcst-font-family-text: "proxima-nova", "Helvetica Neue", Helvetica, Arial,
sans-serif;
$gdprcst-color-light: #fff;
$gdprcst-color-dark: #414141;
$gdprcst-color-mid: #c83e2c;
$gdprcst-shadow-color: rgba(87, 87, 87, 0.25);
@import "node_modules/gdpr-consent/src/css/main";
You can use the GDPRConsent.withLanguages
& GDPRConsent.withServices
to change the available set of languages & services.
These methods allow you to create custom builds of this module with more or less elements.
import { GDPRConsent, languages, services } from "gdpr-consent";
// Load languages
const { getLanguages } = languages;
GDPRConsent.withLanguages(getLanguages);
// Load services
const { twitter, facebook, youtube, vimeo } = services;
GDPRConsent.withServices((gdprConsentUser) => {
return {
twitter: twitter(gdprConsentUser),
facebook: facebook(gdprConsentUser),
youtube: youtube(gdprConsentUser),
vimeo: vimeo(gdprConsentUser),
};
});
FAQs
GDPR banner to comply with the European cookie law. Inspired by tarteaucitronjs.
The npm package gdpr-consent receives a total of 103 weekly downloads. As such, gdpr-consent popularity was classified as not popular.
We found that gdpr-consent 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.