Anti-fraud: Difference between revisions

From VoIPmonitor.org
(Add note about detecting User-Agent changes (no built-in alert))
(Rewrite: cleaner structure, added diagram, consolidated content)
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{DISPLAYTITLE:Anti-Fraud Rules}}
{{DISPLAYTITLE:Anti-Fraud Detection}}
Category:GUI manual
[[Category:Configuration]]
[[Category:Alerts]]


== Anti-Fraud Rules ==
= Anti-Fraud Detection =


Anti-fraud rules are accessed via '''GUI > Alerts > Anti Fraud'''. Rules combat fraud and attacks, with ongoing additions. Each rule supports custom scripts for actions like firewall rules, besides email alerts. Alerts are archived in Sent Alerts.
VoIPmonitor provides GeoIP-based anti-fraud alerts to detect toll fraud, account hijacking, and brute-force attacks.


=== Overview ===
<kroki lang="mermaid">
%%{init: {'flowchart': {'nodeSpacing': 15, 'rankSpacing': 30}}}%%
flowchart LR
    subgraph Detection
        A[CDR/Register Data] --> B{GeoIP Lookup}
        B --> C[Country/IP Analysis]
    end
    subgraph Alert Types
        C --> D[Country Destination]
        C --> E[CDR Country Change]
        C --> F[Register Country Change]
        C --> G[Sequential Pattern]
        C --> H[Failed Register]
    end
    subgraph Response
        D & E & F & G & H --> I[Email Alert]
    end
</kroki>


<kroki lang="plantuml">
== Configuration ==
@startuml
skinparam shadowing false
skinparam defaultFontName Arial
skinparam rectangle {
  BackgroundColor<<realtime>> #E8F5E9
  BackgroundColor<<cdr>> #E3F2FD
  BackgroundColor<<action>> #FFF3E0
}


rectangle "VoIPmonitor\nSensor" as sensor
All anti-fraud alerts are configured in '''GUI → Alerts → Anti Fraud'''.
rectangle "Realtime\nDetection" as realtime <<realtime>>
rectangle "CDR-based\nDetection" as cdr_detect <<cdr>>
database "MySQL" as db
rectangle "Alert\nProcessor" as processor
rectangle "Custom\nScript" as script <<action>>
rectangle "Firewall\n(iptables)" as fw <<action>>
rectangle "Email\nNotification" as email <<action>>


sensor --> realtime : SIP packets\n(immediate)
{{Note|1=Anti-fraud features require GeoIP configuration. See [[#GeoIP Integration|GeoIP Integration]] below.}}
sensor --> db : CDRs
realtime --> processor : Trigger
db --> cdr_detect : Query
cdr_detect --> processor : Threshold\nexceeded
processor --> script : Execute
processor --> email : Send
script --> fw : Block IP


legend right
== Alert Types ==
  |= Color |= Type |
 
  | <#E8F5E9> | Realtime processing |
=== Country/Continent Destination ===
  | <#E3F2FD> | CDR-based processing |
  | <#FFF3E0> | Actions |
endlegend
@enduml
</kroki>


=== List of Fraud/Watchdog Alerts ===
Real-time detection of calls to specific countries or continents. Primary use case: detecting toll fraud where compromised accounts make expensive international calls.


{| class="wikitable"
'''Configuration:'''
|-
* Select target countries/continents to monitor
! Alert Type !! Processing !! Description
* Set threshold for number of calls
|-
* Configure notification recipients
| Realtime concurrent calls || Realtime || Monitors concurrent calls per source IP
|-
| SIP REGISTER flood/attack || Realtime || Detects REGISTER flooding from single IP
|-
| SIP PACKETS flood/attack || Realtime || Detects generic SIP packet floods
|-
| Country/Continent destination || Realtime || Calls to specific country/continent (based on first INVITE)
|-
| Fraud: sequential || CDR-based || Detects high volume of calls to a destination within a time window
|-
| Change CDR country || CDR-based || Source IP geolocation changed between calls
|-
| Change REGISTER country || CDR-based || REGISTER source country changed since last success
|-
| [[Billing#Watchdog|Billing Watchdog]] || CDR-based || Billing anomaly detection
|}


=== Alert Processing Differences ===
=== Change CDR Country ===


VoIPmonitor processes alerts in two fundamentally different ways, which affects what data is available when the alert triggers:
Detects when the IP country of caller or callee changes between calls - indicates potential account compromise or SIP credential theft.


==== Realtime Alerts ====
'''Configuration:'''
* Whitelist trusted countries (Exclude countries field)
* Apply filters by phone numbers or IP addresses


Processed directly by the sniffer as packets arrive. Triggered immediately based on packet inspection.
=== Change REGISTER Country ===


{| class="wikitable"
Detects device registration from unexpected countries - strong indicator of credential theft or account hijacking.
|-
! Alert !! Trigger Condition
|-
| Realtime concurrent calls || N+ concurrent calls from same IP
|-
| SIP REGISTER flood || N+ REGISTER attempts from same IP in interval
|-
| SIP PACKETS flood || N+ SIP packets from same IP in interval
|-
| Country/Continent destination || Call to monitored destination (first INVITE)
|}


'''Characteristics:'''
'''Example:''' User normally registers from Germany but suddenly registers from Russia → alert triggers.
* Immediate triggering (no database delay)
* CDRs not yet available when alert fires
* Only IP address available in <code>alert_info</code> (no source port)


==== CDR-based Alerts ====
=== Fraud: Sequential ===


Evaluated by the GUI after CDRs have been stored in the database.
Detects high-volume sequential calling patterns to destination numbers within a time window.


{| class="wikitable"
{| class="wikitable"
|-
|-
! Alert !! Trigger Condition
! Parameter !! Description !! Example Values
|-
| Change CDR country || IP geolocation differs from previous call
|-
|-
| Change REGISTER country || REGISTER country differs from last successful registration
| '''interval''' || Time window (seconds) for counting calls || 600 (10 min), 3600 (1 hour)
|-
|-
| RTP alerts || Quality thresholds exceeded (MOS, jitter, loss)
| '''limit''' || Max calls allowed before alert triggers || 50, 100, 500
|-
|-
| SIP Response alerts || Specific SIP response codes
| '''number field''' || Target destination number (leave empty for ANY) || Empty or specific number
|}
|}


'''Characteristics:'''
{{Warning|1='''Critical:''' Leave the number field '''empty''' to monitor ALL destination numbers. The alert fires when ANY single destination exceeds the limit within the interval.}}
* Delay between call end and alert (CDR must be written first)
* Full CDR data available (including source port, duration, etc.)
* Can query database for additional context
 
==== Important Limitation: Source Port in Realtime Alerts ====


Realtime alerts provide the attacker's IP address in <code>alert_info</code>, but do '''not''' include the SIP source port.
'''Configuration Steps:'''
# Navigate to '''GUI → Alerts → Anti Fraud'''
# Create new alert with type '''Fraud: sequential'''
# Set '''interval''' (e.g., 600 for 10 minutes)
# Set '''limit''' (e.g., 100 calls)
# '''Leave number field empty''' to apply to ANY number
# Configure recipient email
# Save


The source port can be queried from <code>cdr.caller_port</code>, but this has critical limitations:
'''Example Configurations:'''
* '''Delay''': CDRs are written after the realtime alert triggers
* '''Port may not exist''': Flood attacks are often detected before CDR creation
 
'''Recommendation:'''
* For real-time defense: Block by IP address only (accept temporary impact on legitimate traffic from same IP)
* For non-real-time blocking: Use CDR-based alerts with database queries
 
=== Common Configuration ===
 
Options shared across anti-fraud rules:


{| class="wikitable"
{| class="wikitable"
|-
|-
! Option !! Description
! Scenario !! interval !! limit !! number field
|-
|-
| Enable hyperlinks || Makes email alert titles clickable links to rule definitions
| >100 calls to any number in 10 min || 600 || 100 || Empty
|-
|-
| IP include/exclude || Exclude IPs or networks (e.g., <code>10.0.0.0/8</code>) or use IP groups
| >500 calls to any number in 1 hour || 3600 || 500 || Empty
|-
|-
| Suppress repeating alerts || Limit alerts to once per X hours to avoid spamming
| >50 calls in 5 min (high-volume attack) || 300 || 50 || Empty
|-
|-
| Numbers include/exclude || Filter source numbers/prefixes
| Monitor specific premium number || 1800 || 200 || Specify number
|-
| External script || Path to custom script for automated actions
|}
|}


'''International prefixes configuration:'''
{{Tip|1='''Fraud: sequential vs concurrent calls:''' Sequential alerts count total calls over a time window. Concurrent alerts detect simultaneous active calls at one moment. Use sequential for detecting volume spikes, concurrent for capacity monitoring.}}
 
=== SIP Failed Register ===
 
Detects brute-force and credential stuffing attacks by monitoring failed registration attempts.
 
{| class="wikitable"
{| class="wikitable"
|-
|-
! Setting !! Description !! Default
! Parameter !! Description
|-
| International prefixes || Prefixes indicating international calls || <code>+</code>, <code>00</code>
|-
|-
| Min international length || Numbers shorter than this are treated as local || varies
| '''threshold''' || Maximum failed attempts before alert
|-
|-
| Local numbers are in || Country for classifying international-prefixed calls as local || your country
| '''interval''' || Time window (seconds) for counting attempts
|}
|}


=== SIP REGISTER Flood/Attack ===
== GeoIP Integration ==
 
Triggers when >= N registration attempts from an IP occur within the set interval.
 
==== Mitigation Strategies ====
 
When SIP REGISTER floods cause excessive CPU usage or system unresponsiveness:
 
===== 1. Immediate Blocking via Custom Scripts =====
 
Configure a custom script in the SIP REGISTER flood alert rule to automatically block the attacker IP. The <code>alert_info</code> object contains the attacker's IP address.
 
<syntaxhighlight lang="bash">
# Block using iptables
iptables -A INPUT -s <ATTACKER_IP> -j DROP
 
# Block using ipset (more efficient for multiple IPs)
ipset add blacklist <ATTACKER_IP>
</syntaxhighlight>
 
===== 2. Network Edge Blocking (Recommended for Prevention) =====
 
For long-term protection, block at your network edge before traffic reaches VoIPmonitor:
* '''Session Border Controller (SBC)''': Configure rate limiting and IP blocking
* '''Firewall''': Block malicious IPs at the perimeter
* '''Fail2ban''': Automatically block IPs after repeated REGISTER failures
 
===== 3. Reducing REGISTER Noise =====
 
* Disable REGISTER processing if not needed: <code>sip-register = no</code> in <code>voipmonitor.conf</code>
* Filter REGISTER packets using firewall rules (block specific countries or networks)
* Use [[Capture_rules|capture rules]] to exclude known good REGISTER sources from processing
 
=== Realtime Concurrent Calls ===
 
Tracks source IPs in realtime (not CDR-based) for concurrent calls. Useful against high-channel attacks.
 
;Parameters:
:* '''Concurrent calls limit''': Trigger on international, local, or both exceeding limits
:* '''Time period rules''': Vary alerts by work/after hours (defined in '''Groups > TimePeriods''')
 
=== Change CDR Country ===
 
Triggers when CDR IP source changes country/continent since last call.
 
;Parameters:
:* '''Exclude countries from alert''': Whitelist countries to skip
 
=== Change REGISTER Country ===
 
Triggers when SIP REGISTER username changes country/continent since last successful registration.
 
;Parameters:
:* '''Exclude countries from alert''': Whitelist countries to skip
 
=== Detecting User-Agent Changes ===
 
There is '''no built-in alert''' for detecting changes to a SIP registration's User-Agent (UA) string. However, you can enable database-level tracking of UA changes by configuring the sniffer to create new register state records when the UA changes.
 
To enable UA change tracking, set <code>sip-register-state-compare-digest_ua = yes</code> (or its alias <code>sip-register-state-compare-ua = yes</code>) in <code>voipmonitor.conf</code>. This forces the sniffer to create a new record in the register state table whenever the UA changes, even if other registration details remain the same. See [[Sniffer_configuration#SIP_REGISTER,_OPTIONS,_SUBSCRIBE,_NOTIFY|Sniffer Configuration]] for details.
 
;Alternative fraud alerts for registration anomalies:
:* '''Change REGISTER country''': Detects when registration source country changes
:* '''Change CDR country''': Detects when call source country changes
 
;Custom detection:
:* Query the <code>register_state</code> database table to detect UA changes programmatically
:* Use custom scripts with anti-fraud rules to trigger actions based on database queries
 
=== Country/Continent Destination ===
 
Triggers on calls to specific country/continent, based on first SIP INVITE (realtime processing).
 
=== SIP PACKETS Flood/Attack ===
 
Triggers when >= N packets from an IP occur within the set interval.
 
=== Fraud: Sequential ===
 
Detects a large volume of calls to the same destination number within a short time period. This alert is useful for identifying sequential dialing patterns, such as repeated calls to premium rate numbers or destination abuse.
 
;Parameters:
:* '''Interval''': Time window in seconds to monitor call volume (e.g., 3600 for 1 hour)
:* '''Limit''': Maximum number of calls allowed within the interval (e.g., 100)
:* '''Called number filters''': Destination numbers/prefixes to monitor
 
;Configuration for "Any Single Destination":
:* To alert on call volume to '''any''' destination number (not specific numbers), leave the called number field empty. The alert will then detect excessive calling to any single number within the configured time window.
 
;Example Use Cases:
:* Alert when more than 50 calls are made to the same destination within 1 hour
:* Detect sequential dialing to premium rate numbers
:* Identify destination number abuse or toll fraud
 
=== Custom Script Examples ===
 
Custom scripts receive alert data as command-line arguments. The fourth argument (<code>$argv[4]</code> in PHP) contains JSON-encoded alert data.
 
==== Logging Passed Arguments ====
 
Simple script to log all arguments for debugging:
 
<syntaxhighlight lang="bash">
#!/bin/bash
echo "$(date): $@" >> /tmp/alert_debug.txt
</syntaxhighlight>
 
==== RTP Alert: Store Audio Files ====
 
Script to automatically download audio for calls that triggered an RTP alert:
 
<syntaxhighlight lang="php">
#!/usr/bin/php
<?php
// Configuration
$directory = '/home/alerts/audio';
$date = trim(`date '+%Y-%m-%d'`);
$guiDir = '/var/www/voipmonitor';
$destdir = $directory . '/' . $date;
 
// Create destination directory
`mkdir -p $destdir`;
 
// Parse alert data (4th argument contains JSON)
$alert = json_decode($argv[4]);
 
// Download audio for each CDR in the alert
foreach ($alert->cdr as $cdr) {
    $params = json_encode([
        'task' => 'getVoiceRecording',
        'user' => 'admin',
        'password' => 'admin',
        'params' => ['cdrId' => $cdr]
    ]);
    $command = "php $guiDir/php/api.php > $destdir/file_id_$cdr.pcap";
    exec("echo '$params' | $command", $arr, $val);
}
?>
</syntaxhighlight>
 
==== RTP Alert: Block IP After Threshold ====
 
Script to block IPs that exceed a threshold number of incidents:
 
<syntaxhighlight lang="php">
#!/usr/bin/php
<?php
// Configuration
$Limit = 19;                                              // Block after this many incidents
$blockCommand = "ssh root@pbx -p2112 ipset add blacklist"; // Remote blocking command
$verbose = 1;                                            // 1 = dry-run, 0 = execute
 
// Parse alert data
$alertsData = json_decode($argv[4]);
 
// Build comma-separated list of CDR IDs
$cdrIds = implode(',', $alertsData->cdr);
 
// Query database for caller IPs and incident counts
$query = "SELECT INET_NTOA(sipcallerip) as ip, COUNT(*) as incidents
          FROM voipmonitor.cdr
          WHERE id IN ($cdrIds)
          GROUP BY sipcallerip
          ORDER BY incidents DESC";
$command = "mysql -h MYSQLHOST -u MYSQLUSER -pMYSQLPASS -N -e \"$query\"";
exec($command, $results);


// Process results and block IPs exceeding limit
Anti-fraud alerts require GeoIP for IP-to-country resolution.
foreach ($results as $line) {
    list($ip, $count) = preg_split('/\s+/', trim($line));
    if ($count > $Limit) {
        if ($verbose) {
            echo "$ip: $count incidents - would block\n";
        } else {
            exec("$blockCommand $ip", $output, $rc);
            if ($rc != 0) {
                error_log("Failed to block $ip");
            }
        }
    }
}
?>
</syntaxhighlight>


==== Concurrent Calls: Block Attacker IP ====
'''Configuration:''' GUI → Settings → System Configuration → GeoIP


Script for blocking IPs based on concurrent calls alert. Enable "By caller IP" in alert settings.
'''Processing priority (fallback mechanism):'''
# MaxMind API (commercial, highest accuracy)
# IPInfoDB API
# Local GeoIP database (GeoIPCity.dat or MySQL tables)
# Free portals (backup)


<syntaxhighlight lang="php">
For detailed GeoIP configuration, see [[Order_of_GeoIP_processing]].
#!/usr/bin/php
<?php
// Parse triggered rules (4th argument)
$triggeredRules = json_decode($argv[4]);


// Count triggers per IP address
== Best Practices ==
$IPtriggers = [];
foreach ($triggeredRules as $rule) {
    $ip = $rule->alert_info->ip;
    $IPtriggers[$ip] = ($IPtriggers[$ip] ?? 0) + 1;
}


// Block all IPs that triggered the rule
* '''Toll fraud prevention:''' Configure Country/Continent Destination alerts for premium rate countries
foreach ($IPtriggers as $ip => $count) {
* '''Account protection:''' Enable Change REGISTER Country for all critical accounts
    echo "Blocking $ip (triggered $count times)\n";
* '''Brute-force protection:''' Set SIP Failed Register with low threshold (e.g., 10 attempts in 60 seconds)
    passthru("iptables -A INPUT -s $ip -j DROP", $ret);
* '''Volume monitoring:''' Use Fraud: sequential with empty number field to catch attacks on any destination
    if ($ret != 0) {
* '''Granular control:''' Combine with [[Groups|IP Groups]] for provider-specific monitoring
        echo "ERROR: Failed to block $ip\n";
        exit(1);
    }
}
echo "Blocked " . count($IPtriggers) . " IP(s)\n";
?>
</syntaxhighlight>


=== See Also ===
== See Also ==


* [[Alerts|Alerts & Reports]] - General alert configuration
* [[Alerts]] - General alert configuration and email setup
* [[Capture_rules|Capture Rules]] - Filter traffic before processing
* [[Order_of_GeoIP_processing]] - GeoIP configuration details
* [[Sniffer_configuration|Sniffer Configuration]] - <code>sip-register</code> and other options
* [[Groups]] - IP and telephone number groups for filtering
* [[Groups|Groups]] - IP groups and time periods for alerts
* [[Register]] - SIP registration monitoring


== AI Summary for RAG ==
== AI Summary for RAG ==


'''Summary:''' VoIPmonitor anti-fraud rules for detecting SIP attacks (REGISTER floods, packet floods), concurrent calls abuse, geographic anomalies, and high-volume sequential calling patterns. Covers realtime vs CDR-based alert processing differences, custom script examples for automated IP blocking via iptables/ipset, and mitigation strategies for SIP REGISTER spam.
'''Summary:''' VoIPmonitor anti-fraud detection guide using GeoIP-based alerts. Alert types: (1) Country/Continent Destination - real-time detection of calls to specific countries for toll fraud prevention; (2) Change CDR Country - detects IP country changes between calls indicating account compromise; (3) Change REGISTER Country - detects registration from unexpected countries indicating credential theft; (4) Fraud: sequential - detects high-volume calling patterns using interval (time window in seconds) and limit (max calls) parameters, CRITICAL: leave number field empty to monitor ALL destination numbers; (5) SIP Failed Register - detects brute-force attacks via failed registration monitoring. Configuration path: GUI → Alerts → Anti Fraud. Requires GeoIP configuration (Settings → System Configuration → GeoIP) with MaxMind API as highest priority.


'''Keywords:''' anti-fraud, REGISTER flood, SIP attack, concurrent calls, country change, custom scripts, iptables, ipset, fail2ban, realtime alerts, CDR-based alerts, source port limitation, sequential calls, sequential dialing, destination abuse
'''Keywords:''' anti-fraud, toll fraud, fraud detection, GeoIP, country alert, Change CDR Country, Change REGISTER Country, Fraud sequential, interval, limit, number field empty, SIP failed register, brute-force, credential stuffing, account hijacking, premium rate numbers, sequential pattern detection, call volume monitoring


'''Key Questions:'''
'''Key Questions:'''
* What anti-fraud alerts are available in VoIPmonitor?
* How do I configure anti-fraud alerts in VoIPmonitor?
* How to block SIP REGISTER flood attacks?
* How do I detect toll fraud in VoIPmonitor?
* What is the difference between realtime and CDR-based alerts?
* What is the Fraud: sequential alert and how do I configure it?
* How to create custom scripts for automated IP blocking?
* How do I detect high volume calls to any destination number?
* Why is source port not available in realtime alerts?
* Should I leave the number field empty in Fraud: sequential?
* How to configure an alert for a large volume of calls to any single destination number?
* What is the difference between Fraud: sequential and concurrent calls alerts?
* What is the Fraud: sequential alert and how does it work?
* How do I detect account hijacking in VoIPmonitor?
* How do I configure alerts for international calls?
* What is the Change REGISTER Country alert?
* How do I detect brute-force attacks on SIP registration?
* How does VoIPmonitor use GeoIP for fraud detection?

Latest revision as of 16:47, 8 January 2026


Anti-Fraud Detection

VoIPmonitor provides GeoIP-based anti-fraud alerts to detect toll fraud, account hijacking, and brute-force attacks.

Configuration

All anti-fraud alerts are configured in GUI → Alerts → Anti Fraud.

ℹ️ Note: Anti-fraud features require GeoIP configuration. See GeoIP Integration below.

Alert Types

Country/Continent Destination

Real-time detection of calls to specific countries or continents. Primary use case: detecting toll fraud where compromised accounts make expensive international calls.

Configuration:

  • Select target countries/continents to monitor
  • Set threshold for number of calls
  • Configure notification recipients

Change CDR Country

Detects when the IP country of caller or callee changes between calls - indicates potential account compromise or SIP credential theft.

Configuration:

  • Whitelist trusted countries (Exclude countries field)
  • Apply filters by phone numbers or IP addresses

Change REGISTER Country

Detects device registration from unexpected countries - strong indicator of credential theft or account hijacking.

Example: User normally registers from Germany but suddenly registers from Russia → alert triggers.

Fraud: Sequential

Detects high-volume sequential calling patterns to destination numbers within a time window.

Parameter Description Example Values
interval Time window (seconds) for counting calls 600 (10 min), 3600 (1 hour)
limit Max calls allowed before alert triggers 50, 100, 500
number field Target destination number (leave empty for ANY) Empty or specific number

⚠️ Warning: Critical: Leave the number field empty to monitor ALL destination numbers. The alert fires when ANY single destination exceeds the limit within the interval.

Configuration Steps:

  1. Navigate to GUI → Alerts → Anti Fraud
  2. Create new alert with type Fraud: sequential
  3. Set interval (e.g., 600 for 10 minutes)
  4. Set limit (e.g., 100 calls)
  5. Leave number field empty to apply to ANY number
  6. Configure recipient email
  7. Save

Example Configurations:

Scenario interval limit number field
>100 calls to any number in 10 min 600 100 Empty
>500 calls to any number in 1 hour 3600 500 Empty
>50 calls in 5 min (high-volume attack) 300 50 Empty
Monitor specific premium number 1800 200 Specify number

💡 Tip: Fraud: sequential vs concurrent calls: Sequential alerts count total calls over a time window. Concurrent alerts detect simultaneous active calls at one moment. Use sequential for detecting volume spikes, concurrent for capacity monitoring.

SIP Failed Register

Detects brute-force and credential stuffing attacks by monitoring failed registration attempts.

Parameter Description
threshold Maximum failed attempts before alert
interval Time window (seconds) for counting attempts

GeoIP Integration

Anti-fraud alerts require GeoIP for IP-to-country resolution.

Configuration: GUI → Settings → System Configuration → GeoIP

Processing priority (fallback mechanism):

  1. MaxMind API (commercial, highest accuracy)
  2. IPInfoDB API
  3. Local GeoIP database (GeoIPCity.dat or MySQL tables)
  4. Free portals (backup)

For detailed GeoIP configuration, see Order_of_GeoIP_processing.

Best Practices

  • Toll fraud prevention: Configure Country/Continent Destination alerts for premium rate countries
  • Account protection: Enable Change REGISTER Country for all critical accounts
  • Brute-force protection: Set SIP Failed Register with low threshold (e.g., 10 attempts in 60 seconds)
  • Volume monitoring: Use Fraud: sequential with empty number field to catch attacks on any destination
  • Granular control: Combine with IP Groups for provider-specific monitoring

See Also

AI Summary for RAG

Summary: VoIPmonitor anti-fraud detection guide using GeoIP-based alerts. Alert types: (1) Country/Continent Destination - real-time detection of calls to specific countries for toll fraud prevention; (2) Change CDR Country - detects IP country changes between calls indicating account compromise; (3) Change REGISTER Country - detects registration from unexpected countries indicating credential theft; (4) Fraud: sequential - detects high-volume calling patterns using interval (time window in seconds) and limit (max calls) parameters, CRITICAL: leave number field empty to monitor ALL destination numbers; (5) SIP Failed Register - detects brute-force attacks via failed registration monitoring. Configuration path: GUI → Alerts → Anti Fraud. Requires GeoIP configuration (Settings → System Configuration → GeoIP) with MaxMind API as highest priority.

Keywords: anti-fraud, toll fraud, fraud detection, GeoIP, country alert, Change CDR Country, Change REGISTER Country, Fraud sequential, interval, limit, number field empty, SIP failed register, brute-force, credential stuffing, account hijacking, premium rate numbers, sequential pattern detection, call volume monitoring

Key Questions:

  • How do I configure anti-fraud alerts in VoIPmonitor?
  • How do I detect toll fraud in VoIPmonitor?
  • What is the Fraud: sequential alert and how do I configure it?
  • How do I detect high volume calls to any destination number?
  • Should I leave the number field empty in Fraud: sequential?
  • What is the difference between Fraud: sequential and concurrent calls alerts?
  • How do I detect account hijacking in VoIPmonitor?
  • How do I configure alerts for international calls?
  • What is the Change REGISTER Country alert?
  • How do I detect brute-force attacks on SIP registration?
  • How does VoIPmonitor use GeoIP for fraud detection?