ip2proxy-d 3.3.0

IP2Proxy D Library


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

IP2Proxy D Library

This D library allows user to query an IP address if it was being used as VPN anonymizer, open proxies, web proxies, Tor exits, data center, web hosting (DCH) range, search engine robots (SES) and residential (RES). It lookup the proxy IP address from IP2Proxy BIN Data file. This data file can be downloaded at

  • Free IP2Proxy BIN Data: http://lite.ip2location.com
  • Commercial IP2Proxy BIN Data: https://www.ip2location.com/database/ip2proxy

As an alternative, this component can also call the IP2Proxy Web Service. This requires an API key. If you don't have an existing API key, you can subscribe for one at the below:

https://www.ip2location.com/web-service/ip2proxy

Installation

To install this library using dub:

"dependencies": {
    "ip2proxy-d": "~master"
}

QUERY USING THE BIN FILE

Methods

Below are the methods supported in this library.

Method NameDescription
openOpen the IP2Proxy BIN data for lookup.
closeClose and reset metadata.
package_versionGet the package version (1 to 11 for PX1 to PX11 respectively).
module_versionGet the module version.
database_versionGet the database version.
is_proxyCheck whether if an IP address was a proxy. Returned value:<ul><li>-1 : errors</li><li>0 : not a proxy</li><li>1 : a proxy</li><li>2 : a data center IP address or search engine robot</li></ul>
get_allReturn the proxy information in an array.
getproxytypeReturn the proxy type. Please visit <a href="https://www.ip2location.com/database/px10-ip-proxytype-country-region-city-isp-domain-usagetype-asn-lastseen-threat-residential" target="_blank">IP2Location</a> for the list of proxy types supported.
getcountryshortReturn the ISO3166-1 country code (2-digits) of the proxy.
getcountrylongReturn the ISO3166-1 country name of the proxy.
get_regionReturn the ISO3166-2 region name of the proxy. Please visit <a href="https://www.ip2location.com/free/iso3166-2" target="_blank">ISO3166-2 Subdivision Code</a> for the information of ISO3166-2 supported.
get_cityReturn the city name of the proxy.
get_ispReturn the ISP name of the proxy.
get_domainReturn the domain name of the proxy.
getusagetypeReturn the usage type classification of the proxy. Please visit <a href="https://www.ip2location.com/database/px10-ip-proxytype-country-region-city-isp-domain-usagetype-asn-lastseen-threat-residential" target="_blank">IP2Location</a> for the list of usage types supported.
get_asnReturn the autonomous system number of the proxy.
get_asReturn the autonomous system name of the proxy.
getlastseenReturn the number of days that the proxy was last seen.
get_threatReturn the threat type of the proxy.
get_providerReturn the provider of the proxy.

Usage

import std.stdio;
import ip2proxy : ip2proxy;

int main() {
	string db = "./IP2PROXY-IP-PROXYTYPE-COUNTRY-REGION-CITY-ISP-DOMAIN-USAGETYPE-ASN-LASTSEEN-THREAT-RESIDENTIAL-PROVIDER.BIN";
	auto prox = new ip2proxy();
	
	if (prox.open(db) == 0) {
		auto ip = "199.83.103.79";
		
		writeln("ModuleVersion: ", prox.module_version());
		writeln("PackageVersion: ", prox.package_version());
		writeln("DatabaseVersion: ", prox.database_version());
		
		// functions for individual fields
		writeln("IsProxy: ", prox.is_proxy(ip));
		writeln("ProxyType: ", prox.get_proxy_type(ip));
		writeln("CountryShort: ", prox.get_country_short(ip));
		writeln("CountryLong: ", prox.get_country_long(ip));
		writeln("Region: ", prox.get_region(ip));
		writeln("City: ", prox.get_city(ip));
		writeln("ISP: ", prox.get_isp(ip));
		writeln("Domain: ", prox.get_domain(ip));
		writeln("UsageType: ", prox.get_usage_type(ip));
		writeln("ASN: ", prox.get_asn(ip));
		writeln("AS: ", prox.get_as(ip));
		writeln("LastSeen: ", prox.get_last_seen(ip));
		writeln("Threat: ", prox.get_threat(ip));
		writeln("Provider: ", prox.get_provider(ip));
		
		// function for all fields
		auto all = prox.get_all(ip);
		writeln("isProxy: ", all["isProxy"]);
		writeln("ProxyType: ", all["ProxyType"]);
		writeln("CountryShort: ", all["CountryShort"]);
		writeln("CountryLong: ", all["CountryLong"]);
		writeln("Region: ", all["Region"]);
		writeln("City: ", all["City"]);
		writeln("ISP: ", all["ISP"]);
		writeln("Domain: ", all["Domain"]);
		writeln("UsageType: ", all["UsageType"]);
		writeln("ASN: ", all["ASN"]);
		writeln("AS: ", all["AS"]);
		writeln("LastSeen: ", all["LastSeen"]);
		writeln("Threat: ", all["Threat"]);
		writeln("Provider: ", all["Provider"]);
	}
	else {
		writeln("Error reading BIN file.");
	}
	prox.close();
	
	return 0;
}

