Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
$ npm i -s aztgbot
import {
BotMaster,
BotServant,
BotAPI,
BotLogger,
botUtils
} from 'aztgbot'
class EchoBot extends BotServant {
constructor(botAPI, identifier, botID, botName) {
super(botAPI, identifier, botID, botName)
}
async processUpdate(update) {
if (update['message'] != null &&
update['message']['text'] != null) {
await this.botAPI.sendChatAction(
update['message']['chat']['id'],
'typing'
)
await this.botAPI.sendMessage(
update['message']['chat']['id'],
update['message']['text'],
{'replyToMessageID': update['message']['message_id']}
)
}
}
}
new BotMaster(
new BotAPI(process.argv[2]),
EchoBot,
botUtils.perFromID,
{'botLogger': new BotLogger(true)}
).loop()
import {
BotPoller,
BotAPI,
botUtils
} from 'aztgbot'
class MediaBot {
constructor(token) {
this.botAPI = new BotAPI(token)
this.botPoller = new BotPoller(this.botAPI, this.onUpdates.bind(this))
}
loop() {
process.on('SIGINT', () => {
this.botPoller.stopPollUpdates()
process.exit(0)
})
this.botPoller.startPollUpdates()
}
async onUpdates(updates) {
for (const update of updates) {
if (update['message'] != null &&
update['message']['text'] != null) {
await this.botAPI.sendChatAction(
update['message']['chat']['id'],
'typing'
)
await this.botAPI.sendMediaGroup(update['message']['chat']['id'], [
new botUtils.InputMediaPhoto(new botUtils.InputFile('1.png')),
new botUtils.InputMediaPhoto(new botUtils.InputFile('2.png')),
new botUtils.InputMediaPhoto(new botUtils.InputFile('3.png'))
], {'replyToMessageID': update['message']['message_id']})
}
}
}
}
new MediaBot(process.argv[2]).loop()
Apache-2.0
Docs: Here
FAQs
Alynx Zhou's zero-dependency Telegram Bot API implemention.
We found that aztgbot 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.