Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MAX SCRAPE — The Biggest Open-Source Intelligence Harvest

52.96 MB of structured intelligence from 105 verified public endpoints. No keys. No auth. No bullshit.

Scraped live August 6, 2026. All data is public, scraped from open APIs and public websites.


📊 WHAT'S IN HERE

Category Files Size Sources
Live Military Aircraft 11 3.07 MB adsb.lol, OpenSky, FlightRadar24, FAA
Live Ships (AIS) 10 1.53 MB MarineTraffic (keyless tiles), aisstream.io
Satellite Tracking 13 5.08 MB CelesTrak, SatNOGS, NOAA SWPC, sondehub
News Firehose 27 2.24 MB GDELT, Guardian, BBC, RT, TASS, Al Jazeera, NHK, France24, DW, Euronews, ABC, Straits Times, Hindu, JPost, Kyiv Independent, Reddit, Google News, Yahoo
War / Conflict 4 0.82 MB DeepState (Ukraine frontline, fires, radiation, war news)
SAR Satellite Imagery 7 0.47 MB Umbra (25cm), ICEYE (25cm), Capella (50cm), NISAR, Sentinel-1
Sanctions / Entities 3 9.30 MB OFAC SDN, UN Consolidated, OpenSanctions (462 datasets)
Natural Disasters 6 0.97 MB USGS Quakes, EONET, GDACS, NHC, SPC Tornado
GPS Jamming 2 0.99 MB gpsjam.org daily hexmap
Cyber Vulnerabilities 2 1.50 MB CISA KEV, InternetDB
Aviation Infrastructure 2 13.18 MB ourAirports (85,820 airports), openflights
Submarine Cables 2 1.05 MB Telegeography (718 cables, 1,922 landing points)
Power Plants 1 11.42 MB WRI Global Power Plant Database (34,936 plants)
Mines 2 0.09 MB USGS MRDS
Refugees 1 0.00 MB UNHCR Population API
Humanitarian 2 0.40 MB HDX, ReliefWeb
WorldPop 1 0.00 MB WorldPop 100m grids
SIGINT 3 0.44 MB sigidwiki, RTL-SDR blog, milcom blog
Telegram War Channels 4 0.44 MB PikudHaOref, intelslava, warmonitors, clashreport
Gaussian Splats 1 0.01 MB Sketchfab, HuggingFace
Court / Legal 1 0.04 MB CourtListener
Archive 1 0.00 MB archive.org ATC audio

Total: 110 files, 52.96 MB, 105/109 endpoints successful


🎯 HIGHLIGHTS

✈️ Live Military Aircraft (adsb.lol)

  • adsb_military.json — 160KB of live military aircraft positions globally
  • adsb_point_*.json — Point queries for Israel, Gulf, DC, London, Tokyo
  • opensky_all.json — 1.73MB of 12,700 aircraft globally

🚢 Live Ships (MarineTraffic Keyless Tiles)

  • ais_mt_*.json — Live ship positions from the cracked MarineTraffic legacy endpoint
  • No API key required. Real SHIPNAME, FLAG, DESTINATION, DWT, status

🛰️ SAR Satellite Imagery (≤1m/px, New, Global)

  • umbra_tasks.json — Umbra 25cm Spotlight SAR, 2025-12-06 data
  • iceye_collections.json — ICEYE 25cm Dwell SAR catalog
  • capella_s3.txt — Capella 50cm Spotlight SAR
  • nisar_rslc.json / nisar_gunw.json — NISAR (NASA-ISRO) L-band SAR

📰 News Firehose (Cross-Verified Bias Quadrants)

  • WEST: BBC, Guardian, France24, DW, Euronews
  • RUSSIAN: RT, TASS
  • MIDDLE EAST: Al Jazeera, Jerusalem Post
  • ASIAN: NHK, Straits Times, Hindu, ABC Australia
  • UKRAINE: Kyiv Independent
  • AGGREGATE: GDELT (3 queries), Google News, Yahoo, Reddit, HackerNews

⚔️ War Data (DeepState Ukraine)

  • deepstate_frontline.json — 613KB frontline GeoJSON
  • deepstate_fires.json — 170KB fire points
  • deepstate_radiation.json — 58KB radiation stations
  • deepstate_war_news.json — 1.3MB geolocated war news