QUERY USING THE IP2PROXY PROXY DETECTION WEB SERVICE

Methods

Below are the methods supported in this class.

Method NameDescription
open(const string apikey, const string apipackage, bool usessl = true)Expects 3 input parameters:<ol><li>IP2Proxy API Key.</li><li>Package (PX1 - PX11)</li></li><li>Use HTTPS or HTTP</li></ol>
lookup(const string ipaddress)Query IP address. This method returns a JSONValue containing the proxy info. <ul><li>countryCode</li><li>countryName</li><li>regionName</li><li>cityName</li><li>isp</li><li>domain</li><li>usageType</li><li>asn</li><li>as</li><li>lastSeen</li><li>threat</li><li>proxyType</li><li>isProxy</li><li>provider</li><ul>
get_credit()This method returns the web service credit balance in a JSONValue.

Usage

import std.stdio;
import std.conv : to;
import ip2proxywebservice : ip2proxywebservice;

int main() {
	auto ip = "8.8.8.8";
	auto apikey = "YOUR_API_KEY";
	auto apipackage = "PX11";
	auto usessl = true;
	
	auto ws = new ip2proxywebservice();
	
	ws.open(apikey, apipackage, usessl);
	
	auto result = ws.lookup(ip);
	
	if ("response" in result && result["response"].str == "OK") {
		writefln("countryCode: %s", ("countryCode" in result) ? result["countryCode"].str : "");
		writefln("countryName: %s", ("countryName" in result) ? result["countryName"].str : "");
		writefln("regionName: %s", ("regionName" in result) ? result["regionName"].str : "");
		writefln("cityName: %s", ("cityName" in result) ? result["cityName"].str : "");
		writefln("isp: %s", ("isp" in result) ? result["isp"].str : "");
		writefln("domain: %s", ("domain" in result) ? result["domain"].str : "");
		writefln("usageType: %s", ("usageType" in result) ? result["usageType"].str : "");
		writefln("asn: %s", ("asn" in result) ? result["asn"].str : "");
		writefln("as: %s", ("as" in result) ? result["as"].str : "");
		writefln("lastSeen: %s", ("lastSeen" in result) ? result["lastSeen"].str : "");
		writefln("proxyType: %s", ("proxyType" in result) ? result["proxyType"].str : "");
		writefln("threat: %s", ("threat" in result) ? result["threat"].str : "");
		writefln("isProxy: %s", ("isProxy" in result) ? result["isProxy"].str : "");
		writefln("provider: %s", ("provider" in result) ? result["provider"].str : "");
	}
	else if ("response" in result) {
		writefln("Error: %s", result["response"]);
	}
	else {
		writeln("Error: Unknown error.");
	}
	
	auto result2 = ws.get_credit();
	
	if ("response" in result2) {
		writefln("Credit balance: %d", to!int(result2["response"].str));
	}
	else {
		writeln("Error: Unknown error.");
	}
	
	return 0;
}

Proxy Type

Proxy TypeDescription
VPNAnonymizing VPN services
TORTor Exit Nodes
PUBPublic Proxies
WEBWeb Proxies
DCHHosting Providers/Data Center
SESSearch Engine Robots
RESResidential Proxies [PX10+]

Usage Type

Usage TypeDescription
COMCommercial
ORGOrganization
GOVGovernment
MILMilitary
EDUUniversity/College/School
LIBLibrary
CDNContent Delivery Network
ISPFixed Line ISP
MOBMobile ISP
DCHData Center/Web Hosting/Transit
SESSearch Engine Spider
RSVReserved

Threat Type

Threat TypeDescription
SPAMSpammer
SCANNERSecurity Scanner or Attack
BOTNETSpyware or Malware
Authors:
  • IP2Location
Dependencies:
none
Versions:
3.3.0 2022-Jun-23
3.2.0 2021-Sep-09
3.1.0 2021-Jul-06
3.0.0 2020-Aug-07
2.2.0 2019-Nov-25
Show all 9 versions
Download Stats:
  • 0 downloads today

  • 0 downloads this week

  • 0 downloads this month

  • 13 downloads total

Score:
0.9
Short URL:
ip2proxy-d.dub.pm