Documentation

Go to Portal Website

Proxy Usage Detection

PlanPlatformsMASVS
TeamAndroid, iOSMASVS-NETWORK-1

Overview

Proxy Usage Detection identifies when a device appears to be using an HTTP, HTTPS, SOCKS, or auto-configured proxy. Proxies are sometimes legitimate in enterprise environments, but they can also be used to intercept traffic, bypass location or network policy, inspect sensitive requests, or support fraud workflows.

When proxy usage is detected, AppTego applies your configured response. Teams commonly start with logging, then warn or restrict sensitive flows once expected enterprise behavior is understood.

When To Use It

Use this control when:

How It Works

The protected app evaluates platform network configuration and connectivity signals for evidence that traffic may be routed through a proxy. Detection behavior is platform-aware and designed to catch common proxy states without exposing the exact signal list or inspection order in public documentation.

Proxy detection is a risk signal. It does not remove a proxy from the device and it does not replace certificate pinning, TLS hardening, or server-side fraud controls.

How to Enable the Control

Navigate to Detection & Response from the AppTego portal, and expand the Network And Location Detection section. Under this section you will find the Proxy Usage Detection control. Click Enable Configuration, choose the response action, and save the configuration for the next build or for it to be applied with a live push (if enabled).

API Configuration Example

{
  "ProxyUsageDetectionResponse": {
    "detection": true,
    "action": "alert",
    "title": "Proxy Detected",
    "message": "Your device appears to be using a network proxy. Please disable it before continuing.",
    "buttons": ["OK"],
    "actions": ["close"],
    "redirects": [""]
  }
}
FieldPurpose
detectionEnables or disables proxy detection.
actionSelects the response style, such as alert, close, log, or warn.
title / messageUser-facing text shown when a response is displayed.
buttons / actions / redirectsDefines the available response buttons and their outcomes.

Compatibility Notes