Showing: 1 - 4 of 4 Articles

Understanding React2Shell (CVE-2025-55182) — What It Is & How to Protect Your App

On Dec 3, 2025, the maintainers of React disclosed a critical vulnerability named React2Shell, tracked under CVE-2025-55182. This post breaks down what the vulnerability is, why it matters, how it works at a high level, and the steps organizations should take immediately to mitigate the …

Important Moment.js functions for JavaScript

Below are some very important functions that you will need while working with timestamp or date in JavaScript. // returns current timestamp const set_current_timestamp = function() { returnmoment().format(‘X’); }; // converts timestamp to date // pass timestamp in function const getDateFormatFromTimeStamp = function(dt) { returnmoment.unix(dt).format(‘MM/DD/YYYY’); }; …