From b58742934732daf90afe4112a22f23890766c623 Mon Sep 17 00:00:00 2001 From: Casual Date: Thu, 13 Jun 2024 21:02:26 +0300 Subject: [PATCH] edit post --- content/hacking/HowTo_learn_hacking.md | 5 +++-- content/hidden/preview/HowTo_Ansible.md | 5 +---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/content/hacking/HowTo_learn_hacking.md b/content/hacking/HowTo_learn_hacking.md index b8511f8..cf68ff6 100644 --- a/content/hacking/HowTo_learn_hacking.md +++ b/content/hacking/HowTo_learn_hacking.md @@ -5,14 +5,15 @@ date = 2024-05-03 -It's my personal hacking learning strategy: +It's my personal hacking learning strategy: - Superficially recognize how it is done - you need to find familiar concepts - Read OWASP Top-10 for it + - PRACTICE! Try find lab for this taks (Portswigger) - Gather methodology on testing from various sources - Get list of hack tools - Based on methodology create own checklist on pentest - Find checklists for this topic online and combine with own if needed - - PRACTICE! (TryHackMe, HackTheBox...) + - PRACTICE! (TryHackMe, HackTheBox, Portswigger...) - Fill the knowledge gaps - Extra: Read books and articles to deepen knowledge base diff --git a/content/hidden/preview/HowTo_Ansible.md b/content/hidden/preview/HowTo_Ansible.md index 70860b6..32d0e2a 100644 --- a/content/hidden/preview/HowTo_Ansible.md +++ b/content/hidden/preview/HowTo_Ansible.md @@ -388,7 +388,7 @@ ok: [192.168.0.5] => { file_server } ``` -Now we can access default Caddy page of our PCs via browser... +Now we can access default Caddy page of our PCs via browser... OR NOT ```sh TASK [web-browser : Install Caddy] ********************************************* @@ -418,7 +418,6 @@ Ansible use package manager of remote host. So if system doesn't have package, i ``` `roles/web-browser/template/index.html.j2`: ```html -... @@ -514,8 +513,6 @@ Result in `index.html`: 10. And last - make caddy restart if ansible makes any modification `roles/web-browser/handlers/main.yml`: ```yaml -... -handlers: - name: restart caddy service ansible.builtin.service: name: caddy