
Research
NPM targeted by malware campaign mimicking familiar library names
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
Commonly used plugins for Javascript based frameworks.
with npm
npm install --save gfdu
To Initialize Headers and Base Url for Api Calls, call the below method to initialize.
initializeApiCall(
{
"Content-Type":"application/json", // Remove or Change value for Content Type whatever you need
"Authorization":"Bearer Token", // Remove or Change value for Authorization whatever you need
"YOUR_CUSTOM_HEADERS" : "YOUR_CUSTOM_HEADERS_VALUE" // Add your Headers whatever you need
},
"BASEURL_STRING", // Must be your Base URL
"WITH_CREDENTIALS", // With Credentials must be Boolean - true | false
[{
status_code : "401", // Kindly pass the status code to run the function mentioned in func key for all Api's
func: "YOUR_FUNCTIONS" // Call your functions based on Status Code (status_code)
},
{
status_code : "406", // Kindly pass the status code to run the function mentioned in func key for all Api's
func: "YOUR_FUNCTIONS" // Call your functions based on Status Code (status_code)
}]
);
For Example,
import {initializeApiCall} from "gfdu";
initializeApiCall(
{
"Content-Type":"application/json",
"Authorization":"Bearer Token",
},
"BASE_URL",
false,
[
{
status_code:'401',
func: () => (your_function1(),your_function2(),...)
},
{
status_code:'406',
func: () => (your_function1(),your_function2(),...)
}
]
);
For Get Method, call getApiCall method to make the request and get the respsonse.
getApiCall('PART_OF_URL_STRING', (response) => {
console.log(response);
});
For Post Method, call postApiCall method to make the request and get the respsonse.
var data = {} // Your POST Data's
postApiCall('PART_OF_URL_STRING', {data}, (response) => {
console.log(response);
});
For Put Method, call putApiCall method to make the request and get the respsonse.
var data = {} // Your Data's
putApiCall('PART_OF_URL_STRING', {data}, (response) => {
console.log(response);
});
For Patch Method, call patchApiCall method to make the request and get the respsonse.
var data = {} // Your Data's
patchApiCall('PART_OF_URL_STRING', {data}, (response) => {
console.log(response);
});
For Delete Method, call deleteApiCall method to make the request and get the respsonse.
var data = {} // Your Data's
deleteApiCall('PART_OF_URL_STRING', {data}, (response) => {
console.log(response);
});
For set item, use below to set the item to store in Cookie.
setCookie(name, value);
For set item with expiry, use below to set the item to store in Cookie with Expiry.
setCookieWithExpiry(name, value, no_of_expiry_days);
For get item, use below to get the item stored in Cookie.
getCookie(name);
For remove item, use below to remove the item stored in Cookie.
removeCookie(name);
For remove all items, use below to remove all the items stored in Cookie.
deleteAllCookies();
For set item, use below to set the item to store in local storage.
storageSetItem(key, value);
For get item, use below to get the item stored in local storage.
storageGetItem(key);
For remove item, use below to remove the item stored in local storage.
storageRemoveItem(key);
For remove all items, use below to remove all items stored in local storage.
storageRemoveAll(key);
For set item, use below to set the item to store in session storage.
sessionStorageSetItem(key, value);
For get item, use below to get the item stored in session storage.
sessionStorageGetItem(key);
For remove item, use below to remove the item stored in session storage.
sessionStorageRemoveItem(key);
For remove all items, use below to remove all items stored in session storage.
sessionStorageRemoveAll(key);
currencyFormatter(amount, code);
For Example
currencyFormatter('120','INR'); // Returns ₹120
showTimeZoneDate(full_date_with_time);
showZoneDate(full_date_with_time);
showZoneTime(date);
textCapitalize(text);
returnFirstDegreeObjValue(obj, key);
returnSecondDegreeObjValue(obj, key, postion);
returnThirdDegreeObjValue(masterobj, obj, key, postion);
returnFourthDegreeObjValue(masterobj, obj, key, postion, fourthObj);
returnFifthDegreeObjValue(masterobj, obj, key, postion, fourthObj, fifthObj);
parseJson(obj);
stringifyJson(obj);
reloadWindow();
reloadWindowToPath(path_to_load);
This component is written by Muthukumar D.
Muthukumar D, 2023 © All Rights Reserved. [Muthukumar D]
FAQs
Global Frontend Developer Utils - Created by Muthukumar D
We found that gfdu 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
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
Research
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
Research
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.