
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.
node-double-take
Advanced tools
Unofficial Node.js Wrapper for Double Take Facial Recognition by Shinobi Systems (https://shinobi.video)
All HTTP API Requests seen in the Double Take Documentation should work with this wrapper.
For each available function you can find their possible parameters in the Double Take documentation.
Double Take documentation : https://documenter.getpostman.com/view/1013188/TzsWuAa8#intro
Initialize Wrapper
const apiHost = 'http://localhost:3000'
const doubleTake = require('node-double-take')
const {
authPost,
authPasswordPost,
authPasswordPatch,
authTokens,
authTokensPost,
authTokensDelete,
cameraCamera,
config,
configPatch,
configSecrets,
configSecretsPatch,
configTheme,
configThemePatch,
filesystemFolders,
filesystemFoldersNamePost,
filesystemFoldersNameDelete,
logger,
loggerDelete,
match,
matchDelete,
proxy,
recognize,
recognizeTest,
recognizeUploadPost,
statusConfig,
storageLatestFilename,
storageMatchesFilename,
storageTrainDelete,
storageTrainNameFilename,
train,
trainIdPatch,
trainAddNamePost,
trainRemoveNameDelete,
trainRetrainName,
trainStatus,
apiRequest,
uploadFile,
} = doubleTake(apiHost);
Simple API Calls with apiRequest
. First Parameter is the target, Second are the options.
Example of /auth
const authResponse = await authPost({
password: 'password',
})
Example of /recognize/upload
with file buffer.
const fileBuffer = fs.readFileSync(filePath);
const file = {
fileData: fileBuffer,
fileName: 'example.jpg',
}
recognizeUploadPost(file).then((data) => {
console.log(data)
})
Example of /recognize/upload
with createReadStream.
const file = {
fileData: fs.createReadStream(filePath),
fileName: 'example.jpg',
}
recognizeUploadPost(file).then((data) => {
console.log(data)
})
Example of /config/theme
const themePatchResponse = await configThemePatch({
"ui": "bootstrap4-dark-blue",
"editor": "nord_dark"
})
FAQs
Node.js Wrapper for Double Take Facial Recognition HTTP API
The npm package node-double-take receives a total of 2 weekly downloads. As such, node-double-take popularity was classified as not popular.
We found that node-double-take 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.