- 1st pass - go over the material and highlight important parts, commands, concepts. a. Do labs for each section and take notes on the commands used.
- 2nd pass - go over material again but this time build your index (see sections below).
- Take the first practice exam using your current index; note down weak areas and labs you had issues with.
- Add any further details into the index as needed and/or practice labs.
- Redo exam again and check steps above if still needed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Reply via email credit: https://whispered.ink/adding-a-reply-via-email-button-to-bearblog/ | |
| */ | |
| /* base theme: Archie by Bearblog */ | |
| @import url(https://fonts.bunny.net/css?family=jetbrains-mono:400,400i); | |
| :root { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| BEGIN:VCALENDAR | |
| VERSION:2.0 | |
| PRODID:-//ical.marudot.com//iCal Event Maker | |
| X-WR-CALNAME:BSides Brisbane Schedule (Unofficial) | |
| NAME:BSides Brisbane Schedule (Unofficial) | |
| CALSCALE:GREGORIAN | |
| BEGIN:VTIMEZONE | |
| TZID:Australia/Sydney | |
| LAST-MODIFIED:20201011T015911Z | |
| TZURL:http://tzurl.org/zoneinfo-outlook/Australia/Sydney |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| var_date=$(date +"%Y-%m-%d") | |
| read -p "I need to stop the unifi container. Do you want to proceed? y/n " -n 1 -r | |
| echo | |
| if [[ $REPLY =~ ^[Yy]$ ]] | |
| then | |
| docker stop unifi | |
| echo "unifi stopped" | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| ## TryHackMe Advent Calendar 2020 Day 16 | |
| ## https://tryhackme.com/room/adventofcyber2 | |
| import requests | |
| # The code below assumes an api endpoint with a odd-numbered key that we don't know the value of. The correct value will produce a flag. | |
| # for loop to go over 1-100 key values, step by 2 to have odd numbers only | |
| for api_key in range(1,100,2): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| parrot-upgrade | |
| gzip -d -k /usr/share/wordlists/rockyou.txt.gz | |
| wget -c https://github.com/danielmiessler/SecLists/archive/master.zip -O /usr/share/wordlists/SecList.zip | |
| unzip /usr/share/wordlists/SecList.zip | |
| rm -f /usr/share/wordlists/SecList.zip | |
| usermod -aG vboxsf user | |
| apt install -y zsh zsh-syntax-highlighting zsh-autosuggestions |
Obligatory: https://github.com/jaredthecoder/awesome-vehicle-security and https://old.reddit.com/r/CarHacking/
- https://medium.com/@yogeshojha/car-hacking-101-practical-guide-to-exploiting-can-bus-using-instrument-cluster-simulator-part-ee998570758 🔰
- https://medium.com/@tbruno25/car-hacking-the-can-bus-tutorial-i-wish-i-had-783d7e0a2046 ⭐⭐⭐
- https://news.voyage.auto/an-introduction-to-the-can-bus-how-to-programmatically-control-a-car-f1b18be4f377 ⭐⭐
- https://jeelabs.org/2018/canbus-intro/
- https://medium.com/@christopher.thomas/can-bus-the-deets-18b8dba4e832
Resources from SANS Open Source Intelligence Talk:
- Snapchat live activity map - map.snapchat.com
- Viewdns; various DNS history and info gathering tools - https://viewdns.info/
- domainbigdata
NewerOlder