From 044ff1e4653d5f8e2820da66e99fdb13e102c6cf Mon Sep 17 00:00:00 2001 From: casual Date: Tue, 26 Nov 2024 22:50:29 +0300 Subject: [PATCH] new post --- content/hacking/HowTo_dirb_golang_library.md | 14 ++++++++++++++ content/tech/HowTo_Ansible.md | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 content/hacking/HowTo_dirb_golang_library.md diff --git a/content/hacking/HowTo_dirb_golang_library.md b/content/hacking/HowTo_dirb_golang_library.md new file mode 100644 index 0000000..257bff7 --- /dev/null +++ b/content/hacking/HowTo_dirb_golang_library.md @@ -0,0 +1,14 @@ ++++ +title = 'HowTo dirb with GoLang library' +date = 2024-11-27 ++++ + + +Well, if you want to integrate dirbuster to your GoLang app, than you are in a troube since tools dont provided usage as library. You'll end up with 2 choices: + - write own lib from scratch + - hack around with known tools + +I've did last one. I've modificated dirb tool so it's easy to use as library. + +Here you go - https://git.sual.in/casual/gobuster-lib + diff --git a/content/tech/HowTo_Ansible.md b/content/tech/HowTo_Ansible.md index 5dfb5f0..49ac006 100644 --- a/content/tech/HowTo_Ansible.md +++ b/content/tech/HowTo_Ansible.md @@ -73,7 +73,7 @@ Task: dump config of a router and write role for PCs which will: 1. Install Ansible on Controller node - `pip install ansible` 2. Install Python on Unix/Windows machines if it isn't installed (not strictly necessary, but otherwise need a workaround) 3. Create project folder - `mkdir projectName && cd projectName` -4. Make Git repo - [HowTo Git](/hidden/todo) +4. Make Git repo - [HowTo Git](/tech/howto_git) 5. Generate public SSH key (if it doesn't exist) - `ssh-keygen`, press x3 ENTER 6. Copy public SSH key to remote hosts (way depends per OS) - (GNU/Linux) `ssh-copy-id [TargetIP]`