
Research
5 Malicious Chrome Extensions Enable Session Hijacking in Enterprise HR and ERP Systems
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.
d3-dragrect
Advanced tools
A JavaScript D3 drag selection rectangle component. Only horizontal at the moment.
This essentially allows you to use a graph that you created in D3 and then drag and visually select portions of the graph. You can create multiple selections.
Screenshots and examples coming when the API stabilizes a bit.
<script src="/path/to/d3-dragrect.js"></script>
npm install --save d3-dragrect
component install jprichardson/d3-dragrect
//only use 'require' if using browserify or component
var d3dragrect = require('d3-dragrect')
//'svg' is your svg element, typically 'height' would be the height of 'svg'
var dragBehavior = d3dragrect(d3, svg, xScale, height)
svg.call(dragBehavior)
The default styling will be very ugly. This makes it look alright:
.d3-dragrect {
stroke: steelblue;
stroke-dasharray: 5,5;
fill: aliceblue;
fill-opacity: 0.5;
hover: ;
}
.d3-dragrect:hover {
stroke: red;
fill-opacity: 0.7;
stroke-dasharray: 1,1;
}
.d3-dragrect.selected {
stroke: red;
fill-opacity: 0.5;
}
(MIT License)
Copyright 2013, JP Richardson jprichardson@gmail.com
FAQs
A JavaScript D3 drag selection rectangle component.
We found that d3-dragrect demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.