- Learning Python Web Penetration Testing
- Christian Martorella
- 204字
- 2021-06-25 20:54:46
Conventions used
There are a number of text conventions used throughout this book.
CodeInText: 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: "The server returns an HTTP response with a 200 OK code, some header, and the test.html content if it exists on the server."
A block of code is set as follows:
#!/usr/bin/env
import requests
r = requests.get('http://httpbin.org/ip')
print r.url
print 'Status code:'
print '\t[-]' + str(r.status_code) + '\n'
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
r = requests.get(self.url, auth=(self.username, self.password))
if r.status_code == 200:
hit = "0"
Any command-line input or output is written as follows:
python forzaBruta-forms.py -w http://www.scruffybank.com/check_login.php -t 5 -f pass.txt -p "username=admin&password=FUZZ"
Bold: Indicates a new term, an important word, or words that you see on screen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "We right-click on the page and we select View Page Source."
Warnings or important notes appear like this.
Tips and tricks appear like this.
- Programming ArcGIS 10.1 with Python Cookbook
- Learning Elixir
- AIRAndroid應(yīng)用開發(fā)實(shí)戰(zhàn)
- Access 2010數(shù)據(jù)庫基礎(chǔ)與應(yīng)用項(xiàng)目式教程(第3版)
- Learning Vaadin 7(Second Edition)
- Visual C#通用范例開發(fā)金典
- Learning AWS
- JavaScript應(yīng)用開發(fā)實(shí)踐指南
- Extending Unity with Editor Scripting
- Emotional Intelligence for IT Professionals
- Java EE 8 and Angular
- 數(shù)據(jù)結(jié)構(gòu):Python語言描述
- Test-Driven iOS Development with Swift
- Visual Basic語言程序設(shè)計(jì)上機(jī)指導(dǎo)與練習(xí)(第3版)
- Ubuntu Server Cookbook