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.
@elbwalker/connector-datalayer
Advanced tools
Made to be used with walker.js from walkerOS.
More detailed information and examples can be found in the documentation.
connectorDataLayer({
elb, // Function to push the events to, usually the WalkerOS.Elb
// dataLayer, // the dataLayer to be used
// name: 'dataLayer', // name of the dataLayer
mapping: {
}
});
Typical GTM Trigger
gtm.js
: All Pagesevent is a static string data is an object with keys and value as Value for getMappingValue
Typical gtag
API commands like config
, get
, set
, event
, and consent
are all translated to objects. Command parameters are added to data
. For the
event
command the second parameter is used as the event name. For consent
both granted
and denied
values are translated to either true
or false
.
gtag('event', 'foo', { bar: 'baz' }); // { event: "foo", data: { bar: "baz" }}
gtag('config', 'G-XXXXXXXXXX', { foo: "bar" }); // { event: "config G-XXXXXXXXXX", data: { foo: "bar" }}
gtag('consent' 'default', { ad_storage: 'denied' }); // { event: "consent default", data: { ad_storage: false }}
gtag('consent' 'update', { ad_storage: 'granted' }); // { event: "consent update", data: { ad_storage: true }}
gtag('set', 'campaign', { id: "abd" }); // { event: "set campaign", data: { id: "abc" }}
FAQs
datalayer connector for walkerOS
The npm package @elbwalker/connector-datalayer receives a total of 52 weekly downloads. As such, @elbwalker/connector-datalayer popularity was classified as not popular.
We found that @elbwalker/connector-datalayer 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.