
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
@cloakbits/manager
Advanced tools
Note: This utility is an interface for Cloakbits launcher that can be downloaded after signing up an account at Cloakbits.
A utility for managing Cloakbits stealth sessions.
It facilitates communication with local API:
User-Agent
, WebGL
attributes or TCP fingerprint masking,and more.
npm i @cloakbits/manager --save
# or alternatively
yarn add @cloakbits/manager
To use this utility, call configure(options)
and checkHealth
as early as possible. This will ensure launcher process is running, is correctly configured and ready to accept connections.
import manager from "@cloakbits/manager";
manager.configure();
(async () => {
await manager.checkHealth();
// ...
const sessionParams = {
autopersist: true,
platform: "MacIntel",
screen: {
width: 1280,
height: 800
}
};
const sessionId = await manager.sessions.create(sessionParams);
})();
Use session identifier sessionId
as an additional parameter when launching webdriver.
import puppeteer from "puppeteer";
/// ...
const browser = await puppeteer.launch({
executablePath: "/app/cloakbits",
args: [
`--cb-session-id=${sessionId}`
]
});
The identifier can be used to modify session behavior at runtime.
await manager.sessions.depersist(sessionId); // once webdriver process stops the session data will be removed
FAQs
A utility for managing Cloakbits stealth sessions.
We found that @cloakbits/manager 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.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.