Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
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.
The npm package go-binary receives a total of 21 weekly downloads. As such, go-binary popularity was classified as not popular.
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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.