Web Application黑客手册:安全漏洞的发现与利用The Web Application Hacker's Handbook : Discovering and Exploiting Security Flaws mobi 下载 网盘 caj lrf pdf txt 阿里云

Web Application黑客手册:安全漏洞的发现与利用The Web Application Hacker's Handbook : Discovering and Exploiting Security Flaws电子书下载地址
- 文件名
- [epub 下载] Web Application黑客手册:安全漏洞的发现与利用The Web Application Hacker's Handbook : Discovering and Exploiting Security Flaws epub格式电子书
- [azw3 下载] Web Application黑客手册:安全漏洞的发现与利用The Web Application Hacker's Handbook : Discovering and Exploiting Security Flaws azw3格式电子书
- [pdf 下载] Web Application黑客手册:安全漏洞的发现与利用The Web Application Hacker's Handbook : Discovering and Exploiting Security Flaws pdf格式电子书
- [txt 下载] Web Application黑客手册:安全漏洞的发现与利用The Web Application Hacker's Handbook : Discovering and Exploiting Security Flaws txt格式电子书
- [mobi 下载] Web Application黑客手册:安全漏洞的发现与利用The Web Application Hacker's Handbook : Discovering and Exploiting Security Flaws mobi格式电子书
- [word 下载] Web Application黑客手册:安全漏洞的发现与利用The Web Application Hacker's Handbook : Discovering and Exploiting Security Flaws word格式电子书
- [kindle 下载] Web Application黑客手册:安全漏洞的发现与利用The Web Application Hacker's Handbook : Discovering and Exploiting Security Flaws kindle格式电子书
内容简介:
This book is a practical guide to discovering and exploiting security flaws in web applications. The authors explain each category of vulnerability using real-world examples, screen shots and code extracts. The book is extremely practical in focus, and describes in detail the steps involved in detecting and exploiting each kind of security weakness found within a variety of applications such as online banking, e-commerce and other web applications.
The topics covered include bypassing login mechanisms, injecting code, exploiting logic flaws and compromising other users. Because every web application is different, attacking them entails bringing to bear various general principles, techniques and experience in an imaginative way. The most successful hackers go beyond this, and find ways to automate their bespoke attacks. This handbook describes a proven methodology that combines the virtues of human intelligence and computerized brute force, often with devastating results.
The authors are professional penetration testers who have been involved in web application security for nearly a decade. They have presented training courses at the Black Hat security conferences throughout the world. Under the alias "PortSwigger", Dafydd developed the popular Burp Suite of web application hack tools.
书籍目录:
Acknowledgments
Introduction
Chapter 1 Web Application (In)security
Chapter 2 Core Defense Mechanisms
Chapter 3 Web Application Technologies
Chapter 4 Mapping the Application
Chapter 5 Bypassing Client-Side Controls
Chapter 6 Attacking Authentication
Chapter 7 Attacking Session Management
Chapter 8 Attacking Access Controls
Chapter 9 Injecting Code
Chapter 10 Exploiting Path Traversal
Chapter 11 Attacking Application Logic
Chapter 12 Attacking Other Users
Chapter 13 Automating Bespoke Attacks
Chapter 14 Exploiting Information Disclosure
Chapter 15 Attacking Compiled Applications
Chapter 16 Attacking Application Architecture
Chapter 17 Attacking the Web Server
Chapter 18 Finding Vulnerabilities in Source Code
Chapter 19 A Web Application Hacker's Toolkit
Chapter 20 A Web Application Hacker's Methodology
Index
作者介绍:
Dafydd Stuttard is a Principal Security Consultant at Next Generation Security Software, where he leads the web application security competency. He has nine years’ experience in security consulting and specializes in the penetration testing of web applic
出版社信息:
暂无出版社相关信息,正在全力查找中!
书籍摘录:
暂无相关书籍摘录,正在全力查找中!
在线阅读/听书/购买/PDF下载地址:
原文赏析:
应用程序必须假设所有输入的信息都是恶意的输入,并必须采取措施确保攻击者无法使用专门设计的输入破坏应用程序,
任何设计安全应用程序的开发人员必须基于这样一个假设:应用程序将成为意志坚定且经验丰富的攻击者的直接攻击目标。
如果可能,最好避免清除某些不良输入的做法,完全拒绝这种类型的输入。
这里是介绍
大多数Web应用程序使用三层相互关联的安全机制处理用户访问: 身份验证; 会话管理; 访问控制。
令牌是一个唯一的字符串,应用程序将其映射到会话中。当用户收到一个令牌时,浏览器会在随后的HTTP请求中将它返回给服务器,帮助应用程序将请求与该用户联系起来。虽然许多应用程序使用隐藏表单字段(hidden form field)或URL查询字符串(query string)传送会话令牌(session token),但HTTP cookie才是实现这一目的的常规方法。如果用户在一段时间内没有发出请求,会话将会自动终止,如图2-2所示。
会话管理机制中存在的漏洞主要分为两类: 会话令牌生成过程中的薄弱环节; 在整个生命周期过程中处理会话令牌的薄弱环节。
渗透测试步骤 (1)如果应用程序使用HTTP验证,它可能并不执行会话管理机制。使用前面描述的方法分析任何可能是令牌的数据的作用。 (2)如果应用程序使用无会话状态机制,通过客户端传送所有必要数据进行状态维护,有时我们可能很难检测出这种机制,但如果发现下列迹象,即可确定应用程序使用这种机制。 向客户端发布的可能令牌的数据相当长(如100 B或超过100 B)。 应用程序对每个请求做出响应,发布一个新的类似令牌的数据。 数据似乎被加密(因此无法辨别其结构)或包含签名(由有意义的结构和几个字节的无意义二进制数据组成)。 应用程序拒绝通过多个请求提交相同数据的做法。 (3)如果相关证据明确表明应用程序并未使用会话令牌管理状态,那么本章描述的任何攻击都不可能达到其目的。因此,最好着手去寻找其他严重的漏洞,如访问控制不完善或代码注入。
其它内容:
编辑推荐
"If you have an interest in web application security, I would highly recommend picking up a copy of this book, especially if you’re interested in being able to audit applications for vulnerabilities".
—Robert Wesley McGrew, McGrew Security
书籍介绍
This book is a practical guide to discovering and exploiting security flaws in web applications. The authors explain each category of vulnerability using real-world examples, screen shots and code extracts. The book is extremely practical in focus, and describes in detail the steps involved in detecting and exploiting each kind of security weakness found within a variety of applications such as online banking, e-commerce and other web applications.
The topics covered include bypassing login mechanisms, injecting code, exploiting logic flaws and compromising other users. Because every web application is different, attacking them entails bringing to bear various general principles, techniques and experience in an imaginative way. The most successful hackers go beyond this, and find ways to automate their bespoke attacks. This handbook describes a proven methodology that combines the virtues of human intelligence and computerized brute force, often with devastating results.
The authors are professional penetration testers who have been involved in web application security for nearly a decade. They have presented training courses at the Black Hat security conferences throughout the world. Under the alias "PortSwigger", Dafydd developed the popular Burp Suite of web application hack tools.
网站评分
书籍多样性:3分
书籍信息完全性:7分
网站更新速度:9分
使用便利性:8分
书籍清晰度:7分
书籍格式兼容性:9分
是否包含广告:8分
加载速度:7分
安全性:3分
稳定性:5分
搜索功能:5分
下载便捷性:5分
下载点评
- 无盗版(337+)
- 一星好评(258+)
- 内容完整(244+)
- 推荐购买(554+)
- 实惠(614+)
- 情节曲折(595+)
- 目录完整(62+)
- 博大精深(347+)
- 无颠倒(510+)
- 体验满分(339+)
- 体验还行(209+)
- 不亏(393+)
下载评价
- 网友 苍***如:
什么格式都有的呀。
- 网友 菱***兰:
特好。有好多书
- 网友 马***偲:
好 很好 非常好 无比的好 史上最好的
- 网友 益***琴:
好书都要花钱,如果要学习,建议买实体书;如果只是娱乐,看看这个网站,对你来说,是很好的选择。
- 网友 温***欣:
可以可以可以
- 网友 瞿***香:
非常好就是加载有点儿慢。
- 网友 宫***玉:
我说完了。
- 网友 相***儿:
你要的这里都能找到哦!!!
- 网友 芮***枫:
有点意思的网站,赞一个真心好好好 哈哈
- 网友 后***之:
强烈推荐!无论下载速度还是书籍内容都没话说 真的很良心!
- 网友 屠***好:
还行吧。
- 网友 养***秋:
我是新来的考古学家
- 网友 通***蕊:
五颗星、五颗星,大赞还觉得不错!~~
- 网友 常***翠:
哈哈哈哈哈哈
- 网友 师***怡:
说的好不如用的好,真心很好。越来越完美
喜欢"Web Application黑客手册:安全漏洞的发现与利用The Web Application Hacker's Handbook : Discovering and Exploiting Security Flaws"的人也看了
物理化学实验/普通高等教育“十三五”规划教材 mobi 下载 网盘 caj lrf pdf txt 阿里云
单味中药疗法-第5版( 货号:753499285) mobi 下载 网盘 caj lrf pdf txt 阿里云
国美之路大典·手工艺术卷·意匠之手 mobi 下载 网盘 caj lrf pdf txt 阿里云
***看图学女性家庭健身-视频版( 货号:711553623) mobi 下载 网盘 caj lrf pdf txt 阿里云
机械工程材料(万泉本) mobi 下载 网盘 caj lrf pdf txt 阿里云
父与子全集(看图讲故事彩色注音版共4册) mobi 下载 网盘 caj lrf pdf txt 阿里云
海德格尔哲学概论 mobi 下载 网盘 caj lrf pdf txt 阿里云
星座刑事(全12) mobi 下载 网盘 caj lrf pdf txt 阿里云
韩国公司法(上) mobi 下载 网盘 caj lrf pdf txt 阿里云
大学自主招生与奥数讲义(第二分册) mobi 下载 网盘 caj lrf pdf txt 阿里云
- 9787111462392 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 小河流过门前/中国儿童文学名家经典 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 全新正版图书 猫武士二部曲(1艾琳·亨特中国少年儿童出版社9787514849363 儿童小说长篇小说英国现代小学生青岛新华书店旗舰店 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 24年意林作文素材初中版杂志 2024全年订阅(1-12月)意林作文素材初中版(24本) mobi 下载 网盘 caj lrf pdf txt 阿里云
- 简易串珠饰品DIY mobi 下载 网盘 caj lrf pdf txt 阿里云
- 南水北调与汉江生态:区域生态经济协调发展与政策研究/余淑秀/浙江大学出版社 mobi 下载 网盘 caj lrf pdf txt 阿里云
- The Art of China mobi 下载 网盘 caj lrf pdf txt 阿里云
- 女孩,请你学会爱护自己:青春期生理心理成长自护指南 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 围棋初级教程习题集 mobi 下载 网盘 caj lrf pdf txt 阿里云
- MCSE 考前自测--Windows2000 Directory (精装) mobi 下载 网盘 caj lrf pdf txt 阿里云
书籍真实打分
故事情节:6分
人物塑造:5分
主题深度:7分
文字风格:5分
语言运用:4分
文笔流畅:8分
思想传递:7分
知识深度:9分
知识广度:3分
实用性:9分
章节划分:6分
结构布局:4分
新颖与独特:7分
情感共鸣:3分
引人入胜:3分
现实相关:9分
沉浸感:8分
事实准确性:9分
文化贡献:6分