Diese Datenbank enthält IP-Adressen, die als offene Proxys (PUB) verwendet werden. Die Datenbank enthält Datensätze des Proxy-Typs und des Landes für alle öffentlichen IPv4- und IPv6-Adressen. Die kommerzielle Edition umfasst virtuelle private Netzwerke (VPN), offene Proxys (PUB), Web-Proxys, Tor-Exits, Rechenzentrums- und Webhosting-Bereiche (DCH), Suchmaschinen-Robots (SES) und private Proxys (RES), Consumer Privacy Networks (CPN) und Enterprise Private Networks (EPN).
Anonyme Proxyserver sind Zwischenserver, die die tatsächliche Identität oder IP-Adresse des Anforderers verbergen sollen. Studien haben ergeben, dass eine große Anzahl anonymer Proxy-Benutzer im Allgemeinen für Online-Kreditkartenbetrug, Foren und Blog-Spam verantwortlich ist.
Die IP2Proxy-Datenbank basiert auf einem proprietären Erkennungsalgorithmus parallel zur Echtzeiterkennung anonymer offener Proxyserver, die aktiv verwendet werden. Wir erstellen alle 24 Stunden eine aktuelle Liste anonymer Proxy-IP-Adressen. Webentwickler können den Download einmal täglich von unserem Server automatisieren und die anonyme IP-Adressliste mithilfe von Download-Skripten auf den Server importieren. Wenn Sie einen gehosteten Dienst bevorzugen, können Sie den IP2Proxy ™ Web Service herunterladen.
Es ist kostenlos für den persönlichen oder kommerziellen Gebrauch, wobei eine Namensnennung erforderlich ist, indem die Verwendung dieser Daten wie folgt angegeben wird:
Bitte holen Sie sich die kommerzielle Edition , wenn Sie hohe Datengenauigkeit, mehr Aufzeichnungen und Kundensupport suchen. Weitere Informationen finden Sie auf der Produktvergleichsseite .
Let's explore this database which provides a valuable resource of proxy data for free now!
Sign Up For FreeListe der IP-Adressen, die als offene Proxys (PUB) verwendet werden. Jeder Datensatz besteht aus Ländercode, Ländername und Proxy-Typen. Bitte aktualisieren Sie auf kommerzielle IP2Proxy-Datenbank für IP-Adressen von VPN, Web-Proxys, Tor-Exits, Rechenzentren (DCH) und Suchmaschinenrobotern (SES).
Aktuelle Version | 21 November 2024 |
---|---|
Nächste Aktualisierung | December 2024 |
IPv4 Database Size | CSV: 55.39 MB (1,055,568 Rows) |
IPv6 Database Size | CSV: 66.68 MB (1,060,601 Rows) |
IPv4 + IPv6 Binary Size |
BIN: 158.95 MB |
Array |
Binär (BIN)
ASCII-Textdatei (CSV) |
Name | Art | Beschreibung |
---|---|---|
ip_from | INT (10)† / DECIMAL (39,0)†† | Erste IP-Adresse zeigt Netblock. |
ip_to | INT (10)† / DECIMAL (39,0)†† | Letzte IP-Adresse zeigt Netblock. |
proxy_type | VARCHAR(3) | Art des Proxys |
country_code | CHAR(2) | Zweistelliger Ländercode basierend auf ISO 3166. |
country_name | VARCHAR(64) | Ländername basierend auf ISO 3166. |
† IPv4
†† IPv6
Proxy-Typ | Beschreibung | Anonymität |
---|---|---|
VPN | VPN-Dienste anonymisieren. Diese Dienste bieten Benutzern ein öffentlich zugängliches VPN, um ihre IP-Adresse zu verbergen. | Hoch |
TOR | Tor-Ausgangsknoten. Das Tor-Projekt ist ein offenes Netzwerk, das von Personen genutzt wird, die Anonymität wahren möchten. | Hoch |
DCH | Hosting-Anbieter, Rechenzentrum oder Content Delivery-Netzwerk. Da Hosting-Anbieter und Rechenzentren zur Bereitstellung von Anonymität dienen können, kennzeichnet die anonyme IP-Datenbank die ihnen zugeordneten IP-Adressen. | Niedrig |
PUB* | Öffentliche Proxies. Dies sind Dienste, die Verbindungsanfragen im Namen eines Benutzers stellen. Die Proxyserver-Software kann vom Administrator so konfiguriert werden, dass sie einen bestimmten Port überwacht. Diese unterscheiden sich von VPNs darin, dass die Proxys im Vergleich zu VPNs normalerweise eingeschränkte Funktionen haben. | Hoch |
WEB | Web-Proxies. Hierbei handelt es sich um Webdienste, die Webanfragen im Namen eines Benutzers stellen. Diese unterscheiden sich von VPNs oder öffentlichen Proxys darin, dass es sich um einfache webbasierte Proxys handelt, die nicht auf der Ebene der IP-Adresse und anderer Ports ausgeführt werden. | Hoch |
SES | Suchmaschinenroboter. Hierbei handelt es sich um Dienste, die das Crawlen oder Scraping einer Website durchführen, z. B. die Suchmaschinenspinne oder die Bots-Engine. | Niedrig |
RES | Wohnvertreter. Diese Dienste bieten Benutzern Proxy-Verbindungen über private Internetdienstanbieter mit oder ohne Zustimmung von Peers, um ihre nicht genutzten Ressourcen gemeinsam zu nutzen. | Hoch |
CPN | Verbraucherschutznetzwerk. Diese Dienste sorgen für verschlüsselten Datenverkehr vom Browser des Benutzers, indem sie Internetanfragen über Relays weiterleiten und dabei die IP-Adresse, den Standort und die Surfaktivität verbergen. | Niedrig |
EPN | Privates Unternehmensnetzwerk. Dienste wie SASE oder SD-WAN kombinieren Netzwerksicherheitsfunktionen mit WAN-Funktionen (Wide Area Networking), um den sicheren Fernzugriffsanforderungen von Unternehmen gerecht zu werden. | Niedrig |
Im Folgenden finden Sie die Schritte zum Einrichten der Datenbank für IPv4- und IPv6-Daten.
CREATE DATABASE ip2location;
USE ip2location;
CREATE TABLE `ip2location_px2`(
`ip_from` INT(10) UNSIGNED,
`ip_to` INT(10) UNSIGNED,
`proxy_type` VARCHAR(3),
`country_code` CHAR(2),
`country_name` VARCHAR(64),
PRIMARY KEY (`ip_to`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
LOAD DATA LOCAL
INFILE 'IP2PROXY-LITE-PX2.CSV'
INTO TABLE
`ip2location_px2`
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_px2](
[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
) ON [PRIMARY]
GO
CREATE CLUSTERED INDEX [ip_to] ON [ip2location].[dbo].[ip2location_px2]([ip_to]) ON [PRIMARY]
GO
BULK INSERT [ip2location].[dbo].[ip2location_px2]
FROM '{PATH TO IP2PROXY-LITE-PX2.CSV}'
WITH
(
FORMATFILE = '{PATH TO PX2.FMT}'
)
GO
HINWEIS: Sie müssen den folgenden FMT-Code kopieren und als Datei mit dem NamenPX2.FMT auf Ihrem Computer speichern.
12.0
6
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
CREATE DATABASE ip2location WITH ENCODING 'UTF8';
\c ip2location
CREATE TABLE ip2location_px2(
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,
CONSTRAINT ip2location_db1_pkey PRIMARY KEY (ip_from, ip_to)
);
COPY ip2location_px2 FROM 'IP2PROXY-LITE-PX2.CSV' WITH CSV QUOTE AS '"';
mongoimport -u USERNAME -p PASSWORD --authenticationDatabase admin --drop --db ip2location --collection ip2location_px2_ipv6 --type csv --file "IP2PROXY-LITE-PX2.CSV" --fields ip_from,ip_to,proxy_type,country_code,country_name
CREATE DATABASE ip2location;
USE ip2location;
CREATE TABLE `ip2location_px2_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),
PRIMARY KEY (`ip_to`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
LOAD DATA LOCAL
INFILE 'IP2PROXY-LITE-PX2.IPV6.CSV'
INTO TABLE
`ip2location_px2_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_px2_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
) ON [PRIMARY]
GO
CREATE CLUSTERED INDEX [ip_to] ON [ip2location].[dbo].[ip2location_px2_ipv6]([ip_to]) ON [PRIMARY]
GO
BULK INSERT [ip2location].[dbo].[ip2location_px2_ipv6]
FROM '{PATH TO IP2PROXY-LITE-PX2.IPV6.CSV}'
WITH
(
FORMATFILE = '{PATH TO PX2.FMT}'
)
GO
HINWEIS: Sie müssen den folgenden FMT-Code kopieren und als Datei mit dem NamenPX2.FMT auf Ihrem Computer speichern. Die erste Zeile des FMT-Codes gibt die Version von bcp an. Bitte ändern Sie die Version entsprechend Ihrer installierten MS-SQL.
12.0
6
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
CREATE DATABASE ip2location WITH ENCODING 'UTF8';
\c ip2location
CREATE TABLE ip2location_px2_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,
CONSTRAINT ip2location_db1_pkey PRIMARY KEY (ip_from, ip_to)
);
COPY ip2location_px2_ipv6 FROM 'IP2PROXY-LITE-PX2.IPV6.CSV' WITH CSV QUOTE AS '"';
mongoimport -u USERNAME -p PASSWORD --authenticationDatabase admin --drop --db ip2location --collection ip2location_px2_ipv6 --type csv --file "IP2PROXY-LITE-PX2.IPV6.CSV" --fields ip_from,ip_to,proxy_type,country_code,country_name
IP2Location bietet eine kostenlose, vorkonfigurierte und sofort einsatzbereite AMI und Images zum einfachen Einrichten der Datenbank.
Enhance your applications with essential geolocation data by using our FREE databases.