javascript - Empty "for" loop in Facebook ajax - Stack Overflow

admin2025-04-03  0

While surfing facebook and using the Firebug network debugger I noticed that facebook's AJAX responses all start with an empty for loop.

Example:

for(;;);{...}

Does anyone know why this is done? I assume it's to prevent some sort of XSS attack but I don't totally understand. Thanks!

While surfing facebook and using the Firebug network debugger I noticed that facebook's AJAX responses all start with an empty for loop.

Example:

for(;;);{...}

Does anyone know why this is done? I assume it's to prevent some sort of XSS attack but I don't totally understand. Thanks!

Share Improve this question asked Jun 17, 2010 at 1:49 celticpridecelticpride 5161 gold badge5 silver badges9 bronze badges 2
  • Looks like it tries to hang the JS engine if the response is eval'd. Probably to make users of the Facebook API use their JSON-parsing library instead of eval? – strager Commented Jun 17, 2010 at 1:51
  • 2 Possible duplicate of Why does Google prepend while(1); to their JSON responses? – gengkev Commented Feb 19, 2016 at 2:32
Add a ment  | 

1 Answer 1

Reset to default 11

Like google's

while(1);

it done for preventing of including this in <script> with further using the data

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1743694728a215658.html

最新回复(0)