
Research
npm Malware Targets Telegram Bot Developers with Persistent SSH Backdoors
Malicious npm packages posing as Telegram bot libraries install SSH backdoors and exfiltrate data from Linux developer machines.
Checkbox.js aims to create a functional checkbox out of pretty much any HTML markup. This allows you to style the checkbox any way you would like. It gives you full control of the markup.
Given our HTML:
<label for="checkbox">Subscribe?</label>
<span id="checkbox"></span>
We can create a new checkbox out of a span by passing the element to checkbox.js:
new Checkbox(document.getElementById('checkbox'));
This will create a checkbox out of that HTMLElement that you
passed. Checkbox.js will try to find a label
element in the DOM to
associate with the checkbox. If it can't find a label
it will throw
an error. All checkboxes must have a label.
What your checkbox should look like after using checkbox.js:
<label for="checkbox" id="jsze4iuu8c">Subscribe?</label>
<span id="checkbox" tabindex="0" role="checkbox" aria-labelledby="jsze4iuu8c" aria-checked="false"></span>
If you would like you can pass a reference to the label directly to checkbox.js:
<label id="label">Subscribe?</label>
<span id="checkbox"></span>
new Checkbox(document.getElementById('checkbox'), {
label: document.getElementById('label')
});
You can also initialize the checkbox to be checked by default by
passing a isChecked
key in the options
object.
<label id="label">Subscribe?</label>
<span id="checkbox"></span>
new Checkbox(document.getElementById('checkbox'), {
label: document.getElementById('label'),
isChecked: true
});
If you store a reference to the checkbox when you instantiate it, you
can call methods on that instance like toggleCheckbox
. This allows
you to toggle the checkbox from actions other than a click or keyboard
event.
<label for="checkbox">Subscribe?</label>
<span id="checkbox"></span>
// init an unchecked checkbox
let checkbox = new Checkbox(document.getElementById('checkbox'));
checkbox.toggleCheckbox(); // toggles to checked
FAQs
Create an accessibile checkbox out of pretty much any HTML markup
The npm package checkboxjs receives a total of 1 weekly downloads. As such, checkboxjs popularity was classified as not popular.
We found that checkboxjs 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
Malicious npm packages posing as Telegram bot libraries install SSH backdoors and exfiltrate data from Linux developer machines.
Security News
pip, PDM, pip-audit, and the packaging library are already adding support for Python’s new lock file format.
Product
Socket's Go support is now generally available, bringing automatic scanning and deep code analysis to all users with Go projects.