We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When the scan is attacking websocket endpoints and websocket server is not responding to initial connect, websocket requests are not timing out
Step to reproduce:
const scan = await this.scanFactory.createScan( { tests: [TestType.SQLI], name: TestType.SQLI, target: { url: '<stuck ws/wss target>' } } );
expect
await scan.expect(async () => { const issues = await scan.issues(); return issues.length > 2; });
Actual: requests are hanging and expect does not resolve Expected: requests fail by timeout and expect resolves
The text was updated successfully, but these errors were encountered:
WsRequestRunner
ac4859f
denis-maiorov-brightsec
Successfully merging a pull request may close this issue.
When the scan is attacking websocket endpoints and websocket server is not responding to initial connect, websocket requests are not timing out
Step to reproduce:
expect
Actual: requests are hanging and expect does not resolve
Expected: requests fail by timeout and expect resolves
The text was updated successfully, but these errors were encountered: