Server session lifetime #1327
Replies: 4 comments
-
|
The default ProjectDiscovery interactsh servers (oast.me, oast.fun, oast.live, etc.) have these limits: Session/Interaction Storage:
Best practices:
interactsh-client -sf /path/to/session.txtThis saves your session ID locally so you can resume later.
interactsh-client -n 5 # Poll every 5 seconds
interactsh-server -d your-domain.comSelf-hosted servers let you control TTL via Key point: Public servers are meant for quick testing, not persistent storage. If you need interactions stored longer:
The exact TTL isn't documented because it can vary based on server load. |
Beta Was this translation helpful? Give feedback.
-
|
The default ProjectDiscovery interactsh servers (oast.me, oast.fun, oast.live, etc.) have these limits: Session/Interaction Storage:
Best practices:
interactsh-client -sf /path/to/session.txtThis saves your session ID locally so you can resume later.
interactsh-client -n 5 # Poll every 5 seconds
interactsh-server -d your-domain.comSelf-hosted servers let you control TTL via Key point: Public servers are meant for quick testing, not persistent storage. If you need interactions stored longer:
The exact TTL isn't documented because it can vary based on server load. |
Beta Was this translation helpful? Give feedback.
-
|
The default session lifetime on ProjectDiscovery's public Key details:
For long-running engagements, I'd recommend self-hosting: # Run your own interactsh server with longer retention
interactsh-server -domain interact.yourdomain.com -eviction 604800 # 7 daysThis gives you full control over data retention, and you're not dependent on the public infrastructure. |
Beta Was this translation helpful? Give feedback.
-
|
The default session lifetime on ProjectDiscovery's public Key details:
For long-running engagements, I'd recommend self-hosting: # Run your own interactsh server with longer retention
interactsh-server -domain interact.yourdomain.com -eviction 604800 # 7 daysThis gives you full control over data retention, and you're not dependent on the public infrastructure. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
For how long default project discovery servers(oast.me, etc) will store session data (saved with
-sf file.session) before deleting it? I suppose interactions not stored forever.Beta Was this translation helpful? Give feedback.
All reactions