I have a use case where in user will upload some python/shell file on my application. My application allows user to run these scripts on a server. Before running this script I want to validate if script has any security vulnerability or if its following certain best practices. Since user is uploading this script on my application, its not tied to CI/CD pipeline, how can I use SonarQube to meet this use case?
If I upload the user script on say some S3 bucket, will it possible to run the scan pointing to that location. What would be the best solution for this kind of use case.