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.
nestjs-airgram
Advanced tools
NPM
$ npm i -s nestjs-airgram
Yarn
$ yarn add nestjs-airgram
Once the installation process is complete, now we need TDLib 1.7 binaries, how to get them you need to build them by this guide, or you can found here,
then place binaries somewhere in your project workspace. Then we can import the module TdlModule
either synchronously or asynchronosly into the root AppModule
.
It is important to specify the correct path to the TDLib binaries in the command
field.
It is directly passed to dlopen / LoadLibrary. Check your OS documentation to see where it searches for the library.
import { Module } from '@nestjs/common';
import { AirgramModule } from 'nestjs-airgram';
@Module({
imports: [
AirgramModule.forRoot({
apiId: 'YOUR_APP_ID',
apiHash: 'YOUR_API_HASH',
command: path.resolve('tdjson.dll'), // Path to tdlib
auth: {
// ...
},
}),
],
})
export class AppModule {}
Then we can inject Airgram
into our services. And use decorators for events.
import { Injectable, OnModuleInit } from '@nestjs/common';
import {
Airgram,
Context,
GetMeMiddleware,
UpdateNewMessageMiddleware,
} from 'airgram';
import {
ExtractMiddlewareContext,
InjectAirgram,
OnEvent,
OnRequest,
OnUpdate,
} from 'nestjs-airgram';
@Injectable()
export class AppService implements OnModuleInit {
constructor(@InjectAirgram() private airgram: Airgram) {
setTimeout(() => this.onModuleInit(), 4000);
}
async onModuleInit(): Promise<void> {
const me = await this.airgram.api.getMe();
console.log('[Me]', me);
}
@OnEvent()
onAnyEvent(ctx: Context): void {
// This code will be invoked before every request and after all updates.
}
@OnUpdate()
async onUpdate(update: unknown): Promise<void> {
// This code will be invoked after update.
}
@OnRequest()
async onRequest(): Promise<void> {
// This code will be invoked before request.
}
@OnEvent('getMe')
onGetMe(ctx: ExtractMiddlewareContext<GetMeMiddleware>): void {
console.log('"GetMe" request triggered', ctx);
// This code will be invoked before "Get me" request.
}
@OnEvent('updateNewMessage')
onNewMessage(
ctx: ExtractMiddlewareContext<UpdateNewMessageMiddleware>,
): void {
console.log('"NewMessage" update triggered', ctx);
// This code will be invoked after "New message" update.
}
}
FAQs
Airgram module for NestJS
The npm package nestjs-airgram receives a total of 17 weekly downloads. As such, nestjs-airgram popularity was classified as not popular.
We found that nestjs-airgram 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.