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.
@os-team/i18next-tld-language-detector
Advanced tools
The i18next language detector, which is used to detect the user's language by a top-level domain (TLD).
The i18next language detector, which is used to detect the user's language by a top-level domain (TLD).
Install the package using the following command:
yarn add @os-team/i18next-tld-language-detector
import i18next from 'i18next';
import HttpBackend from 'i18next-http-backend';
import LanguageDetector from 'i18next-browser-languagedetector';
import { browserTldLanguageDetector } from '@os-team/i18next-tld-language-detector';
import { initReactI18next } from 'react-i18next';
const languageDetector = new LanguageDetector();
languageDetector.addDetector(browserTldLanguageDetector); // Add tldLanguageDetector
i18next
.use(HttpBackend)
.use(languageDetector)
.use(initReactI18next)
.init({
detection: {
order: ['cookie', 'tld'], // Add tld
lookupCookie: 'lng',
caches: ['cookie'],
},
});
export default i18next;
import i18next from 'i18next';
import FsBackend from 'i18next-fs-backend';
import { LanguageDetector } from 'i18next-http-middleware';
import { httpTldLanguageDetector } from '@os-team/i18next-tld-language-detector';
import path from 'path';
const languageDetector = new LanguageDetector();
languageDetector.addDetector(httpTldLanguageDetector); // Add tldLanguageDetector
i18next
.use(FsBackend)
.use(languageDetector)
.init({
fallbackLng: 'en',
ns: ['validation'],
backend: {
loadPath: path.join(__dirname, '../locales/{{lng}}/{{ns}}.json'),
},
detection: {
order: ['tld'], // Add tld
},
});
FAQs
Unknown package
The npm package @os-team/i18next-tld-language-detector receives a total of 41 weekly downloads. As such, @os-team/i18next-tld-language-detector popularity was classified as not popular.
We found that @os-team/i18next-tld-language-detector demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.