CLOUD-IP // v2026.05
UPDATED 2026-05-26 PROVIDERS 24 LIVE
// GITHUB / SQL

GitHub · SQL

SQL inserts to load GitHub CIDRs into a database table. 6,736 CIDRs, refreshed daily.

// github_ips.sql

DOWNLOAD ↓  · 
-- SQL script to create table `github_ips` and insert IP addresses

CREATE TABLE IF NOT EXISTS `github_ips` (
  `ip_address` VARCHAR(45) NOT NULL,
  `ip_type` VARCHAR(10) NOT NULL,
  PRIMARY KEY (`ip_address`)
);

INSERT INTO `github_ips` (`ip_address`, `ip_type`) VALUES ('192.30.252.0/22', 'IPv4');
INSERT INTO `github_ips` (`ip_address`, `ip_type`) VALUES ('185.199.108.0/22', 'IPv4');
INSERT INTO `github_ips` (`ip_address`, `ip_type`) VALUES ('140.82.112.0/20', 'IPv4');
INSERT INTO `github_ips` (`ip_address`, `ip_type`) VALUES ('143.55.64.0/20', 'IPv4');
INSERT INTO `github_ips` (`ip_address`, `ip_type`) VALUES ('2a0a:a440::/29', 'IPv6');
INSERT INTO `github_ips` (`ip_address`, `ip_type`) VALUES ('2606:50c0::/32', 'IPv6');
INSERT INTO `github_ips` (`ip_address`, `ip_type`) VALUES ('192.30.252.0/22', 'IPv4');
INSERT INTO `github_ips` (`ip_address`, `ip_type`) VALUES ('185.199.108.0/22', 'IPv4');
INSERT INTO `github_ips` (`ip_address`, `ip_type`) VALUES ('140.82.112.0/20', 'IPv4');
INSERT INTO `github_ips` (`ip_address`, `ip_type`) VALUES ('143.55.64.0/20', 'IPv4');
INSERT INTO `github_ips` (`ip_address`, `ip_type`) VALUES ('2a0a:a440::/29', 'IPv6');
INSERT INTO `github_ips` (`ip_address`, `ip_type`) VALUES ('2606:50c0::/32', 'IPv6');
INSERT INTO `github_ips` (`ip_address`, `ip_type`) VALUES ('20.201.28.151/32', 'IPv4');
INSERT INTO `github_ips` (`ip_address`, `ip_type`) VALUES ('20.205.243.166/32', 'IPv4');
INSERT INTO `github_ips` (`ip_address`, `ip_type`) VALUES ('20.87.245.0/32', 'IPv4');
INSERT INTO `github_ips` (`ip_address`, `ip_type`) VALUES ('4.237.22.38/32', 'IPv4');
INSERT INTO `github_ips` (`ip_address`, `ip_type`) VALUES ('4.228.31.150/32', 'IPv4');
… (6719 more lines)