
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
simple cli tool that sends message as telegram bot
Can be useful when you run long duration cli tasks.
$ npm install --global teleme
Firstly, you need to create a telegram bot via @botfather, get the bot's token, and the chatid. The chat can be a group or 1-1 conversation.
Then, put the information into ~/.config/teleme/config.json, such as:
{
"token": "TOKEN_OF_THE_BOT",
"chatid": "12345678",
"bot2_token": "TOKEN_OF_ANOTHER_BOT", # optional
"bot2_chatid": "23456789", # optional
}
Execute teleme and you should be able to receive a message from the bot, that's it.
If you need to use it for root user, don't forget to set the config for root as well.
$ teleme --help
Usage
$ tlm <message>
OR
$ teleme <message>
OR if you want to use the non-default bot
$ TLMBOT=bot2 teleme <message>
If you want to send silent message
$ SILENT=true teleme <message>
Examples
$ teleme
$ tlm
$ teleme "My sexy message ❤️ "
The usage can be flexible, for example:
tlm or teleme.
$ some-slow-cmd
output1
output2
...
tlm
$ some-heavy-task ; teleme
$ cmd-that-should-not-fail || teleme 'something weird just happened'
MIT © Tianxiang Chen
FAQs
Simple cli tool that sends message as telegram bot.
We found that teleme 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.