Skip to main content
 
 
Splunk Lantern

Detecting wire transfer fraud

 

You work for a financial services company that conducts a lot of wire transfers. You know that your customers are at risk for many common scams, such as fake rental deposit requests, lottery winnings that supposedly require a tax prepayment, and overpayments on bad checks. You want to do everything you can to protect your customers from scammers and protect the reputation of your business.

Required data

How to use Splunk software for this use case

Some commands, parameters, and field names in the searches below may need to be adjusted to match your environment. In addition, to optimize the searches shown below, you should specify an index and a time range when appropriate.

Splunk recommends that customers look into using data models, report acceleration, or summary indexing when searching across hundreds of GBs of events in a single search. The searches provided here are a good starting point, but depending on your data, search time range, and other factors, more can be done to ensure that they scale appropriately.

Detect large wire transfer immediately after account activation

Customers open up accounts all the time. However, it is unusual for a customer to open up a new account and instantly transfer a large amount of money upon activation. This could be an indicator of a fraudulent account, so you want to report on it.

|sourcetype=<wire transfer data source>
|eval _time=strptime(_time, "%Y/%m/%d %H:%M:%S")
|sort - _time
|where _time<relative_time(OpenDate, "+1d") and amount>10000
|eval AccountOpenDate=strftime(OpenDate,"%Y-%m-%d %H:%M:%S")
|iplocation destIP
|rename Country AS DestCountry City AS DestCity
|table _time,AccountOpenDate, customer, amount, FromAccount, ToAccount, DestCountry, DestCity
|eval amount=tostring(round(amount, 2),"commas")

Need more help with this search? Click here.

Detect wire transfers into suspicious or banned countries

Large amounts of money being transferred into certain countries can indicate fraud. You want to correlate user activity with your list of banned and suspicious countries.

|sourcetype=<wire transfer data source>
| eval _time=strptime(_time, "%Y/%m/%d %H:%M:%S")
|sort - _time
|eval is_suspicious="no"
|lookup <name of lookup file of suspicious countries> ip AS destIP OUTPUT is_suspicious
|where is_suspicious="yes" AND amount>10000
|iplocation destIP
|rename Country AS destCountry
|table _time, customer, FromAccount, ToAccount, action, amount, destCountry, destIP
|eval amount=tostring(round(amount, 2),"commas")

Need more help with this search? Click here.

Detect wire transfers from multiple client IP addresses

In order to look for signs of compromise and help protect your users, you want to report on customers who transfer funds in a short amount of time using more than one client IP. This is unusual behavior.

|sourcetype=<wire transfer data source>
|convert timeformat="%Y/%m/%d %H:%M:%S"
|sort - _time
|eval amount=tostring(round(amount, 2),"commas")
|streamstats time_window=1m count(eval(action="authorized")) AS authorized_count list(FromAccount) AS FromAccount list(ToAccount) AS ToAccount list(amount) AS amount list(action) AS action list(c_time) AS time values(clientIP) AS clientIP dc(clientIP) ASclientIP_count BY customer
|where clientIP_count>=2
|fields - OpenDate epoch destIP _time, clientIP_count c_time authorized_count

Need more help with this search? Click here.

Detect when a number of wire transfers exceeds threshold

In order to help protect your users, you want to report on the number of large transfers that clients have completed in a one hour time span. Excessive transfers might indicate fraud.

|sourcetype=<wire transfer data source>
|sort - _time
|eval amount=tostring(round(amount, 2),"commas")
|streamstats time_window=1h count(eval(action="authorized")) AS authorized_count list(FromAccount) AS FromAccount list(ToAccount) AS ToAccount list(amount) AS amount list(action) AS action list(_time) AS time BY customer
|where authorized_count>=7
|fields - OpenDate epoch clientIP destIP _time

Need more help with this search? Click here.

Detect multiple account login denials followed by authorization

Brute force password attacks are a concern in your financial services organization. In order to help protect your users, you want to report hourly on accounts that have multiple login denials followed by an authorization, which might indicate cracked credentials.

|sourcetype=<wire transfer data source>
|convert timeformat="%Y/%m/%d %H:%M:%S" ctime(epoch) AS c_time
|sort - _time
|streamstats time_window=1h count(eval(action="denied")) AS denied_count count(eval(action="authorized")) AS "authorized_count" latest(action) AS latest_action BY customer,FromAccount,ToAccount
|where denied_count>=5 and authorized_count>=1 and latest_action="authorized"
|table _time, customer, FromAccount, ToAccount, amount, denied_count, authorized_count
|eval amount=tostring(round(amount, 2),"commas")

Need more help with this search? Click here.

Next steps

Use the results of these searches to make recommendations to the rest of the security team about which users should be investigated for potentially fraudulent activity. Create reports based on these searches and schedule them to run at a regular cadence as needed. Be sure to follow any industry policies and regulations that are required for compliance.

The Splunk Essentials for the Financial Services Industry app helps you automate the searches provided in this article. The app also provides more insight on how they can be applied in your environment, how they work, the difficulty level, and what data can be valuable to run them successfully. In addition, the Splunk App for Fraud Analytics provides a number of other fraud detection solutions for financial services:

These additional Splunk resources might help you understand and implement this use case:

Splunk OnDemand Services: Use these credit-based services for direct access to Splunk technical consultants with a variety of technical services from a pre-defined catalog. Most customers have OnDemand Services per their license support plan. Engage the ODS team at OnDemand-Inquires@splunk.com if you require assistance.