From 888a1dedbec13456138aecc77540a958c320568c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Feje=C5=A1?= Date: Sat, 1 Sep 2018 14:46:24 +0200 Subject: [PATCH] add scope, mongodb and sql-injection --- glossary/MongoDB.md | 3 +++ glossary/SQL-injection.md | 3 +++ glossary/Scope.md | 3 +++ 3 files changed, 9 insertions(+) create mode 100644 glossary/MongoDB.md create mode 100644 glossary/SQL-injection.md create mode 100644 glossary/Scope.md diff --git a/glossary/MongoDB.md b/glossary/MongoDB.md new file mode 100644 index 000000000..dd07f0ed0 --- /dev/null +++ b/glossary/MongoDB.md @@ -0,0 +1,3 @@ +### MongoDB + +MongoDB stores data in flexible, JSON-like documents, meaning fields can vary from document to document and data structure can be changed over time diff --git a/glossary/SQL-injection.md b/glossary/SQL-injection.md new file mode 100644 index 000000000..2da3c83ab --- /dev/null +++ b/glossary/SQL-injection.md @@ -0,0 +1,3 @@ +### SQL injection + +SQL injection is a code injection technique, used to attack data-driven applications. diff --git a/glossary/Scope.md b/glossary/Scope.md new file mode 100644 index 000000000..ee121f3e0 --- /dev/null +++ b/glossary/Scope.md @@ -0,0 +1,3 @@ +### Scope + +Each function has its own scope, and any variable declared within that function is only accessible from that function and any nested functions.