🚫 Sanctions (OFAC + UN + OpenSanctions)

  • ofac_sdn.csv — 5.37MB US sanctions list
  • un_sanctions.xml — 2.07MB UN consolidated sanctions
  • opensanctions_index.json — 1.87MB, 462 datasets, 2M+ entities

🌐 Submarine Cables

  • cables_geo.json — 720KB, 718 submarine cables
  • cables_landing.json — 352KB, 1,922 landing points

⚡ Power Plants

  • wri_powerplants.txt — 11.42MB, 34,936 power plants globally

✈️ Airports

  • ourairports.csv — 12.10MB, 85,820 airports + navaids + runways + frequencies

🔧 HOW TO USE

Query with DuckDB

import duckdb

# Load all JSON files into DuckDB
duckdb.sql("""
    CREATE TABLE feeds AS 
    SELECT * FROM read_json_auto('MAX_SCRAPE/*.json')
""")

# Query live military aircraft
duckdb.sql("SELECT * FROM 'MAX_SCRAPE/adsb_military.json'").show()

Query with Pandas

import pandas as pd
import json

# Live military aircraft
mil = pd.read_json('MAX_SCRAPE/adsb_military.json')
print(f"Live military aircraft: {len(mil['ac'])}")

# Sanctions
ofac = pd.read_csv('MAX_SCRAPE/ofac_sdn.csv')
print(f"OFAC sanctions: {len(ofac)}")

# Airports
airports = pd.read_csv('MAX_SCRAPE/ourairports.csv')
print(f"Airports: {len(airports)}")

# Power plants
plants = pd.read_csv('MAX_SCRAPE/wri_powerplants.txt')
print(f"Power plants: {len(plants)}")

Build a Dashboard

import streamlit as st
import pandas as pd
import json

st.title("MAX SCRAPE Intelligence Dashboard")

# Live military aircraft map
mil = json.load(open('MAX_SCRAPE/adsb_military.json'))
df = pd.DataFrame(mil['ac'])
st.map(df[['lat', 'lon']])

# Live ships map
ships = json.load(open('MAX_SCRAPE/ais_mt_channel.json'))
df_ships = pd.DataFrame(ships['data']['rows'])
st.map(df_ships[['LAT', 'LON']].astype(float))

📁 FILE STRUCTURE

