├── .gitmodules ├── README.md └── slides └── both-talks /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "orca"] 2 | path = tools/orca 3 | url = https://github.com/digitalshadows/orca 4 | [submodule "theHarvester"] 5 | path = tools/theHarvester 6 | url = https://github.com/laramies/theHarvester 7 | [submodule "twint"] 8 | path = tools/twint 9 | url = https://github.com/twintproject/twint 10 | [submodule "recon-ng"] 11 | path = tools/recon-ng 12 | url = https://github.com/lanmaster53/recon-ng 13 | [submodule "truffleHog"] 14 | path = tools/truffleHog 15 | url = https://github.com/dxa4481/truffleHog 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # virtualwhale-osint-ctf 2 | The "Virtual Whale" OSINT CTF at BSides DFW 2019! 3 | 4 | ## Layout 5 | 6 | * **slides/** - Slides for the workshop 7 | * **tools/** - Tools used during the workshop 8 | 9 | ## Tool Installation 10 | 11 | Follow these steps if you're not using the provided Virtual Machine image: 12 | 13 | 1. Git clone this repository: `git clone https://github.com/digitalshadows/virtualwhale-osint-ctf.git` 14 | 2. Enter the project directory: `cd virtualwhale-osint-ctf/tools` 15 | 3. Initialize and update the submodules: `git submodule update --init --recursive` 16 | 17 | ## VM 18 | 19 | If you don't want to install the tools, we've got a prebuilt VM available, hosted on Google Drive. It's an .ova for VirtualBox. You can also import it into VMWare, disable the CD-ROM hardware setting, and run `sudo apt install open-vm-tools open-vm-tools-desktop` then reboot and you're ready to go. 20 | 21 | The username:password is `investigator:research`. 22 | 23 | https://drive.google.com/file/d/126J7EWdykUtowvg3XOAp7qi7lhnlRiLL/view?usp=sharing 24 | 25 | ## Workshop Video 26 | 27 | https://drive.google.com/file/d/1-R6VXBQBOvGmHNmZKbRcH_LQmU2oV1Of/view?usp=sharing 28 | -------------------------------------------------------------------------------- /slides/both-talks: -------------------------------------------------------------------------------- 1 | ##OSINT Talk Slides 2 | https://drive.google.com/file/d/1OlRD1ECBkWEih52z1nwlj4uwosc0JVzd/view?usp=sharing 3 | 4 | ##OSINT Workshop Slides 5 | https://drive.google.com/file/d/1YXb8ZA_FyIFw8dHZgi2lcZxtC1lYkUft/view?usp=sharing 6 | --------------------------------------------------------------------------------