Sniper takes a single word list and inserts each element into each defined position, one element and one position at a time.

For example, assume a three-element word list containing one, two, and three, and the body date foo=position1&bar=position2. Then if position1 and position2 are both defined as positions, Sniper will produce the following sequence of attempts:

  • foo=one&bar=position2
  • foo=two&bar=position2
  • foo=three&bar=position2
  • foo=position1&bar=one
  • foo=position1&bar=two
  • foo=position1&bar=three

Sniper is most useful when attacking a single position, however.