##AIS Vessel Spoofing Simulator β Oil Tanker Stealth Ops
β οΈ This project is for educational and research purposes only. No real AIS transmissions are sent.
Contact via Telegram: @RedRepo
This simulator mimics AIS spoofing techniques used in stealth maritime operations by oil tankers, cargo ships, and naval vessels.
It demonstrates how AIS data can be simulated, manipulated, and visualized for cybersecurity awareness and training.
AIS spoofing GitHub, vessel spoof tool, oil tanker stealth, ship tracking simulator, maritime cybersecurity, AIS simulator, ghost vessel generator, cargo ship AIS fake, automatic identification system override
- π Fake vessel location generation
- π’οΈ Oil tanker AIS identity cloning
- β Ghost ship spawning (custom name, IMO, coordinates)
- π°οΈ AIS NMEA sentence formatter
- π‘ Broadcast simulator via SDR (disabled in public version)
- π§Ύ Event logger (spoof vs real)
- π Dashboard-ready data JSON endpoints
# Clone this AIS spoofing simulator project
git clone https://github.com/youruser/AIS-Vessel-Spoofing-Simulator-OilTanker-StealthOps.git
cd AIS-Vessel-Spoofing-Simulator-OilTanker-StealthOps
# Install dependencies
pip install -r requirements.txt
# Run simulator (base mode)
python3 simulator.py
# Simulate spoofed AIS packet (PREVIEW ONLY)
from ais_spoofer.generator import generate_ais_message
spoofed_msg = generate_ais_message(
name="SEA GHOST",
imo="9329999",
lat=24.12345,
lon=54.98765,
speed=13.7,
course=278.5,
ship_type="Oil Tanker"
)
print(spoofed_msg)
# OUTPUT:
# !AIVDM,1,1,,A,55NB8G02>?1D@<1B8UQ@9U700000,0*5F
# π FULL spoofing engine & radio integration is PRIVATE
# To access the full codebase including:
# - Real-time spoof message engine
# - AIS SDR transmission module
# - Dashboard with ghost ship fleet visualizer
π© Contact on Telegram: [@RedRepo](https://t.me/RedRepo)