diff --git a/README.md b/README.md
index 44cc199..d27c4ec 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,5 @@
-
+
"Knowledge is powerful, be careful how you use it!"
@@ -10,17 +9,11 @@
-
-
-
-
+
-
+
@@ -697,6 +690,7 @@ performance of any of your sites from across the globe.
:small_orange_diamond: OWASP ASVS 3.0.1 Web App - simple web app that helps developers understand the ASVS requirements.
:small_orange_diamond: OWASP ASVS 4.0 - is a list of application security requirements or tests.
:small_orange_diamond: OWASP Testing Guide v4 - includes a "best practice" penetration testing framework.
+ :small_orange_diamond: OWASP Dev Guide - this is the development version of the OWASP Developer Guide.
:small_orange_diamond: Mozilla Web Security - help operational teams with creating secure web applications.
:small_orange_diamond: Enable CORS - enable cross-origin resource sharing.
:small_orange_diamond: Application Security Wiki - is an initiative to provide all application security related resources at one place.
@@ -847,6 +841,7 @@ Linux Security Expert - trainings, howtos, checklists, security tools an
:small_orange_diamond: Vulnreport - open-source pentesting management and automation platform by Salesforce Product Security.
:small_orange_diamond: Mentalist - is a graphical tool for custom wordlist generation.
:small_orange_diamond: archerysec - vulnerability assessment and management helps to perform scans and manage vulnerabilities.
+ :small_orange_diamond: Osmedeus - fully automated offensive security tool for reconnaissance and vulnerability scanning.
##### :black_small_square: Pentests bookmarks collection
@@ -884,7 +879,6 @@ Linux Security Expert - trainings, howtos, checklists, security tools an
:small_orange_diamond: MSTG - The Mobile Security Testing Guide (MSTG) is a comprehensive manual for mobile app security testing.
-
##### :black_small_square: Wordlists and Weak passwords
@@ -952,6 +946,7 @@ Linux Security Expert - trainings, howtos, checklists, security tools an
:small_orange_diamond: Pentestit - emulate IT infrastructures of real companies for legal pen testing and improving penetration testing skills.
:small_orange_diamond: Microcorruption - reversal challenges done in the web interface.
:small_orange_diamond: Crackmes - download crackmes to help improve your reverse engineering skills.
+ :small_orange_diamond: DomGoat - DOM XSS security learning and practicing platform.
##### :black_small_square: Other resources
@@ -1254,6 +1249,14 @@ for ((i=1; i<=10; i+=2)) ; do echo $i ; done
for ((i=5; i<=10; ++i)) ; do printf '%02d\n' $i ; done
# alternative: seq -w 5 10
+
+for i in {1..10} ; do echo $i ; done
+```
+
+###### Simple Bash Filewatching
+
+```bash
+unset MAIL; export MAILCHECK=1; export MAILPATH='$FILE_TO_WATCH?$MESSAGE'
```
___
@@ -3079,6 +3082,14 @@ grep -v ^[[:space:]]*# filename
egrep -v '#|^$' filename
```
+###### Show strings with a dash/hyphen
+
+```bash
+grep -e -- filename
+grep -- -- filename
+grep "\-\-" filename
+```
+
#### Shell functions [[TOC]](#anger-table-of-contents)
##### Table of Contents