beef-npm
Version:
Node.js package to install and interact with BeEF (Browser Exploitation Framework)
22 lines (16 loc) • 466 B
Markdown
This is a Node.js package that installs and interacts with the BeEF (Browser Exploitation Framework).
## Installation
```bash
npm install beef-npm
```
## usage
```javascript
const beef = require('beef-npm');
async function run() {
await beef.installBeEF();
await beef.startBeEF();
await beef.interactWithBeEF('api/your-endpoint'); // Replace with actual endpoint
}
run().catch(console.error);
```