├── .gitignore ├── LICENSE ├── README.md ├── misc-sgm └── slides.pdf ├── workshop-01-Welcome-to-MISC ├── Cybersecurity-careers-presentation.pdf └── slides.pdf ├── workshop-02-Web-and-Internet-Protocols └── slides.pdf ├── workshop-03-XSS └── slides.pdf └── workshop-04-Buffer-Overflow └── slides.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 MISC 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 | # MISC Workshops 2021 2 | 3 | Slides used in the workshops can be found here. Additional notes and files may also be added for each workshop as needed 4 | 5 | Challenges should be live at https://workshop-ctf.umisc.info most of the time during the semester. Challenge files and writeups will be posted a couple of days after each workshop. Make sure you have a proper attempt at a challenge before looking at the writeup! 6 | 7 | | Week | Workshop | Challenges | Writeups | Author | 8 | | ---- | --------------------------------------------------------------------------------------- | ---------- | -------- | ---------------- | 9 | | 02 | [Welcome to MISC](./workshop-01-Welcome-to-MISC/slides.pdf) | - | - | Multiple Authors | 10 | | 02 | [Career Pathways](./workshop-01-Welcome-to-MISC/Cybersecurity-careers-presentation.pdf) | - | - | Kaif, Kushal | 11 | | 03 | [Web and Internet Protocols](./workshop-02-Web-and-Internet-Protocols/slides.pdf) | - | - | Soorya | 12 | | 04 | [XSS](./workshop-03-XSS/slides.pdf) | - | - | Ayesha | 13 | | 05 | [MISC SGM](./misc-sgm/slides.pdf) | - | - | Multiple Authors | 14 | | 06 | [Buffer Overflow](./workshop-04-Buffer-Overflow/slides.pdf) | - | - | Ayesha | 15 | 16 | older and deprecated workshops are in older branches 17 | -------------------------------------------------------------------------------- /misc-sgm/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umisc/workshops/ce21521478a38f2dfe2de89f83cb63ee3e514c35/misc-sgm/slides.pdf -------------------------------------------------------------------------------- /workshop-01-Welcome-to-MISC/Cybersecurity-careers-presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umisc/workshops/ce21521478a38f2dfe2de89f83cb63ee3e514c35/workshop-01-Welcome-to-MISC/Cybersecurity-careers-presentation.pdf -------------------------------------------------------------------------------- /workshop-01-Welcome-to-MISC/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umisc/workshops/ce21521478a38f2dfe2de89f83cb63ee3e514c35/workshop-01-Welcome-to-MISC/slides.pdf -------------------------------------------------------------------------------- /workshop-02-Web-and-Internet-Protocols/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umisc/workshops/ce21521478a38f2dfe2de89f83cb63ee3e514c35/workshop-02-Web-and-Internet-Protocols/slides.pdf -------------------------------------------------------------------------------- /workshop-03-XSS/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umisc/workshops/ce21521478a38f2dfe2de89f83cb63ee3e514c35/workshop-03-XSS/slides.pdf -------------------------------------------------------------------------------- /workshop-04-Buffer-Overflow/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umisc/workshops/ce21521478a38f2dfe2de89f83cb63ee3e514c35/workshop-04-Buffer-Overflow/slides.pdf --------------------------------------------------------------------------------