論文格式
    電氣工程 會計論文 金融論文 國際貿(mào)易 財務管理 人力資源 輕化工程 德語論文 工程管理 文化產(chǎn)業(yè)管理 信息計算科學 電氣自動化 歷史論文
    機械設計 電子通信 英語論文 物流論文 電子商務 法律論文 工商管理 旅游管理 市場營銷 電視制片管理 材料科學工程 漢語言文學 免費獲取
    制藥工程 生物工程 包裝工程 模具設計 測控專業(yè) 工業(yè)工程 教育管理 行政管理 應用物理 電子信息工程 服裝設計工程 教育技術(shù)學 論文降重
    通信工程 電子機電 印刷工程 土木工程 交通工程 食品科學 藝術(shù)設計 新聞專業(yè) 信息管理 給水排水工程 化學工程工藝 推廣賺積分 付款方式
    • 首頁 |
    • 畢業(yè)論文 |
    • 論文格式 |
    • 個人簡歷 |
    • 工作總結(jié) |
    • 入黨申請書 |
    • 求職信 |
    • 入團申請書 |
    • 工作計劃 |
    • 免費論文 |
    • 合作期刊 |
    • 論文同學網(wǎng) |
    搜索 高級搜索

    當前位置:論文格式網(wǎng) -> 畢業(yè)論文 -> 計算機論文
    畢業(yè)論文標題:

    一種基于特征匹配的拒絕服務攻擊檢測技術(shù)

     本文ID:LWGSW13645 價格:收費積分/100
    掃一掃 掃一掃
    本站會員可自行下載:下載地址 一種基于特征匹配的拒絕服務攻擊檢測技術(shù) (收費:1000 積分)  

    論文字數(shù):8599,頁數(shù):38  有開題報告,任務書   此份為英文寫作

    摘   要
     拒絕服務攻擊(Denial of Service, DoS)是指阻止合法用戶使用正常網(wǎng)絡服務的攻擊。近年來,拒絕服務攻擊事件層出不窮,常常中斷一些著名站點與服務器的正常服務,擾亂正常網(wǎng)絡行為,造成巨大經(jīng)濟損失。
     已有的基于統(tǒng)計的DoS攻擊檢測技術(shù)無法適應實時檢測要求;基于誤用的入侵檢測系統(tǒng)如Snort未考慮DoS攻擊的特點,無法達到最好的檢測性能。
     本文提出了一種基于特征匹配的DoS攻擊檢測技術(shù)。通過分析幾種典型的DoS攻擊例如 Smurf和SYN Flooding與幾種流行的DoS攻擊工具例如Tribal Flood Network和Trin00,提取DoS攻擊特征,并將這些特征表示成與Snort相兼容的形式。本文分析了兩種入侵檢測中的模式匹配算法:Boyer-Moore 算法與Aho-Corasick算法,并結(jié)合DoS攻擊的特點,提出了AC 算法的一種改進算法——反向AC算法,實驗表明反向AC算法有更高的匹配性能,但需消耗更多內(nèi)存。
     本文設計并實現(xiàn)了DoS攻擊檢測系統(tǒng)原型,并采用DARPA 2000入侵檢測評估數(shù)據(jù)集對系統(tǒng)進行評估。評估結(jié)果表明,原型達到98%的檢測率與20%的誤警率。本文的未來工作是提取更完整的DoS攻擊特征,降低原型的誤警率。

    關鍵詞: 入侵檢測;拒絕服務攻擊;特征匹配
    A DoS Attack Detection Technology Based on Signature Matching

    Abstract
     DoS attacks prevent legitimate user of network from using normal network services. In recent years, DoS attacks emerge in endlessly. They break off the services of some famous sites and network servers; interrupt the normal network behavior, result in great financial loss.
     Currently, Statistic based DoS attack detection approaches are not adopted for the real-time detection. Misuse based Intrusion Detection Systems such as Snort are designed without considering the characteristic of DoS attack, thus they can not achieve the best performances.
     This paper develops a DoS attack detection technology based on signature matching. By analyzing different kinds of DoS attacks such as Smurf and SYN Flooding, and various DoS attack tools such as Tribal Flood Network and Trin00, we extract the attack signatures of DoS. Then these signatures are expressed according to the forms compatible with Snort. We analyze two pattern matching algorithms: Boyer-Moore algorithm and Aho-Corasick algorithm. Then, combining with the characteristics of DoS attacks, we propose an improved algorithm on AC algorithm, named Reversed AC algorithm. Our experimental results show that the Reversed AC algorithm has better performance and consumes a bit more memories.
     We design and implement our system prototype and conduct some experiments with DARPA 2000 intrusion eva luation dataset. Our experimental results show that our prototype has detection rate with 98% and false alarm rate with 20%. Our future work is to extract more complete DoS attack signatures to decrease the false alarm rate of our prototype.

    Key Words: Intrusion Detection; Denial of Service; Signature Matching
    Contents
    1 Introduction 1
    1.1 Background 1
    1.2 Related Work 1
    1.3 Research Content and Scope 2
    1.4 Paper Structure 3
    2 DoS Attacks Overview 4
    2.1 Typical DoS Attacks 4
    2.1.1 ICMP Flooding 4
    2.1.2 TCP Flooding 4
    2.1.3 UDP Flooding 5
    2.1.4 Summary 5
    2.2 Popular DoS Attacks Tools 5
    2.2.1 Tribal Flood Network 6
    2.2.2 Trin00 6
    2.2.3 TFN2K 6
    2.2.4 Stacheldraht 6
    2.3 DoS Attack Signature Extracting 6
    2.3.1 Signature Construction 6
    2.3.2 Signature Extracting 8
    2.3.3 Signatures Expression 9
    3 Pattern Matching Algorithms 10
    3.1 Boyer-Moore Algorithm 10
    3.2 Aho-Corasick Algorithm 11
    3.3 Improvement of Aho-Corasick Algorithm 12
    3.4 Performance Analysis 15
    4 System Prototype Design and Implementation 17
    4.1 System Architecture 17
    4.2 System Prototype Design and Implementation 18
    4.2.1 Packet Capture 18
    4.2.2 Packet Decode 19
    4.2.3 Signature Engine 20
    4.2.4 Detection Engine 22
    4.2.5 Visual Alert 23
    5 Experimental eva luation 26
    5.1 Detection Rate 26
    5.2 False Alarm Rate 27
    5.3 Performance 28
    5.4 Summary 28
    6 Conclusion 30
    Acknowledgements 31
    References 32


    相關論文
    本論文在計算機論文欄目,由論文格式網(wǎng)整理,轉(zhuǎn)載請注明來源www.donglienglish.cn,更多論文,請點論文格式范文查看
    上一篇:基于Flash與XML技術(shù)的博客系統(tǒng)實現(xiàn) 下一篇:服務保障系統(tǒng)的設計與實現(xiàn)
    Tags:基于 特征 匹配 拒絕 服務 攻擊 檢測技術(shù) 【收藏】 【返回頂部】
    最新文章
    熱門文章
    計算機論文
    推薦文章

    本站部分文章來自網(wǎng)絡,如發(fā)現(xiàn)侵犯了您的權(quán)益,請聯(lián)系指出,本站及時確認刪除 E-mail:349991040@qq.com

    論文格式網(wǎng)(www.donglienglish.cn--論文格式網(wǎng)拼音首字母組合)提供計算機論文畢業(yè)論文格式,論文格式范文,畢業(yè)論文范文

    Copyright@ 2010-2018 LWGSW.com 論文格式網(wǎng) 版權(quán)所有 蜀ICP備09018832號

    感谢您访问我们的网站,您可能还对以下资源感兴趣:

    论文格式网:毕业论文格式范文