Deze database bevat IP-adressen die worden gebruikt als open proxy's (PUB). De database bevat records van het proxy-type, land, regio, stad, ISP, domein en gebruikstype voor alle openbare IPv4- en IPv6-adressen. De commerciële editie omvat virtuele particuliere netwerken (VPN), open proxy's (PUB), webproxy's, Tor-uitgangen, datacenter- en webhostingbereiken (DCH), zoekmachinerobots (SES), residentiële proxy's (RES ), consumentenprivacynetwerken (CPN) en zakelijke particuliere netwerken (EPN).
Anonieme proxyservers zijn tussenliggende servers die bedoeld zijn om de echte identiteit of het IP-adres van de aanvrager te verbergen. Studies hebben aangetoond dat een groot aantal anonieme proxygebruikers over het algemeen verantwoordelijk is voor online creditcardfraude, forums en blogs die spammen.
De IP2Proxy-database is gebaseerd op een eigen detectiealgoritme parallel aan real-time detectie van anonieme open proxyservers die actief in gebruik zijn. We genereren elke 24 uur een actuele lijst met anonieme proxy-IP-adressen. Webontwikkelaars kunnen het downloaden eenmaal per dag vanaf onze server automatiseren en de anonieme IP-adreslijst naar de server importeren met downloadscripts. Als u de voorkeur geeft aan een gehoste service, kunt u de IP2Proxy ™ Web Service downloaden.
Het is gratis voor persoonlijk of commercieel gebruik met attributie vereist door het gebruik van deze gegevens als volgt te vermelden:
Koop de commerciële editie als u op zoek bent naar hoge datanauwkeurigheid, meer records en klantenservice. Bezoek productvergelijkingspagina voor meer informatie.
Let's explore this database which provides a valuable resource of proxy data for free now!
Sign Up For FreeLijst met IP-adressen die worden gebruikt als open proxy's (PUB). Elk record bestaat uit landcode, landnaam, regio, stad, ISP, domeinnaam, gebruikstypen en proxy-typen. Upgrade naar commerciële IP2Proxy-database voor IP-adressen van VPN, webproxy's, Tor-uitgangen, datacenters (DCH) en zoekmachine-robots (SES).
Huidige versie | 21 November 2024 |
---|---|
Volgende Update | December 2024 |
IPv4 Database Size | CSV: 124.51 MB (1,055,568 Rows) |
IPv6 Database Size | CSV: 136.13 MB (1,060,601 Rows) |
IPv4 + IPv6 Binary Size |
BIN: 394.92 MB |
Array |
Binair (BIN)
ASCII-tekstbestand (CSV) |
Naam | Type | Omschrijving |
---|---|---|
ip_from | INT (10)† / DECIMAL (39,0)†† | Eerste IP-adres toont netblock. |
ip_to | INT (10)† / DECIMAL (39,0)†† | Laatste IP-adres toont netblock. |
proxy_type | VARCHAR(3) | Type volmacht |
country_code | CHAR(2) | Landcode van twee tekens op basis van ISO 3166. |
country_name | VARCHAR(64) | Landnaam gebaseerd op ISO 3166. |
region_name | VARCHAR(128) | Naam van regio of staat. |
city_name | VARCHAR(128) | Stads naam. |
isp | VARCHAR(256) | Internetprovider of bedrijfsnaam. |
domain | VARCHAR(128) | Internetdomeinnaam gekoppeld aan IP-adresbereik. |
usage_type | VARCHAR(11) | Gebruikstype classificatie van ISP of bedrijf.
|
† IPv4
†† IPv6
Proxy-type | Omschrijving | Anonimiteit |
---|---|---|
VPN | VPN-services anonimiseren. Deze services bieden gebruikers een openbaar toegankelijke VPN om hun IP-adres te verbergen. | Hoog |
TOR | Tor Exit-knooppunten. Het Tor-project is een open netwerk dat wordt gebruikt door degenen die anoniem willen blijven. | Hoog |
DCH | Hostingprovider, datacenter of Content Delivery Network. Aangezien hostingproviders en datacenters kunnen dienen om anonimiteit te bieden, markeert de anonieme IP-database de bijbehorende IP-adressen. | Laag |
PUB* | Openbare gevolmachtigden. Dit zijn services die namens een gebruiker verbindingsverzoeken doen. Proxyserversoftware kan door de beheerder worden geconfigureerd om op een bepaalde poort te luisteren. Deze verschillen van VPN's doordat de proxy's meestal beperkte functies hebben in vergelijking met VPN's. | Hoog |
WEB | Webproxy's. Dit zijn webservices die namens een gebruiker webverzoeken doen. Deze verschillen van VPN's of openbare proxy's doordat het eenvoudige webgebaseerde proxy's zijn en niet werken op het IP-adres en andere poortniveau. | Hoog |
SES | Zoekmachine-robots. Dit zijn services die crawlen of scrapen naar een website, zoals de zoekmachine-spider of bots-engine. | Laag |
RES | Residentiële proxy's. Deze services bieden gebruikers proxyverbindingen via internetproviders met of zonder toestemming van peers om hun inactieve bronnen te delen. | Hoog |
CPN | Consumentenprivacynetwerk. Deze services zorgen voor gecodeerd verkeer vanuit de browser van de gebruiker door internetverzoeken via relais te routeren, waardoor het IP-adres, de locatie en de browse-activiteit worden verborgen. | Laag |
EPN | Zakelijk particulier netwerk. Diensten zoals SASE of SD-WAN combineren netwerkbeveiligingsfuncties met WAN-mogelijkheden (Wide Area Networking) om te voldoen aan de behoeften van organisaties op het gebied van veilige externe toegang. | Laag |
Hieronder staan de stappen om de database in te stellen voor zowel IPv4- als IPv6-gegevens.
CREATE DATABASE ip2location;
USE ip2location;
CREATE TABLE `ip2location_px6`(
`ip_from` INT(10) UNSIGNED,
`ip_to` INT(10) UNSIGNED,
`proxy_type` VARCHAR(3),
`country_code` CHAR(2),
`country_name` VARCHAR(64),
`region_name` VARCHAR(128),
`city_name` VARCHAR(128),
`isp` VARCHAR(256),
`domain` VARCHAR(128),
`usage_type` VARCHAR(11),
PRIMARY KEY (`ip_to`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
LOAD DATA LOCAL
INFILE 'IP2PROXY-LITE-PX6.CSV'
INTO TABLE
`ip2location_px6`
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\r\n'
IGNORE 0 LINES;
CREATE DATABASE ip2location
GO
USE ip2location
GO
CREATE TABLE [ip2location].[dbo].[ip2location_px6](
[ip_from] bigint NOT NULL,
[ip_to] bigint NOT NULL,
[proxy_type] nvarchar(3) NOT NULL,
[country_code] nvarchar(2) NOT NULL,
[country_name] nvarchar(64) NOT NULL,
[region_name] nvarchar(128) NOT NULL,
[city_name] nvarchar(128) NOT NULL,
[isp] nvarchar(256) NOT NULL,
[domain] nvarchar(128) NOT NULL,
[usage_type] nvarchar(11) NOT NULL
) ON [PRIMARY]
GO
CREATE CLUSTERED INDEX [ip_to] ON [ip2location].[dbo].[ip2location_px6]([ip_to]) ON [PRIMARY]
GO
BULK INSERT [ip2location].[dbo].[ip2location_px6]
FROM '{PATH TO IP2PROXY-LITE-PX6.CSV}'
WITH
(
FORMATFILE = '{PATH TO PX6.FMT}'
)
GO
OPMERKING: u moet de onderstaande FMT-code kopiëren en deze op uw computer opslaan als een bestand met de naamPX6.FMT.
12.0
11
1 SQLCHAR 0 1 "\"" 0 first_double_quote Latin1_General_CI_AI
2 SQLCHAR 0 20 "\",\"" 1 ip_from "",
3 SQLCHAR 0 20 "\",\"" 2 ip_to "",
4 SQLCHAR 0 3 "\",\"" 3 proxy_type Latin1_General_CI_AI,
5 SQLCHAR 0 2 "\",\"" 4 country_code Latin1_General_CI_AI,
6 SQLCHAR 0 64 "\",\"" 5 country_name Latin1_General_CI_AI,
7 SQLCHAR 0 128 "\",\"" 6 region_name Latin1_General_CI_AI,
8 SQLCHAR 0 128 "\",\"" 7 city_name Latin1_General_CI_AI,
9 SQLCHAR 0 256 "\",\"" 8 isp Latin1_General_CI_AI,
10 SQLCHAR 0 128 "\",\"" 9 domain Latin1_General_CI_AI,
11 SQLCHAR 0 11 "\",\"" 10 usage_type Latin1_General_CI_AI
CREATE DATABASE ip2location WITH ENCODING 'UTF8';
\c ip2location
CREATE TABLE ip2location_px6(
ip_from bigint NOT NULL,
ip_to bigint NOT NULL,
proxy_type character varying(3) NOT NULL,
country_code character(2) NOT NULL,
country_name character varying(64) NOT NULL,
region_name character varying(128) NOT NULL,
city_name character varying(128) NOT NULL,
isp character varying(256) NOT NULL,
domain character varying(128) NOT NULL,
usage_type character varying(11) NOT NULL,
CONSTRAINT ip2location_db1_pkey PRIMARY KEY (ip_from, ip_to)
);
COPY ip2location_px6 FROM 'IP2PROXY-LITE-PX6.CSV' WITH CSV QUOTE AS '"';
mongoimport -u USERNAME -p PASSWORD --authenticationDatabase admin --drop --db ip2location --collection ip2location_px6_ipv6 --type csv --file "IP2PROXY-LITE-PX6.CSV" --fields ip_from,ip_to,proxy_type,country_code,country_name,region_name,city_name,isp,domain,usage_type
CREATE DATABASE ip2location;
USE ip2location;
CREATE TABLE `ip2location_px6_ipv6`(
`ip_from` DECIMAL(39,0) UNSIGNED,
`ip_to` DECIMAL(39,0) UNSIGNED,
`proxy_type` VARCHAR(3),
`country_code` CHAR(2),
`country_name` VARCHAR(64),
`region_name` VARCHAR(128),
`city_name` VARCHAR(128),
`isp` VARCHAR(256),
`domain` VARCHAR(128),
`usage_type` VARCHAR(11),
PRIMARY KEY (`ip_to`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
LOAD DATA LOCAL
INFILE 'IP2PROXY-LITE-PX6.IPV6.CSV'
INTO TABLE
`ip2location_px6_ipv6`
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\r\n'
IGNORE 0 LINES;
CREATE DATABASE ip2location
GO
USE ip2location
GO
CREATE TABLE [ip2location].[dbo].[ip2location_px6_ipv6](
[ip_from] char(39) NOT NULL,
[ip_to] char(39) NOT NULL,
[proxy_type] nvarchar(3) NOT NULL,
[country_code] nvarchar(2) NOT NULL,
[country_name] nvarchar(64) NOT NULL,
[region_name] nvarchar(128) NOT NULL,
[city_name] nvarchar(128) NOT NULL,
[isp] nvarchar(256) NOT NULL,
[domain] nvarchar(128) NOT NULL,
[usage_type] nvarchar(11) NOT NULL
) ON [PRIMARY]
GO
CREATE CLUSTERED INDEX [ip_to] ON [ip2location].[dbo].[ip2location_px6_ipv6]([ip_to]) ON [PRIMARY]
GO
BULK INSERT [ip2location].[dbo].[ip2location_px6_ipv6]
FROM '{PATH TO IP2PROXY-LITE-PX6.IPV6.CSV}'
WITH
(
FORMATFILE = '{PATH TO PX6.FMT}'
)
GO
OPMERKING: u moet de onderstaande FMT-code kopiëren en deze op uw computer opslaan als een bestand met de naamPX6.FMT. De eerste regel van de FMT-code geeft de versie van bcp aan. Wijzig de versie volgens uw geïnstalleerde MS-SQL.
12.0
11
1 SQLCHAR 0 1 "\"" 0 first_double_quote Latin1_General_CI_AI
2 SQLCHAR 0 39 "\",\"" 1 ip_from "",
3 SQLCHAR 0 39 "\",\"" 2 ip_to "",
4 SQLCHAR 0 3 "\",\"" 3 proxy_type Latin1_General_CI_AI,
5 SQLCHAR 0 2 "\",\"" 4 country_code Latin1_General_CI_AI,
6 SQLCHAR 0 64 "\",\"" 5 country_name Latin1_General_CI_AI,
7 SQLCHAR 0 128 "\",\"" 6 region_name Latin1_General_CI_AI,
8 SQLCHAR 0 128 "\",\"" 7 city_name Latin1_General_CI_AI,
9 SQLCHAR 0 256 "\",\"" 8 isp Latin1_General_CI_AI,
10 SQLCHAR 0 128 "\",\"" 9 domain Latin1_General_CI_AI,
11 SQLCHAR 0 11 "\",\"" 10 usage_type Latin1_General_CI_AI
CREATE DATABASE ip2location WITH ENCODING 'UTF8';
\c ip2location
CREATE TABLE ip2location_px6_ipv6(
ip_from decimal(39,0) NOT NULL,
ip_to decimal(39,0) NOT NULL,
proxy_type character varying(3) NOT NULL,
country_code character(2) NOT NULL,
country_name character varying(64) NOT NULL,
region_name character varying(128) NOT NULL,
city_name character varying(128) NOT NULL,
isp character varying(256) NOT NULL,
domain character varying(128) NOT NULL,
usage_type character varying(11) NOT NULL,
CONSTRAINT ip2location_db1_pkey PRIMARY KEY (ip_from, ip_to)
);
COPY ip2location_px6_ipv6 FROM 'IP2PROXY-LITE-PX6.IPV6.CSV' WITH CSV QUOTE AS '"';
mongoimport -u USERNAME -p PASSWORD --authenticationDatabase admin --drop --db ip2location --collection ip2location_px6_ipv6 --type csv --file "IP2PROXY-LITE-PX6.IPV6.CSV" --fields ip_from,ip_to,proxy_type,country_code,country_name,region_name,city_name,isp,domain,usage_type
IP2Location biedt een gratis, vooraf geconfigureerde en gebruiksklare AMI en afbeeldingen om de database eenvoudig op te zetten.
Raadpleeg de algemene voorwaarden voor de databaselicenties.
Enhance your applications with essential geolocation data by using our FREE databases.