From 3f5d51cea0cb6cd9b79c56765d20fbd3b53ab027 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Re=C5=BE=C5=88=C3=A1k?= Date: Thu, 25 Jul 2024 03:02:47 +0200 Subject: [PATCH] Remove duplicated example of query string parsing Removes a duplicate of the example at line 218. --- cheatsheets/Nodejs_Security_Cheat_Sheet.md | 1 - 1 file changed, 1 deletion(-) diff --git a/cheatsheets/Nodejs_Security_Cheat_Sheet.md b/cheatsheets/Nodejs_Security_Cheat_Sheet.md index 811f1b6859..1f44d259cc 100644 --- a/cheatsheets/Nodejs_Security_Cheat_Sheet.md +++ b/cheatsheets/Nodejs_Security_Cheat_Sheet.md @@ -218,7 +218,6 @@ JavaScript is a dynamic language and depending on how the framework parses a URL | `?foo[]=bar` | `['bar']` (array of string) | | `?foo[]=bar&foo[]=baz` | `['bar', 'baz']` (array of string) | | `?foo[bar]=baz` | `{ bar : 'baz' }` (object with a key) | -| `?foo[]=bar` | `['bar']` (array of string) | | `?foo[]baz=bar` | `['bar']` (array of string - postfix is lost) | | `?foo[][baz]=bar` | `[ { baz: 'bar' } ]` (array of object) | | `?foo[bar][baz]=bar` | `{ foo: { bar: { baz: 'bar' } } }` (object tree) |