Listen to this Post

Burp Suite’s default connection timeout settings (300 seconds for normal connections) are excessively high for efficient scanning. Adjusting these values can significantly speed up your scans without compromising effectiveness.
Recommended Burp Suite Timeout Settings
1. Navigate to Settings > Network > Connection
2. Modify the following values:
- Connection timeout: Reduce from 300 to 30 seconds
- SSL negotiation timeout: Reduce from 30 to 10 seconds
- HTTP(S) read timeout: Reduce from 120 to 20 seconds
- HTTP(S) write timeout: Reduce from 120 to 20 seconds
You Should Know:
Optimizing Burp Suite for Faster Scans
- Automate with CLI: Use Burp Suite’s command-line interface for batch adjustments:
java -jar burpsuite_pro.jar --config-file=timeout_settings.json
Example `timeout_settings.json`:
{
"network": {
"connection_timeout": 30,
"ssl_timeout": 10,
"http_read_timeout": 20,
"http_write_timeout": 20
}
}
- Combine with Linux Tools: Use `timeout` to force-kill hanging processes:
timeout 30s java -jar burpsuite_pro.jar
-
Proxy Through Nmap: Pre-scan with Nmap to filter live hosts:
nmap -sS -T4 --open -p 80,443,8080 <target> -oG live_hosts.txt
-
Parallelize with GNU Parallel: Run multiple Burp instances:
cat targets.txt | parallel -j 4 'java -jar burpsuite_pro.jar --target={}'
Windows Equivalent Commands
-
PowerScript to Adjust Timeouts:
Set-ItemProperty -Path "HKCU:\Software\BurpSuitePro" -Name "ConnectionTimeout" -Value 30
-
TaskKill for Stuck Processes:
taskkill /F /IM java.exe /T
What Undercode Say
Optimizing timeout settings is critical for efficiency in penetration testing. However, balance speed with reliability—overly aggressive timeouts may miss slow but vulnerable services. Combine Burp Suite with tools like Nmap, Hydra, and Metasploit for comprehensive assessments.
Expected Output:
- Faster scan completion times (30–50% improvement)
- Reduced resource consumption
- More efficient large-scale assessments
Prediction
As web applications grow more complex, timeout optimization will become standard practice for ethical hackers, with future Burp Suite versions likely introducing adaptive timeout algorithms.
(URLs: Burp Suite Documentation)
IT/Security Reporter URL:
Reported By: Activity 7333737093824700416 – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass ✅