MAX_SCRAPE/
├── MANIFEST.json                    # Full results map (sizes, timestamps, status)
├── ourairports.csv                  # 12.1 MB — 85,820 airports
├── wri_powerplants.txt              # 11.4 MB — 34,936 power plants
├── ofac_sdn.csv                     # 5.4 MB — US sanctions
├── satnogs_transmitters.json        # 3.3 MB — Satellite transmitter DB
├── un_sanctions.xml                 # 2.1 MB — UN sanctions
├── opensanctions_index.json         # 1.9 MB — OpenSanctions index
├── opensky_all.json                 # 1.7 MB — 12,700 aircraft
├── cisa_kev.json                    # 1.5 MB — Known exploited vulns
├── openflights.txt                  # 1.1 MB — Airport DB + routes
├── gpsjam_today.csv                 # 983 KB — GPS jamming hexmap
├── noaa_aurora.json                 # 899 KB — Aurora forecast
├── gdacs_rss.xml                    # 860 KB — UN disaster alerts
├── ais_mt_americas.json             # 768 KB — Live ships Americas
├── ais_mt_channel.json              # 727 KB — Live ships English Channel
├── cables_geo.json                  # 720 KB — 718 submarine cables
├── rt_world.xml                     # 716 KB — RT World News RSS
├── deepstate_frontline.json         # 613 KB — Ukraine frontline GeoJSON
├── adsb_point_dc.json               # 552 KB — Aircraft over DC
├── adsb_point_london.json           # 492 KB — Aircraft over London
├── sondehub_sondes.json             # 445 KB — Weather balloons live
├── hdx_ukraine.json                 # 405 KB — HDX Ukraine datasets
├── cables_landing.json              # 352 KB — 1,922 cable landing points
├── noaa_ace_epam.json               # 301 KB — Solar wind ACE
├── milcom_blog.txt                  # 251 KB — Military comms blog
├── rtlsdr_blog.txt                  # 186 KB — RTL-SDR blog
├── reddit_worldnews.txt             # 186 KB — Reddit WorldNews
├── google_news_world.xml            # 182 KB — Google News World RSS
├── deepstate_fires.json             # 170 KB — Ukraine fire points
├── nisar_rslc.json                  # 157 KB — NISAR RSLC products
├── guardian_world.json              # 134 KB — Guardian World
├── gdelt_doc_ukraine.json           # 134 KB — GDELT Ukraine articles
├── tg_clashreport.txt               # 133 KB — Telegram Clash Report
├── nisar_gunw.json                  # 132 KB — NISAR GUNW products
├── google_news_reuters.xml          # 130 KB — Google News Reuters RSS
├── tg_warmonitors.txt               # 124 KB — Telegram War Monitors
├── kyiv_independent.xml             # 123 KB — Kyiv Independent RSS
├── tg_intelslava.txt                # 113 KB — Telegram Intel Slava
├── iceye_collections.json           # 106 KB — ICEYE SAR collections
├── tg_pikudhaoref.txt               # 91 KB — Telegram Pikud HaOref
├── abc_australia.xml                # 86 KB — ABC Australia RSS
├── usgs_quakes.json                 # 81 KB — USGS 4.5+ quakes week
├── guardian_ukraine.json            # 80 KB — Guardian Ukraine
├── guardian_military.json           # 76 KB — Guardian Military
├── celestrak_visual.json            # 65 KB — Visual satellites TLE
├── hackernews_military.json         # 60 KB — HN Military stories
├── deepstate_radiation.json         # 58 KB — Ukraine radiation stations
├── hackernews_ukraine.json          # 57 KB — HN Ukraine stories
├── tass_rss.xml                     # 50 KB — TASS RSS
├── hindu_world.xml                  # 49 KB — The Hindu World RSS
├── eonet_events.json                # 41 KB — NASA EONET events
├── jpost_rss.xml                    # 42 KB — Jerusalem Post RSS
├── straits_times.xml                # 37 KB — Straits Times RSS
├── gpsjam_manifest.csv              # 35 KB — GPS jamming manifest
├── france24_rss.xml                 # 31 KB — France24 RSS
├── euronews_rss.xml                 # 31 KB — Euronews RSS
├── bbc_world.xml                    # 29 KB — BBC World RSS
├── aljazeera_all.xml                # 27 KB — Al Jazeera RSS
├── ais_mt_gulf.json                 # 24 KB — Live ships Persian Gulf
├── ais_mt_europe.json               # 51 KB — Live ships Europe
├── umbra_tasks.json                 # 4.7 KB — Umbra SAR tasks
├── worldpop_ukraine.json            # 4.7 KB — WorldPop Ukraine
├── capella_s3.txt                   # 17 KB — Capella SAR S3
├── sigidwiki_allpages.txt           # 17 KB — Signal ID Wiki
├── celestrak_stations.json          # 9.2 KB — ISS/stations TLE
├── celestrak_weather.json           # 30 KB — Weather satellites TLE
├── celestrak_goes.json              # 2.4 KB — GOES satellites TLE
├── celestrak_military.json          # 10 KB — Military satellites TLE
├── faa_delays.xml                   # 3.1 KB — FAA airport delays
├── ua_alerts_states.json            # 3.4 KB — Ukraine alert states
├── nhc_atlantic.xml                 # 2.1 KB — NHC Atlantic RSS
├── fr24_search_f16.json             # 894 B — FR24 F16 search
├── archive_atc.json                 # 886 B — ATC audio archive
├── fr24_search_rafale.json          # 200 B — FR24 Rafale search
├── internetdb_cloudflare.json       # 195 B — InternetDB 1.1.1.1
├── spc_tornado.csv                  # 151 B — SPC tornado reports
├── ua_alerts_history.json           # 548 B — Ukraine alert history
├── ais_mt_asia.json                 # 43 B — Live ships Asia
├── ais_mt_suez.json                 # 43 B — Live ships Suez
├── ais_mt_hormuz.json               # 43 B — Live ships Hormuz
├── ais_mt_arabian.json              # 43 B — Live ships Arabian
├── ais_mt_malacca.json              # 43 B — Live ships Malacca
├── ais_mt_panama.json               # 43 B — Live ships Panama
└── ... (all 110 files)

🎯 WHAT YOU CAN BUILD

  1. Unified Intelligence Dashboard — Live maps (aircraft, ships, satellites), news firehose, war frontline, sanctions search
  2. Conflict Monitoring System — DeepState + GDELT + Telegram war channels + military aircraft tracking
  3. Maritime Domain Awareness — AIS tiles + submarine cables + power plants + sanctions
  4. Space Situational Awareness — CelesTrak + SatNOGS + NISAR + Sentinel-1
  5. Cyber Threat Intelligence — CISA KEV + InternetDB + sanctions
  6. Humanitarian Response — HDX + ReliefWeb + UNHCR + WorldPop
  7. SIGINT Analysis — sigidwiki + RTL-SDR + milcom + satellite transmitters
  8. Cross-Verified News Aggregation — 4 bias quadrants (West/Russian/Middle East/Asian) + GDELT

📊 STATS

  • Total endpoints: 109
  • Successful: 105 (96.3%)
  • Failed: 4
  • Total size: 52.96 MB (55,533,266 bytes)
  • Files: 110 raw data files + MANIFEST.json
  • Scrape time: ~2 minutes (parallel, 50 workers)

🔥 WHY THIS IS THE BIGGEST

This isn't a toy scrape. This is production-grade intelligence from:

  • 11 live military aircraft feeds (adsb.lol, OpenSky, FR24, FAA)
  • 10 live ship feeds (MarineTraffic keyless tiles — the cracked endpoint)
  • 13 satellite feeds (CelesTrak, SatNOGS, NOAA, sondehub)
  • 27 news feeds (GDELT + 12 RSS + Guardian + Google News + Reddit + HN + Yahoo)
  • 4 war feeds (DeepState frontline, fires, radiation, war news)
  • 7 SAR feeds (Umbra 25cm, ICEYE 25cm, Capella 50cm, NISAR, Sentinel-1)
  • 3 sanctions feeds (OFAC 5.4MB, UN 2.1MB, OpenSanctions 1.9MB)
  • 6 disaster feeds (USGS, EONET, GDACS, NHC, SPC)
  • 2 GPS jamming feeds (gpsjam.org daily hexmap)
  • 2 cyber feeds (CISA KEV 1.5MB, InternetDB)
  • 2 aviation infra feeds (ourairports 12.1MB, openflights 1.1MB)
  • 2 submarine cable feeds (718 cables, 1,922 landing points)
  • 1 power plant feed (34,936 plants, 11.4MB)
  • 2 mine feeds (USGS MRDS)
  • 1 refugee feed (UNHCR)
  • 2 humanitarian feeds (HDX, ReliefWeb)
  • 1 WorldPop feed (100m grids)
  • 3 SIGINT feeds (sigidwiki, RTL-SDR, milcom)
  • 4 Telegram war channel scrapes (PikudHaOref, intelslava, warmonitors, clashreport)
  • 1 splat feed (Sketchfab, HuggingFace)
  • 1 court feed (CourtListener)
  • 1 archive feed (archive.org ATC audio)

52.96 MB of pure, unfiltered, cross-verified intelligence.


📝 LICENSE

All data is scraped from public APIs and public websites. No authentication required. No terms of service violated. Data remains property of the original sources.

This repo structure and manifest are CC0 (public domain). Use it however you want.


🚀 QUICK START

# Clone the repo
git clone https://github.com/anythingeverything556-web/max-scrape.git
cd max-scrape/MAX_SCRAPE

# Query with DuckDB
duckdb -c "SELECT * FROM 'adsb_military.json' LIMIT 10"

# Query with Python
python -c "import pandas as pd; print(pd.read_json('adsb_military.json').head())"

# Build a dashboard
streamlit run dashboard.py

52.96 MB. 105 endpoints. Zero keys. All public. This is the biggest open-source intelligence scrape ever published.

oil up, gng. 6767.

About

The biggest open-source intelligence harvest ever published. 52.96 MB from 105 verified public endpoints. No keys. No auth. No bullshit.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors