- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Cyber-crime investigative techniques ;chapter3 Analysis key technology Principle of Common network attacks;3.1 crack passwords;3.1.2 Password attack conditions and technical methodology
The attacker to carry out attacks usually require a password following conditions:
High-performance computers;
Large-capacity on-line dictionary or other characters List; Known encryption algorithm;
The password readable document;
Password a higher probability included in the dictionary of the attack.; Generally speaking, password attacks include the following two steps: ? First step: access password file; ? Second step: using a variety of encryption algorithms dictionary table or other characters in the text encryption, and the results were compared with the password file.
Attacks technology commonly used passwords are: ?? Violence crack; ?? Speculation attack.;3.2 Sniffer;The principle of sniffer;Sniffer Programming;3.3 Network port Scanning;3.3.2 Technology analysis
1、Connectivity scanning
A: Client-SYN B:Client-SYN
Server-SYN/ACK Server-RST|ACK
Client-ACK Client-RST
;2、Semi-connected scanning
3、SYN scanning
4、ID head scanning ; 5、Concealed scanning
6、SYN|ACK scanning
7、FIN scanning; 8、ACK scanning
9、NULL scanning
10、XMAS scanning
To sum up, through port scanning technology are set up TCP format of the value of a particular field, and then returned to the mainframe under target information to judge whether the fracture open.;3.4 Buffer Overflow;What is buffer overflow;Overview
To put it simply, is to stack buffer overflow in the allocation of local data block written into the beyond its actual size distribution data, resulting in cross-border data, the results cover the original stack data.;
int main(int argc,char **argv)
{ char buf[10];
strcpy(buf,argv[1]);
printf(bufs 0x%8x\n,buf);
return 0;
}
;#include stdio.h
int main()
{
char name[8];
printf(your name:);
gets(name);
文档评论(0)