Skip to content

Instantly share code, notes, and snippets.

@jfstenuit
Created June 20, 2017 11:20
Show Gist options
  • Save jfstenuit/8824314a9590c209cd09186c7087c6be to your computer and use it in GitHub Desktop.
Save jfstenuit/8824314a9590c209cd09186c7087c6be to your computer and use it in GitHub Desktop.
Remove custom app from qradar

Get all running apps

curl -X GET 'https://172.16.60.10/api/gui_app_framework/applications' -u admin:PASSWORD -k|python -mjson.tool

Caution: this will result in a huge json structure - you need t find the "AppId" of the offending app (numeric value)

Delete offending app

curl -X DELETE -k -u admin:PASSWORD https://172.16.60.10/api/gui_app_framework/applications/1354
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment