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.
A simple plugin to randomize every letter of a text in a binary style.
http://frikinside.github.io/jquery.go-binary/
Include script after the include of jQuery library
<script src="/path/to/jquery.go-binary.min.js"></script>
You can use npm for install the plugin
npm install go-binary
$("selector").goBinary();
<button id="go-binary">START GO-BINARY</button>
<div id="text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam a efficitur est.
</div>
$(document).ready(function() {
$("button#go-binary").click(function(){
$("#text").goBinary();
});
});
$.fn.goBinary.defaults = {
text: '', // text to be binaryzed instead nodes text
stepsUntilFixed: 2, // how many steps are needed to fix a character
sps: 25, // steps per second
matchRE: /[^\s]/, // Wich characters are going to be binary
mode: 'shuffle', // How write the text with 3 possible values ['shuffle','type','endless']
callback: function(){}, // A callback function to be called when method finished executing
spsFormulaBasedOnTextLength: '0' // A formula to add sps base on length of text. The word 'length' gets replaced with the text length, for example: 'length/2' it's a valid formula and adds half of the text length as sps, so with a base sps of 50 and a text length of 100, it would add another 50 sps, being 100 sps the final speed.
};
$("#text").goBinary(
{
text: 'This is the text to be binaryzed instead of the text content of the node with id = text.',
stepsUntilFixed: 5,
mode: 'type',
callback: function(){ alert('FINISH!'); },
spsFormulaBasedOnTextLength: 'length/10'
}
);
$("#text").goBinary('stop');
FAQs
A simple plugin to randomize every letter of a text in a binary style.
We found that go-binary 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
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.