views:

76

answers:

3

I need to refer to URLs such as the one mentioned in the title for my dissertation and I'm not sure what the technical term is (or if one exists).

It's the foo=bar part that I'm particularly interested in as I use it as an indication that a directory traversal vulnerability may be present.

Thanks

+9  A: 

Its called the querystring

AutomatedTester
+1  A: 

That segment is the query string. As a whole it is just an HTTP URI.

David Dorward
A: 

A URL with x=y parameters in the querystring is commonly called a parameterized URL.

Andrew