- 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.
- Qt 5 and OpenCV 4 Computer Vision Projects
- ThinkPHP 5實(shí)戰(zhàn)
- C# Programming Cookbook
- Practical Internet of Things Security
- Android 7編程入門經(jīng)典:使用Android Studio 2(第4版)
- Java實(shí)戰(zhàn)(第2版)
- Python Data Structures and Algorithms
- Learning Unreal Engine Android Game Development
- PHP 7從零基礎(chǔ)到項(xiàng)目實(shí)戰(zhàn)
- Flink技術(shù)內(nèi)幕:架構(gòu)設(shè)計(jì)與實(shí)現(xiàn)原理
- 零基礎(chǔ)學(xué)HTML+CSS第2版
- Responsive Web Design with jQuery
- H5匠人手冊(cè):霸屏H5實(shí)戰(zhàn)解密
- Learning Redis
- Jenkins 2.x Continuous Integration Cookbook(Third Edition)