k6-load-testing
Enables comprehensive load testing for APIs and browsers, helping to analyze performance and integrate with CI/CD pipelines.
Install this skill
Security score
The k6-load-testing skill was audited on May 15, 2026 and we found 28 security issues across 3 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 183 | 'Authorization': `Bearer ${token}`, |
Template literal with variable interpolation in command context
| 209 | const res = http.get(`https://api.example.com/users/${username}`); |
Template literal with variable interpolation in command context
| 244 | console.log(`Page title: ${title}`); |
Template literal with variable interpolation in command context
| 278 | console.log(`Received: ${data}`); |
Template literal with variable interpolation in command context
| 345 | const res = http.get(`https://api.example.com/products/${product.id}`); |
Template literal with variable interpolation in command context
| 441 | ```yaml |
Template literal with variable interpolation in command context
| 577 | const headers = { 'Authorization': `Bearer ${token}` }; |
Access to system keychain/keyring
| 46 | sudo gpg --no-default-keyring --keyring /usr/share/keyrings/k6-archive-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys C5AD17C747E3415A3642D57D77C6C491D6AC1D69 |
Access to system keychain/keyring
| 47 | echo "deb [signed-by=/usr/share/keyrings/k6-archive-keyring.gpg] https://dl.k6.io/deb stable main" | sudo tee /etc/apt/sources.list.d/k6.list |
External URL reference
| 47 | echo "deb [signed-by=/usr/share/keyrings/k6-archive-keyring.gpg] https://dl.k6.io/deb stable main" | sudo tee /etc/apt/sources.list.d/k6.list |
External URL reference
| 65 | const res = http.get('https://httpbin.test.k6.io/get'); |
External URL reference
| 140 | const getRes = http.get('https://api.example.com/users'); |
External URL reference
| 148 | const postRes = http.post('https://api.example.com/users', |
External URL reference
| 175 | const loginRes = http.post('https://api.example.com/login', |
External URL reference
| 187 | const profileRes = http.get('https://api.example.com/profile', { |
External URL reference
| 209 | const res = http.get(`https://api.example.com/users/${username}`); |
External URL reference
| 241 | await page.goto('https://example.com'); |
External URL reference
| 323 | const res = http.post('https://api.example.com/login', |
External URL reference
| 345 | const res = http.get(`https://api.example.com/products/${product.id}`); |
External URL reference
| 414 | const res = http.get('https://api.example.com/data'); |
External URL reference
| 429 | const taggedRes = http.get('https://api.example.com/users', { |
External URL reference
| 508 | k6 run --out influxdb=http://localhost:8086/k6 load-test.js |
External URL reference
| 546 | const res = http.get('https://api.example.com/users'); |
External URL reference
| 571 | const loginRes = http.post('https://api.example.com/login', |
External URL reference
| 578 | const res = http.get('https://api.example.com/profile', { headers }); |
External URL reference
| 624 | - [k6 Documentation](https://k6.io/docs/) |
External URL reference
| 626 | - [k6 Load Testing Guides](https://k6.io/guides/) |
External URL reference
| 627 | - [k6 Cloud](https://k6.io/cloud/) |