Conventions used
There are a number of text conventions used throughout this book.
Code in text
: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: “This line imports the Wappalyzer
class and the WebPage
class from the wappalyzer
module.”
A block of code is set as follows:
libraries = re.findall(r'someLibraryName', javascript_code) if libraries: print('SomeLibraryName is used.')
Any command-line input or output is written as follows:
git clone --depth 1 https://github.com/sqlmapproject/sqlmap.git sqlmap-dev
Bold: Indicates a new term, an important word, or words that you see onscreen. For instance, words in menus or dialog boxes appear in bold. Here is an example: “Run the installer, making sure to check the box that says Add Python x.x to PATH.”
Tips or important notes
Appear like this.