%2F interpreted as / when routing
As an example, the URL:
/sportbet/BACK/8%2F10/Y
gets interpreted as:
/sportbet/BACK/8/10/Y
resulting in
Cannot GET /sportbet/BACK/8/10/Y
because of the extra / being interpreted when routing.
I am not sure whether this is happening during URL Rewriting (doubt it) or when iisnode talks to node.exe.
This does not happen when running node with express directly.
%2F interpreted as / when routing
As an example, the URL:
gets interpreted as:
resulting in
because of the extra / being interpreted when routing.
I am not sure whether this is happening during URL Rewriting (doubt it) or when iisnode talks to node.exe.
This does not happen when running node with express directly.