Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
nuitee-sdk
Advanced tools
Using npm:
$ npm install nuitee-sdk
Using CommonJS imports with require()
use the following approach:
const NuiteeSDK = require("nuitee-sdk");
const API_KEY = "";
const SHARED_SECRET = "";
const MODE = "sandbox"; //live - sandbox
const nuitee = new NuiteeSDK(API_KEY, SHARED_SECRET, MODE);
Fetch all destinations
const response = await nuitee.allDestinations();
Gte list of hotels by city ID
const cityID = 2734;
const response = await nuitee.getHotelsByCityID(cityID);
Get hotel details
const hotelID = 1098;
const response = await nuitee.getHotelById(hotelID);
Fetch all board type
const response = await nuitee.getBoards();
Nuitee API is a comprehensive and simple to implement Hotel Booking API. The booking flow consists of 3 steps: Search, preBook, and Confirm. The API also allows booking cancellations as well as static data retrieval.
This method is used to request room availability. Some filters and special features can be applied before sending an availability request. A flexible date search allows customers to retrieve available rates. The response generated is a list of hotels with the different room types, board types, cancellation policies, and rates available for those hotels. The rates include supplements and discounts and no additional price calculations are required. The cancellation fees are also returned in the availability response.
const searchConfig = {
checkInDate: "2021-08-29",
checkOutDate: "2021-08-30",
hotelCodes: [131880, 4110],
roomGuests: [
{
adultCount: 2,
childCount: 0,
},
{
adultCount: 1,
childCount: 1,
childAges: [3],
},
],
guestNationality: "US",
currency: "USD",
languageCode: "en_US",
timeout: 20000,
};
let result = await nuitee.search(searchConfig);
const preBookConfig = {
sessionId:
"20210829|20210830|en_US|US|USD|2A0C/1A1C3|891|NEZ0Kj|1622885622393xZzi",
hotelCode: "4110",
rateDetailCode: "145-4110|RFN|20210821|4|51290",
confirmedRooms: [
{
boardId: "RO",
roomCode: "661IQjpu4CPNfM8C7ow71b9vz2o2RsMaDiBOLCCH9zE=|1",
},
{
boardId: "RO",
roomCode: "661IQjpu4CPNfM8C7ow71b9vz2o2RsMaDiBOLCCH9zE=|2",
},
],
timeout: "20000",
};
let result = await nuitee.preBook(preBookConfig);
let bookConfig = {
sessionId:
"20210829|20210830|en_US|US|USD|2A0C/1A1C3|891|NEZ0Kj|1622885622393xZzi",
hotelCode: 131880,
confirmPropertyCode: "145-4110|RFN|20210821|4|51290",
confirmedBooking: true,
clientIdentifier: "agency_booking_locator",
holder: {
email: "example@example.com",
firstName: "f-name",
lastName: "l-name",
titulation: "Mr",
},
reservationInfo: {
customerRoomInfos: [
{
roomCode: "661IQjpu4CPNfM8C7ow71b9vz2o2RsMaDiBOLCCH9zE=|1",
firstName: "f-name",
lastName: "l-name",
titulation: "Mr",
customerComment: null,
},
{
roomCode: "661IQjpu4CPNfM8C7ow71b9vz2o2RsMaDiBOLCCH9zE=|2",
firstName: "f-name",
lastName: "l-name",
titulation: "Mr",
customerComment: null,
},
],
},
billingInfo: {
paymentMethodType: "LIMIT",
},
timeout: 60000,
};
let result = await nuitee.book(bookConfig);
const bookingId = BOOKING_ID_VAL;
let result = await nuitee.getBookingByID(bookingId);
const bookingId = BOOKING_ID_VAL;
const reason = "Some text here"; // OPTIONAL
let result = await nuitee.cancelBooking(bookingId, reason);
FAQs
## Table of Contents
The npm package nuitee-sdk receives a total of 0 weekly downloads. As such, nuitee-sdk popularity was classified as not popular.
We found that nuitee-sdk 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.