Fraud Detection & Prevention
Overviewโ
Fraud in banking payments refers to unauthorised or deceptive financial transactions that cause monetary loss to customers or the institution. Fraud controls are applied at multiple points in the payment lifecycle for both inbound and outbound payments.
Types of Payment Fraudโ
| Type | Description | Example |
|---|---|---|
| APP Fraud | Authorised Push Payment โ customer tricked into sending | Invoice redirection scam |
| ATO | Account Takeover โ attacker controls victim account | Stolen credentials used to initiate payment |
| Identity Fraud | Opening account with false identity | Synthetic identity used to receive funds |
| Money Muling | Account used to receive and forward stolen funds | Mule receives APP fraud proceeds |
| Card Fraud | Unauthorised card transactions | CNP (card not present) e-commerce fraud |
| First-Party Fraud | Customer intentionally commits fraud | Dispute legitimate transaction as fraud |
| Internal Fraud | Staff-initiated fraudulent transactions | Teller redirects payments |
Fraud Risk Assessment Pointsโ
Pain.001 / Payment Instruction
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ PRE-AUTHORISATION CHECKS โ
โ โข Device fingerprint โ
โ โข IP/Geolocation anomaly โ
โ โข Behavioural biometrics โ
โ โข Session risk score โ
โโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ PAYMENT-TIME FRAUD SCORING โ
โ โข Rule-based engine โ
โ โข ML model score โ
โ โข Velocity checks โ
โ โข Counterparty reputation โ
โ โข Amount anomaly โ
โโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโดโโโโโโโโโ
โ โ
ALLOW CHALLENGE / BLOCK
payment โข Step-up auth (OTP/biometric)
โข Call customer
โข Block and alert
Rule-Based Fraud Controlsโ
Velocity Rulesโ
- More than 5 payments in 1 hour โ FLAG
- Total outbound > $10,000 in 24h (unusual for profile) โ FLAG
- Same beneficiary account received 3+ payments from different senders โ FLAG
Amount Anomaly Rulesโ
- Payment amount > 3x customer's average โ REVIEW
- Round number large amounts ($50,000, $100,000) โ FLAG
- Amount just below reporting threshold ($9,999) โ FLAG (structuring)
Counterparty Rulesโ
- First-time beneficiary + large amount โ CHALLENGE
- Beneficiary account age < 30 days โ FLAG
- Beneficiary on internal mule watchlist โ BLOCK
Behavioural Rulesโ
- Login from new device + immediate large payment โ CHALLENGE
- Payment initiated at unusual hour for customer โ FLAG
- Multiple failed login attempts before payment โ BLOCK
ML-Based Fraud Scoringโ
Typical features used in fraud models:
| Feature Category | Examples |
|---|---|
| Transaction | Amount, currency, payment type, time of day |
| Customer | Age of relationship, average transaction amount, payment frequency |
| Counterparty | First-time payee, payee account age, payee risk score |
| Device/Channel | New device, VPN detected, overseas IP |
| Velocity | # payments last hour/day, cumulative amount last 24h |
| Network | Graph analysis โ is payee linked to known mules? |
Fraud Decision Outcomesโ
| Decision | Action |
|---|---|
ALLOW | Process payment normally |
CHALLENGE | Request additional authentication (OTP, biometric) |
REVIEW | Hold payment; send to fraud analyst queue |
BLOCK | Reject payment; notify customer; freeze account if severe |
APP Fraud Countermeasuresโ
APP (Authorised Push Payment) fraud is where a genuine customer is tricked. Defences include:
- Confirmation of Payee (CoP) โ Verify payee name matches account name before sending
- Cooling-off period โ Delay large first-time payments by hours/days
- Scam warnings โ Display scam alerts during payment flow
- Reimbursement schemes โ Industry-mandated refund obligations (e.g., UK PSR)
- Payer-payee checks โ Real-time data sharing between banks (NPP's PayTo confirmation)
Inbound Fraud Controlsโ
Even received payments require scrutiny:
- Mule account detection โ Is the receiving account a money mule?
- Unusual credit pattern โ Account receiving atypical volume/frequency
- Structuring detection โ Multiple credits just below reporting thresholds
Fraud Reporting & SARโ
- Suspicious Activity Report (SAR) โ Filed with AUSTRAC (AU), FinCEN (US), NCA (UK)
- Threshold triggers: AU $10,000 cash threshold; suspicious regardless of amount
- Fraud events must be logged with: timestamp, amount, parties, detection method, decision
Java Spring Notesโ
@Service
public class FraudAssessmentService {
public FraudDecision assess(PaymentInstruction instruction) {
FraudContext context = contextBuilder.build(instruction);
// Rule engine
List<RuleResult> ruleResults = ruleEngine.evaluate(context);
// ML model
double fraudScore = mlModel.score(context.toFeatureVector());
// Combine signals
FraudDecision decision = decisionEngine.decide(ruleResults, fraudScore);
// Audit log
auditService.logFraudAssessment(instruction.getId(), decision, fraudScore);
return decision;
}
}
public enum FraudDecision {
ALLOW, CHALLENGE, REVIEW, BLOCK;
public boolean isPaymentAllowed() {
return this == ALLOW || this == CHALLENGE;
}
}
Fraud Metrics to Monitorโ
| Metric | Description |
|---|---|
| False Positive Rate | Legitimate payments incorrectly flagged |
| False Negative Rate | Fraudulent payments missed |
| Detection Rate | % of fraud caught |
| Fraud Loss ($) | Total monetary loss from undetected fraud |
| Customer Friction | % of payments challenged unnecessarily |
Related Conceptsโ
- sanction.md โ Related screening; both run at same checkpoint
- outbound.md โ Outbound fraud controls
- inbound.md โ Inbound mule detection
- payment_return.md โ Recovering funds post-fraud