├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md └── slides └── 20171123-Gopherblazer-BSidesWellington.pdf /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pdf filter=lfs diff=lfs merge=lfs -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_STORE 2 | 3 | poc-*/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Glenn 'devalias' Grant 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # GopherBlazer 2 | 3 | Thy blazing cometh.. 4 | 5 | ## PoCs 6 | 7 | * [poc-apex](https://github.com/0xdevalias/gopherblazer/tree/poc-apex/poc-apex) 8 | * Slicing wordlists and running gobuster on AWS Lambda in parallel (with Apex) 9 | * [poc-cli](https://github.com/0xdevalias/gopherblazer/tree/poc-cli/poc-cli) 10 | * Creating a CLI program in Go that dynamically loads sub-commands from a YAML configuration file. 11 | 12 | ## About Me 13 | 14 | * [Glenn 'devalias' Grant](http://devalias.net/) ([@_devalias](https://twitter.com/_devalias)) 15 | * [LinkedIn](https://www.linkedin.com/in/glenn-devalias-grant/) 16 | 17 | ## Talks 18 | 19 | * [SecTalks Canberra](http://www.sectalks.org/canberra/) ([November 14th, 2017; Canberra, Australia](https://www.meetup.com/SecTalks-Canberra/events/241579721/)) 20 | * "Hack FaaSter: Leveraging Docker and OpenFaaS for fun and offensive (security) profit." 21 | * [Slides, Workshop, etc](https://github.com/0xdevalias/hack-FaaSter) 22 | * [CSides Canberra](http://www.bsidesau.com.au/csides.html) (November 17th, 2017; Canberra, Australia) 23 | * "Gophers, whales and.. clouds? Oh my!" v0.2-prewlg-alpha 24 | * [BSides Wellington 2017](https://www.bsides.nz/) (November 23-24th, 2017; Wellington, New Zealand) 25 | * [Speaker: Glenn 'devalias' Grant](https://bsideswellington2017.sched.com/speaker/glenndevaliasgrant) 26 | * ["Gophers, whales and.. clouds? Oh my!"](https://bsideswellington2017.sched.com/event/CTpF/gophers-whales-and-clouds-oh-my) 27 | * Slides: [PDF](slides/20171123-Gopherblazer-BSidesWellington.pdf), [SpeakerDeck](https://speakerdeck.com/0xdevalias/gophers-whales-and-dot-clouds-oh-my), [SlideShare](https://www.slideshare.net/GlenndevaliasGrant/gophers-whales-and-clouds-oh-my) 28 | * YouTube: [0xdevalias's Channel](https://www.youtube.com/watch?v=Y2W-Kw24Zpg), [BSides Wellington's Channel (original)](https://www.youtube.com/watch?v=adWzygDdQLw) 29 | 30 | [![YouTube: BsidesWLG 2017 - Glenn 'devalias' Grant - Gophers, whales and.. clouds? Oh my!](http://img.youtube.com/vi/Y2W-Kw24Zpg/0.jpg)](https://www.youtube.com/watch?v=Y2W-Kw24Zpg) 31 | -------------------------------------------------------------------------------- /slides/20171123-Gopherblazer-BSidesWellington.pdf: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:90b83a6f1c5b705a1f4abf5f3b5787f806563aaef18cbd2e23d1f710ea227a3c 3 | size 6239690 4 | --------------------------------------------------------------------------------