fraudo/README.md

119 lines
3.8 KiB
Markdown
Raw Normal View History

# Fraudo DSL
2018-12-04 14:18:50 +00:00
Language for describing antifraud patterns
Provides the ability to describe the required set of rules for characteristics
and triggers for attempts at fraudulent actions
2018-12-04 15:09:12 +00:00
2018-12-04 15:19:55 +00:00
#### Syntax
2018-12-04 15:09:12 +00:00
![alt text](syntax.png)
2018-12-04 15:10:35 +00:00
##### OPERATIONS:
2018-12-04 15:09:12 +00:00
~~~~
* count("group_field", time_in_minutes|[from_offset, to_offset], ["group_by_additional_fields"])
* countSuccess("group_field", time_in_minutes|[from_offset, to_offset], ["group_by_additional_fields"])
* countError("group_field", time_in_minutes|[from_offset, to_offset], "error_code", ["group_by_additional_fields"])
* sum("group_field", time_in_minutes|[from_offset, to_offset], ["group_by_additional_fields"])
* sumSuccess("group_field", time_in_minutes|[from_offset, to_offset], ["group_by_additional_fields"])
* sumError(("group_field", time_in_minutes|[from_offset, to_offset], "error_code", ["group_by_additional_fields"])
* unique(("group_field", "by_field",time_in_minutes|[from_offset, to_offset], ["group_by_additional_fields"])
2018-12-04 15:09:12 +00:00
* in(("field", "first", "second", ...)
* inWhiteList("field")
* inBlackList("field")
* inList("test", "email")
* inGreyList("email")
2018-12-07 11:35:00 +00:00
* like("field", "regexp_in_java_style"[1])
* amount()
* country() - this function can return result "unknown", you must remember it!
2018-12-04 15:09:12 +00:00
~~~~
### group_field:
* email,
* ip,
* fingerprint,
* bin,
* shop_ip,
* party_id,
* card_token
2018-12-07 11:35:00 +00:00
1. [regexp_in_java_style](https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html)
### RESULTS:
2018-12-04 15:09:12 +00:00
~~~~
* accept
* 3ds
* decline
* notify
2018-12-29 09:50:47 +00:00
* normal
2018-12-04 15:16:00 +00:00
~~~~
### EXAMPLES:
2018-12-04 15:16:00 +00:00
###### Simple:
~~~~
rule: 3 > 2 AND 1 = 1
-> accept;
~~~~
###### Black list check:
~~~~
rule: inBlackList("email")
-> notify;
~~~~
###### Counts check:
~~~~
rule: (count("ip", 1444) >= 10 OR countSuccess("email", 1444) > 5)
AND countError("fingerprint", 1444, "error_code") > 5
-> notify;
~~~~
###### Unique count emails for ip:
~~~~
rule: unique("email", "ip") < 4
-> decline;
~~~~
###### Check country by ip:
~~~~
rule: country() = "RU"
-> notify;
~~~~
###### Check current amount:
~~~~
rule: amount() < 100
-> accept;
~~~~
###### Catch:
~~~~
rule: unique("email", "ip") < 4
-> accept
catch: decline;
~~~~
2018-12-04 15:16:00 +00:00
###### Combined check:
~~~~
rule:
inWhiteList("email", "fingerprint", "card", "bin", "ip") -> accept; # принимаем платеж, если хотя бы один из указанных параметров находится в вайтлисте
rule:
inBlackList("email", "fingerprint", "card", "bin", "ip") -> decline; # отклоняем платеж, если хотя бы один из указанных параметров находится в блэклисте
rule:
in(countryBy("bin"), "AS", "SD", "TR", "WE", "SD", "CD", "KL", "EW", "VF", "XZ", "CD") -> decline; # эти страны блочим всегда
2018-12-04 15:16:00 +00:00
rule:
amount() > 1000 AND in(countryBy("bin"), "DS", "LA", "AS") -> decline; # лимит суммы платежа 10 баксов для
rule:
amount() > 1000 AND in(countryBy("bin"), "VC", "WE") -> decline;# лимит суммы платежа 10 баксов для некоторых стран
rule:
amount() > 10000 -> decline;# лимит суммы платежа 100 баксов для всех остальных
rule:
count("card", 1440) > 10 AND in (countryBy("bin"), "TR", "WE", "SD", "CD", "KL", "EW") -> decline;# этим странам 10 попыток с одной карты в сутки
rule:
count("card", 1440) > 5 -> decline;# остальным странам 5 попыток с одной карты в сутки
rule:
unique("card", "email", 1440) > 3 -> decline; # лимит 3 уникальных карты на емэйл за сутки
rule:
unique("card", "fingerprint", 1440) > 3 -> decline; # лимит 3 уникальных карты на девайс за сутки
~~~~