Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eschultze/phishstats-api-network
Visualize networks of phishing by querying the phishstats.info API
https://github.com/eschultze/phishstats-api-network
api graph incident-response osint phishing pyvis shodan threat-intelligence virustotal
Last synced: about 6 hours ago
JSON representation
Visualize networks of phishing by querying the phishstats.info API
- Host: GitHub
- URL: https://github.com/eschultze/phishstats-api-network
- Owner: eschultze
- License: mit
- Created: 2019-11-19T03:20:00.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-08-12T18:20:03.000Z (3 months ago)
- Last Synced: 2024-08-12T21:04:19.259Z (3 months ago)
- Topics: api, graph, incident-response, osint, phishing, pyvis, shodan, threat-intelligence, virustotal
- Language: Python
- Homepage: https://phishstats.info/
- Size: 1.16 MB
- Stars: 77
- Watchers: 5
- Forks: 12
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ip-search-engines - PhishStats Shodan
README
## phishstats-api-network - visualize networks of phishing by querying phishstats.info API
![image](https://github.com/user-attachments/assets/0c1f904c-0aa4-436f-bf0b-1dca3a484fa3)
## Overview
The **PhishStats API Network** tool allows users to visualize phishing networks by querying the [phishstats.info](https://phishstats.info) API. It generates an interactive graph network using the `pyvis` library, where nodes represent key elements like URLs, website titles, hostnames, domains, IP addresses, countries, Autonomous System Numbers (ASNs), and Internet Service Providers (ISPs). The tool processes up to the last 100 phishing incidents to build these networks.
**Please note**: The generated output is an HTML file designed to be viewed in a browser. If you run this tool on a headless server, you might not be able to view the network graph directly.
Download `git clone https://github.com/eschultze/phishstats-api-network`
Into directory `cd phishstats-api-network/`
Install packages `pip3 install -r requirements.txt`
## Usage:
`phishapinetwork.py field operator search`## Usage examples:
`phishapinetwork.py title eq facebook` (for phishing with title facebook)`phishapinetwork.py title like ~facebook~` (for phishing with anything+facebook+anything)
`phishapinetwork.py ip eq 148.228.16.3` (for phishing with a specific IP address)
`phishapinetwork.py tld eq br` (for phishing with .br domains)
`phishapinetwork.py countrycode eq br` (for phishing hosted in Brazil)
`phishapinetwork.py title asn eq as13335` (for phishing using Cloudflare)
`phishapinetwork.py title isp like ~cloudflare~` (for phishing using Cloudflare - slower than the above)
`phishapinetwork.py title like ~brandyouwanttofind~` (change it for brands you know are being targeted)
`phishapinetwork.py url like ~brandyouwanttofind~` (change it for brands you know are being targeted)
## Changelog
v0.1 - Initial release.v0.2 - Fetch data from Shodan integration.
v0.3 - Fetch technologies used by the phishing.
v0.4 - Enhanced error handling, added dynamic timeout management, support for optional input parameters and color scheme by Dracula theme.