Chapter 3: Shellcode Tools and Resources
In the previous chapters, we looked at shellcode and were introduced to its common types. After that, you learned about the assembly language and its various components, as well as how it is used in shellcode. When it comes to working with shellcode, you will need to leverage a mixture of tools. These tools will help you create the shellcode. You will also need tools to compile the shellcode, or even debug a program where you will be using shellcode. Having the right tools in your toolkit can make your life a lot easier when it comes to creating shellcode. In this chapter, you will discover the various tools that can be used to create shellcode. This chapter aims to cover several common tools; and as you progress through this book, we will introduce tools that are specific to an environment or scenario.
In this chapter, we are going to cover the following topics:
- Interpreters, compilers, and assemblers
- Tools and resources for...