Hi, I was able to resolve the issue. The issue: You are probably trying to perform vetting in a windows environment. This is causing the file & directories to have improper accesses which do not comply with the App inspect procedures in splunk as they are built around NIX OS. Solution: 1. Dowload CYGWIN (https://www.cygwin.com/setup-x86_64.exe), and install it in your windows machine, and open CYGWIN. 2. Go into /cygdrive/<your app location> and run the following commands: find <your app> -type f -exec chmod 644 '{}' \; find <your app> -type d -exec chmod 700 '{}' \; (Make sure to check the permissions by running the command: ls -lR) 3. Create the .spl file also by using cygwin terminal: tar -zvcf <your_app_name.spl> <app_name> 4. Now try vetting procedure, I did it using postman, and this time it worked.
... View more