Hello everyone I am new to this community and I decided to join because I have a little problem that I can’t solve:
I am using the API to do scans and print the results of those scans to the terminal, and I am writing scripts in python that allow me to do this.
Everything works correctly, but when I run the following part of the script:
reports = gmp.get_reports( details = True )
when I go to examine the report that I am interested in, I notice that there are not all the results indicated but only a few, I tried as well to apply the filter in the following way:
reports = gmp.get_reports( details = True , filter_string = "apply_overrides=0 levels=hml rows=100 min_qod=70 first=1 sort-reverse=severity")
But it doesn’t seem to be taken into account at all, so it doesn’t change anything in the answer obtained. Finally, I also tried using the ignore_pagination = True option in the following way:
reports = gmp.get_reports( details = True , ignore_pagination = True )
And actually more results are shown that way, but still they are not all
Do you happen to know how to display all the results in the correct way?
P.S: I use GMP version 22.4