I have taint mode turned on for a cgi script, and I can verify that it is working with form data. However, when I enter the url my_page.cgi?page_id=123, it doesn't seem like page_id ends up tainted. Since this is user-supplied data, I would have expected taint to kill my script when I try to look up a database record and bind in page_id. When I run this from the command line, taint does trigger. Is it as simple as taint ignores 'get' params, or is there more to this mystery?
Thanks
~jeff