Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@typeschema/deepkit
Advanced tools
Reusable adapter for Deepkit schemas
https://typeschema.com ✨
import {typeOf} from '@deepkit/type';
import {initTRPC} from '@trpc/server';
import {wrap} from '@typeschema/deepkit';
const schema = typeOf<{name: string}>();
const t = initTRPC.create();
const appRouter = t.router({
hello: t.procedure
.input(wrap(schema))
.query(({input}) => `Hello, ${(input as any).name}!`),
// ^? unknown
});
Use it directly or through @typeschema/main
@deepkit/type
: Required for validation (^1.0.1-alpha.145
)wrap(schema)
: Returns the wrapped schema with access to its operationsvalidate(schema, data)
: Returns the validated data or a list of validation issuesassert(schema, data)
: Returns the validated data or throws an AggregateError
FAQs
Reusable adapter for Deepkit schemas
The npm package @typeschema/deepkit receives a total of 32 weekly downloads. As such, @typeschema/deepkit popularity was classified as not popular.
We found that @typeschema/deepkit 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.