WSR: #12: March 7th - 13th 2022
This Week’s Recap
3/7/2022
- Created an index for book 1 and 2 of GCIH
- Felt pretty good about the material and decided to take a practice test.
- This was my first time taking a SANS exam with the new testing UI, it was fantastic compared to the old one.
3/8/2022
- Created an index for GCIH book 3
- Tabbed out all of the books
3/9/2022
- Watched this crash course on golang.
- My goal is to spend the rest of 2022 sharpening my python skills and 2023 to start learning a compiled language. I was thinking of learning C but I will probably end up learning Golang instead. It seems really fun.
- Finished creating an index for the rest of the GCIH books using my SansTerminalIndexer program.
3/10/2022
- Watched @rybaz give a talk about pentesting a decentralized network.
- Created an outline for my talk at Wild West Hackin Fest. This is going to be a very very strange talk but should be very entertaining.
- Are you going to WWHF? If so let me know on twitter
3/11/2022
- Spent a lot of time improving my vim development environment by getting some new neovim plugins. The new plugins I added were:
- https://github.com/preservim/nerdcommenter
- https://github.com/vim-airline/vim-airline
- https://github.com/jiangmiao/auto-pairs
- This is my current init.vim if you’re interested:
call plug#begin()
Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim'
Plug 'nvim-treesitter/nvim-treesitter'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'morhetz/gruvbox'
Plug 'nvim-treesitter/nvim-treesitter'
Plug 'preservim/nerdcommenter'
Plug 'vim-airline/vim-airline'
Plug 'jiangmiao/auto-pairs'
Plug 'preservim/nerdtree'
" Find files using Telescope command-line sugar.
let mapleader = ","
nnoremap <leader>ff <cmd>Telescope find_files<cr>
nnoremap <leader>fg <cmd>Telescope live_grep<cr>
nnoremap <leader>fb <cmd>Telescope buffers<cr>
nnoremap <leader>fh <cmd>Telescope help_tags<cr>
call plug#end()
"colorscheme gruvbox
set tabstop=4
set shiftwidth=4
set expandtab
set scrolloff=7
" NerdTree
let NERDTreeQuitOnOpen=1
nmap <f2> :NERDTreeToggle<CR>
" Airline
let g:airline#extensions#tabline#enabled=1
let g:airline#extensions#tabline#fnamemode=':t'
" Remaps
nmap <leader>1: bp<CR>
nmap <leader>2: bn<CR>
nmap <C-w> :bd<CR>
set number
set relativenumber
3/12/2022
- Took my second GCIH practice exam and scored an 81%. Not too happy with this score (especially since I made an 86% on the last one where I didn’t use an index…) but I have high hopes for the exam. My goal is to score 90% or above.
- Scheduled my exam for 4/19/2022
3/13/2022
- Published this blog :)
Have any questions
Do you have any questions? Feel free to reach out to me on twitter. See you next Sunday. :)