-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDESCRIPTION
21 lines (21 loc) · 1.35 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Package: rIP
Type: Package
Title: Detects Fraud in Online Surveys by Tracing and Scoring IP Addresses
Version: 0.1.1
Authors@R: c(person("Ryan", "Kennedy", role = c("aut", "cre"), email = "[email protected]"),
person("Philip", "Waggoner", role = "aut", email = "[email protected]"),
person("Scott", "Clifford", role = "ctb"))
Maintainer: Ryan Kennedy <[email protected]>
Description: Takes as its input an array of IP addresses and the user's X-Key, passes these to <https://iphub.info/>, and returns a dataframe with the ip (used for merging), country code, country name, asn, isp, block, and hostname.
Especially important in this is the variable "block", which gives a score indicating whether the IP address is likely from a server farm and should be excluded from the data. It is codes 0 if the IP is residential/unclassified (i.e. safe IP), 1 if the IP is non-residential IP (hostping provider, proxy, etc. -- should likely be excluded), and 2 for non-residential and residential IPs (more stringent, may flag innocent respondents).
The recommendation from <https://iphub.info/> is to block or exclude those who score block = 1.
Imports: httr, utils
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
RoxygenNote: 6.0.1
NeedsCompilation: no
Packaged: 2018-10-10
Author: Ryan Kennedy [aut, cre],
Philip Waggoner [aut],
Scott Clifford [ctb]