GitPedia

SocialFish

Phishing Tool & Information Collector

From UndeadSecΒ·Updated June 13, 2026Β·View on GitHubΒ·

**SocialFish v3.0** brings powerful new features for cloning modern login pages, capturing cookies, and intercepting 2FA codes with a live operator panel. The project is written primarily in CSS, distributed under the BSD 3-Clause "New" or "Revised" License license, first published in 2018. It has gained significant community traction with 4,756 stars and 1,431 forks on GitHub. Key topics include: educational, pentest, pentesting, phishing, python.

Latest release: v3.0.1β€” Modern
<p align="center"> <img src="https://raw.githubusercontent.com/UndeadSec/SocialFishMobile/master/content/logo.png" width="200"/> </a></p> <h1 align="center">SocialFish v3.0</h1> <h3 align="center">Modern Dynamic Phishing Toolkit</h3>

SocialFish v3.0 brings powerful new features for cloning modern login pages, capturing cookies, and intercepting 2FA codes with a live operator panel.

πŸ†• What's New in v3.0

  • Playwright Browser Automation β€” Clone modern JS-heavy login pages
  • Full Cookie Capture & Analysis β€” Detailed metadata, security attributes, auth tokens
  • Template System β€” Save and reuse clones across multiple victims
  • Live OTP Interception Panel β€” Real-time 2FA code capture and injection
  • MITM Reverse Proxy β€” ngrok/cloudflared tunneling with auto-installation
  • 6 Clone Modes β€” Login-only, cookies-only, or full capture
  • Multi-step Login Detection β€” Automatic heuristics for complex flows (Office365, etc.)
  • Webhook Notifications β€” Real-time alerts to Slack, Discord, custom APIs
  • Session Management β€” Full session tracking with export to JSON/CSV
  • Network Interception β€” Log all HTTP requests/responses
  • Victim Tracking β€” Track clicks, IP addresses, geolocation, device type

πŸ“– Documentation

πŸš€ Quick Start

bash
python setup.py

This will:

  • Install all dependencies
  • Setup Playwright browsers
  • Initialize database
  • Configure tunneling (optional)
  • Display quick-start guide

Option 2: Manual Setup

bash
pip install -r requirements.txt playwright install chromium python SocialFish.py admin password

Then access: http://localhost:5000/neptune

🎯 Basic Workflow

  1. Create Template

    /templates β†’ New Template β†’ Enter target URL
    
  2. Setup Tunnel (optional, for remote testing)

    Click "Tunnel" β†’ Choose ngrok/cloudflared β†’ Authorize
    
  3. Generate Lure URL

    Click "Lure" β†’ Copy unguessable URL
    
  4. Send to Victims

    Distribute lure URL in emails, messages, etc.
    
  5. Monitor in Real-Time

    /sessions β†’ View captured credentials, cookies, OTP codes
    /admin/otp_panel.html β†’ Intercept & inject 2FA codes
    

πŸ”§ Key Features

Templates Library

  • Save clone configurations
  • Reuse across multiple users
  • Clone modes: both (credentials + cookies), login (credentials only), cookies (session only)
  • Browser engines: Playwright (default), Selenium (optional)
  • Full cookie jar (domain, path, secure, httponly, samesite, expiry)
  • JavaScript cookie interception
  • Auth token detection
  • Security attribute analysis
  • Export to JSON/CSV

Live OTP Panel

  • WebSocket-based real-time communication
  • Display victim session details
  • Wait for OTP codes (manual or automatic)
  • Inject OTP back to victim's browser
  • Network activity monitoring

MITM & Reverse Proxy

  • Auto-setup ngrok or cloudflared tunnels
  • Reverse proxy all victim traffic
  • Automatic cookie + credential capture
  • No setup overhead

Webhook Notifications

  • Slack, Discord, custom APIs
  • Triggerable on credential submit, OTP received, session created
  • JSON, form-encoded, or XML payloads

Multi-step & 2FA Detection

  • Automatic heuristics for complex flows
  • OTP endpoint detection
  • Manual breakpoints for user interaction
  • 2FA indicators in analytics

πŸ“Š Supported Sites

Works with any login page that uses:

  • βœ… HTML forms
  • βœ… JavaScript form submission
  • βœ… XHR/fetch-based authentication
  • βœ… SPA logins (React, Vue, Angular)
  • βœ… 2FA/OTP flows
  • βœ… Multi-step authentication (Office365, Gmail, GitHub, etc.)

🌐 API & CLI

Web API

bash
# List templates curl http://localhost:5000/templates # Generate lure URL curl -X POST http://localhost:5000/lure/generate \ -d "template_id=1" # View session curl http://localhost:5000/session/1

CLI Commands

bash
# Setup python setup.py # Interactive setup # Tunneling python core/tunnel_manager.py setup python core/tunnel_manager.py start --type ngrok # Database python core/db_migration.py

πŸ“‚ Project Structure

SocialFish/
β”œβ”€β”€ SocialFish.py               # Main Flask app
β”œβ”€β”€ setup.py                    # Interactive setup wizard
β”œβ”€β”€ FEATURES_v3.md             # Feature documentation
β”œβ”€β”€ IMPLEMENTATION_SUMMARY.md   # Technical details
β”œβ”€β”€ core/
β”‚   β”œβ”€β”€ recorder_playwright.py  # Browser automation
β”‚   β”œβ”€β”€ cookie_inspector.py     # Cookie analysis
β”‚   β”œβ”€β”€ tunnel_manager.py       # Tunneling support
β”‚   β”œβ”€β”€ db_migration.py         # Database schema
β”‚   └── ... (other modules)
└── templates/
    └── admin/
        β”œβ”€β”€ templates.html      # Templates library UI
        β”œβ”€β”€ otp_panel.html     # OTP interception UI
        β”œβ”€β”€ sessions.html       # Session management UI
        └── ... (other templates)

πŸ” Security & Ethics

⚠️ EDUCATIONAL USE ONLY

  • βœ… Consent Required β€” Only test systems you own or have explicit written permission for
  • βœ… Audit Logging β€” All operations logged with user attribution
  • βœ… Data Protection β€” Implement proper data retention policies
  • βœ… GDPR Compliance β€” Comply with local privacy regulations
  • βœ… Disclosure β€” Report vulnerabilities responsibly

See CODE_OF_CONDUCT.md and LICENSE for details.

πŸ“± Mobile Controller

Looking for the mobile controller? Check SocialFishMobile

βš–οΈ Disclaimer

TO BE USED FOR EDUCATIONAL PURPOSES ONLY

The use of the SocialFish is COMPLETE RESPONSIBILITY of the END-USER. Developers assume NO liability and are NOT responsible for any misuse or damage caused by this program.

"DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."

Taken from LICENSE.

🐳 Docker

Run with Docker:

bash
docker compose up

Status: Production-ready for authorized security testing and red team exercises

CONTRIBUTING

Open Source Helpers

We encourage you to contribute to SocialFish! Please check out the Contributing to SocialFish guide for guidelines about how to proceed. Join us!

Special Contributors

@carinamary2448 - https://github.com/carinamary2448

Contributors

Showing top 12 contributors by commit count.

View all contributors on GitHub β†’

This article is auto-generated from UndeadSec/SocialFish via the GitHub API.Last fetched: 6/13/2026