Interfaces with Maxmind's minFraud anti-fraud service.
grails install-plugin maxmind-minfraud
Each request to the Maxmind minFraud service requires a valid License Key. This key can be attained by going to https://www.maxmind.com/app/my_license_key.
When you get your key you can add to the Config.groovy:
maxmind.minfraud.licenseKey = 'LICENSE_KEY_GOES_HERE'
These are the only required fields to acquire a response from Maxmind.
def maxmindRequest = new MaxmindRequest(
clientIp: '24.24.24.24',
city: 'New York',
region: 'NY',
postalCode: '11434',
country: 'US'
)
def maxmindResponse = request.getResponse()
For increased accuracy, these are the recommended fields to submit to Maxmind. The additional fields here are optional and can be all or none.
def maxmindRequest = new MaxmindRequest(
client_ip: '24.24.24.24',
city: 'New York',
region: 'NY',
postal: '11434',
country: 'US',
domain: 'yahoo.com',
bin: '549099',
forwarded_ip: '24.24.24.25',
email: '[email protected]',
username: 'test_carder_username',
password: 'test_carder_password'
)
def maxmindResponse = request.getResponse()
def maxmindRequest = new MaxmindRequest(
client_ip: '24.24.24.24',
city: 'New York',
region: 'NY',
postal: '11434',
country: 'US',
domain: 'yahoo.com',
bin: '549099',
forwarded_ip: '24.24.24.25',
email: '[email protected]',
username: 'test_carder_username',
password: 'test_carder_password',
bin_name: 'MBNA America Bank',
bin_phone: '800-421-2110',
cust_phone: '212-242',
requested_type: 'premium',
shipping_address: '145-50 157th Street',
shipping_city: 'Jamaica',
shipping_region: 'NY',
shipping_postal: '11434',
shipping_country: 'US',
transaction_id: '1234',
session_id: 'abcd9876',
user_agent: 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_5; en-us) AppleWebKit/525.18 (KHTML, like Gecko) Version/3.1.2 Safari/525.20.1',
accept_language: 'en-us')
)
def maxmindResponse = request.getResponse()
Plugin code extracted from https://github.com/hackedunit/maxmind