pairing
Facilitates user pairing, authentication, and trust management for secure access across channels.
Install this skill
Security score
The pairing skill was audited on Feb 22, 2026 and we found 12 security issues across 1 threat category. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 78 | console.log(`Pairing code: ${request.code}`); |
Template literal with variable interpolation in command context
| 79 | console.log(`Expires: ${request.expiresAt}`); |
Template literal with variable interpolation in command context
| 92 | console.log(`Valid code for user: ${valid.username}`); |
Template literal with variable interpolation in command context
| 93 | console.log(`Channel: ${valid.channelId}`); |
Template literal with variable interpolation in command context
| 141 | console.log(`Trust level: ${trust}`); |
Template literal with variable interpolation in command context
| 162 | console.log(`Code: ${req.code}`); |
Template literal with variable interpolation in command context
| 163 | console.log(`User: ${req.username} (${req.displayName})`); |
Template literal with variable interpolation in command context
| 164 | console.log(`Requested: ${req.createdAt}`); |
Template literal with variable interpolation in command context
| 165 | console.log(`Expires: ${req.expiresAt}`); |
Template literal with variable interpolation in command context
| 177 | console.log(`${user.username}: ${user.trustLevel}`); |
Template literal with variable interpolation in command context
| 178 | console.log(` Paired: ${user.pairedAt}`); |
Template literal with variable interpolation in command context
| 179 | console.log(` Approved by: ${user.approvedBy}`); |