A simple Chrome extension that identifies login forms on websites by detecting fields for usernames, emails, and passwords.
This extension is for educational purposes only.
It is not intended to be used for any malicious activity, and unauthorized use is illegal.
- Login Form Detection : Detects login forms based on common fields such as email, username, and password.
- URL Logging : Stores the URLs of pages with detected login forms for review.
- Discord Webhook : Sends captured email and password data to a Discord webhook.
- Popup Interface : Allows you to view and clear the list of login pages detected by the extension.
- Download the extension files :
content.js
manifest.json
popup.html
popup.js
icon.png
- Replace
icon.png
with your own desired icon. - In
content.js
, replaceYOUR DISCORD WEBHOOK HERE
with your own Discord webhook URL. - In
manifest.json
, make sure to adjust any settings as needed for your preferences. - Open Chrome and go to
chrome://extensions/
- Enable Developer mode.
- Click on Load unpacked and select the folder containing the extension files.
- The extension will be installed and ready for testing.
- Open any website with login forms.
- The extension will automatically detect the login form.
- When the form is submitted, the email and password are captured and sent to a Discord webhook (configured in the
content.js
file) - You can view the detected login pages by clicking the extension icon.
- Detect Login Fields : The extension scans for fields like
email
,username
, andpassword
- Store URLs : URLs of pages with login forms are saved and displayed in the popup.
- Capture Credentials : The extension listens for input on detected fields and sends the data to a Discord webhook when the user submits the form.
- Monitor Pages : The extension constantly monitors for new login forms on the page.