
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
ews-javascript-api-auth
Advanced tools
Library to Help with non-Basic Authentication methods with ews-javascript-api package
A helper library to support NTLM and Cookies authentication with ews-javascript-api
npm install ews-javascript-api-auth --save
1.2.0 adds support for NTLMv2 (awaiting pull request merge in node-ntlm-client repo, using git install from gihub repo). 1.2.0 removes
httpntlm
package and usagentlm-client
due to lack of NTLMv2 support inhttpntlm
Typescript code:
import { ConfigurationApi } from "ews-javascript-api"; // add other imported objects based on your need
import { ntlmAuthXhrApi } from "ews-javascript-api-auth"
ConfigurationApi.ConfigureXHR(new ntlmAuthXhrApi(credentials.userName, credentials.password));
// ----------other code------------
JavaScript code:
var ews = require("ews-javascript-api");
var ewsAuth = require("ews-javascript-api-auth");
ews.ConfigurationApi.ConfigureXHR(new ewsAuth.ntlmAuthXhrApi(credentials.userName, credentials.password));
// ------------rest of code----------------
as of version 1.1.0 you can pass
true
as third parameter to the constructer to bypass certificate errors, Note: To be used only for testing and debugging, not suitable for production environment.This should only be needed for ntlm authentication, other scenarios should be fine with use of
process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0";
in the calling library.
Typescript code:
import { ConfigurationApi } from "ews-javascript-api"; // add other imported objects based on your need
import { cookieAuthXhrApi } from "ews-javascript-api-auth"
ConfigurationApi.ConfigureXHR(new cookieAuthXhrApi(credentials.userName, credentials.password));
// ----------other code------------
JavaScript code:
var ews = require("ews-javascript-api");
var ewsAuth = require("ews-javascript-api-auth");
ews.ConfigurationApi.ConfigureXHR(new ewsAuth.cookieAuthXhrApi(credentials.userName, credentials.password));
// ------------rest of code----------------
require ews-javascript-api
version 0.9
MIT
FAQs
Library to Help with non-Basic Authentication methods with ews-javascript-api package
The npm package ews-javascript-api-auth receives a total of 1,109 weekly downloads. As such, ews-javascript-api-auth popularity was classified as popular.
We found that ews-javascript-api-auth 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.