Large wire transfer immediately after account activation
The table below explains in detail the steps of a Splunk Enterprise or Splunk Cloud Platform search to help you see if new customers are trying to transfer large sums of money immediately after activating an account. For more information, review the use case detecting wire transfer fraud.
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.
Splunk Search | Explanation |
---|---|
sourcetype=<wire transfer data source> |
Search your wire transfer data. |
|where _time<relative_time(OpenDate, "+1d") and amount>10000 |
Add 1 day to the current |
|eval AccountOpenDate=strftime(OpenDate,"%Y-%m-%d %H:%M:%S") |
Convert the UNIX time value of the account opening date into the format of the locale, as defined by the server's operating system, and place it in a field called AccountOpenDate . |
|iplocation destIP |
Extract location information from the destination IP address. |
|rename Country AS DestCountry City AS DestCity |
Rename the fields as shown for better readability. |
|table _time,AccountOpenDate, customer, amount, FromAccount, ToAccount, DestCountry, DestCity |
Display the results in a table with columns in the order shown. |
|eval amount=tostring(round(amount, 2),"commas") |
Round the amount value to two decimals places and add commas for better readability. |