
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
antibotmail
Advanced tools
This project provides an interface to interact with the AntiBotMail API. Website: https://antibotmail.com/ Docs: https://docs.antibotmail.com/
To install the project, run the following command:
npm install antibotmail
First, import the AntiBotMail
module
import AntiBotMail from 'antibotmail';
// or
const AntiBotMail = require('antibotmail');
Then, create an instance of the class, passing your API key as a parameter to the constructor.
const antiBotMail = new AntiBotMail('your-api-key');
You can now use the instance to interact with the API. For example, to order an email:
const options = {
mailcode: 'HOTMAIL_TEMP',
quantity: 1
};
antiBotMail.orderEmail(options)
.then(response => console.log(response))
.catch(error => console.error(error));
The AntiBotMail
class provides the following methods:
orderEmail(options: BuyOptions): Promise<BuyResponse>
: Orders an email. The options object should have mailcode
and quantity
properties.
orderEmailSimple(options: BuyOptions): Promise<SimpleBuyResponse>
: Orders an email without additional information. The options object should have mailcode
and quantity
properties.
getBalance(): Promise<BalanceResponse>
: Responds with the balance of the API Key.
listenEmail(options: EmailListenerOptions): Promise<EmailListenerResponse>
: API interface to use the Email Listener
feature.
The API is unstable and might not work as expected, use IMAP instead.
This project is licensed under the MIT License.
I have neither created ABM nor am I in anyway associated with them.
If you'd like to contribute, please fork the repository. Pull requests are warmly welcome.
FAQs
A Node.js module to interact with the AntiBotMail API
The npm package antibotmail receives a total of 0 weekly downloads. As such, antibotmail popularity was classified as not popular.
We found that antibotmail 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.