Coder Social home page Coder Social logo

fraud-service's Introduction

Fraud service

The goal of this project is to build a solution for this problem statement from CloudWalk interview process.

/client folder contains Python code for instantiating clients capable of sending requests with transactions to be validated.

PythonClient

/proto folder contains Protocol Buffers (gRPC) defining the communication channel between clients and servers.

CommunicationChannel

/server folder contains Ruby code for a server capable of receiving requests with transactions to be validated.

RubyServer

Transaction rejection criteria

  • Chargeback
    • Like retrieving the same received value amount
    • Rejects any transaction with parameter hasCbk with value true
  • Rate limiter
    • Like too many requests from the same user
    • Accepts at most:
      • 1 per second
      • 5 per minute
      • 50 per hour
      • 100 per day
    • Which means, evaluate requests with same userId and reject potential frauds
  • Maybe to evaluate relation between:
    • cardNumber and transactionAmount and userId
      • users don't have that many cards in general, guess less than 5 on average
      • any new card for an user, suspicious
      • unusual high amount for an user, suspicious
    • transactionAmount and userId
      • unusual high amount for an user, suspicious
    • transactionAmount and transactionDate and userId
      • unusual high value for an user at an odd day/time, suspicious
    • deviceId and transactionAmount and userId
      • users don't have that many devices in general, guess less than 10 on average
      • any amount from a new device, suspicious
      • unusual high amount from a device, suspicious
    • merchantId and transactionAmount and userId
      • unusual item for user, if high value and odd item, suspicious

fraud-service's People

Contributors

gardusig avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.