Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
A simple implementation-less interface for testing code outside of WebGL
A simple implementation-less interface for testing code outside of WebGL.
Requires node.
npm install webgl-mock
Write source code using webgl.
function VertexBuffer( gl, options ) {
options = options || {};
this.gl = gl;
this.type = ( options.type !== undefined ) ? options.type : gl.FLOAT;
this.mode = ( options.mode !== undefined ) ? options.mode : gl.TRIANGLES;
this.buffer = gl.createBuffer();
gl.bindBuffer( gl.ARRAY_BUFFER, this.buffer );
gl.bufferData( gl.ARRAY_BUFFER, options.data || options.size, gl.STATIC_DRAW );
gl.bindBuffer( gl.ARRAY_BUFFER, null );
}
Test source code outside of webgl.
require('webgl-mock');
var canvas = new HTMLCanvasElement( 500, 500 );
var gl = canvas.getContext( 'webgl' );
describe('VertexBuffer', function() {
describe('#constructor()', function() {
it('should default type to gl.FLOAT', function() {
var vb = new VertexBuffer( gl );
assert( vb.type === gl.FLOAT );
});
it('should default mode to gl.TRIANGLES', function() {
var vb = new VertexBuffer( gl );
assert( vb.type === gl.TRIANGLES );
});
});
});
FAQs
A simple implementation-less interface for testing code outside of WebGL
We found that webgl-mock 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.