مقاله انگلیسی رایگان در مورد تطبیق الگوی چندگانه برای برنامه های امنیتی شبکه – الزویر ۲۰۲۰
مشخصات مقاله | |
ترجمه عنوان مقاله | تطبیق الگوی چندگانه برای برنامه های امنیتی شبکه: افزایش سرعت از طریق بردارسازی |
عنوان انگلیسی مقاله | Multiple pattern matching for network security applications: Acceleration through vectorization |
انتشار | مقاله سال ۲۰۲۰ |
تعداد صفحات مقاله انگلیسی | ۱۹ صفحه |
هزینه | دانلود مقاله انگلیسی رایگان میباشد. |
پایگاه داده | نشریه الزویر |
نوع نگارش مقاله |
مقاله پژوهشی (Research Article) |
مقاله بیس | این مقاله بیس نمیباشد |
نمایه (index) | Scopus – Master Journals List – JCR |
نوع مقاله | ISI |
فرمت مقاله انگلیسی | |
ایمپکت فاکتور(IF) |
۲٫۲۵۰ در سال ۲۰۱۹ |
شاخص H_index | ۷۳ در سال ۲۰۲۰ |
شاخص SJR | ۰٫۴۱۷ در سال ۲۰۱۹ |
شناسه ISSN | ۰۷۴۳-۷۳۱۵ |
شاخص Quartile (چارک) | Q3 در سال ۲۰۱۹ |
مدل مفهومی | ندارد |
پرسشنامه | ندارد |
متغیر | ندارد |
رفرنس | دارد |
رشته های مرتبط | کامپیوتر |
گرایش های مرتبط | مهندسی الگوریتم ها و محاسبات، رایانش ابری، امنیت اطلاعات، معماری سیستم های کامپیوتری، مهندسی نرم افزار |
نوع ارائه مقاله |
ژورنال |
مجله | مجله رایانش موازی و توزیع شده – Journal Of Parallel And Distributed Computing |
دانشگاه | Chalmers University of Technology, Sweden |
کلمات کلیدی | تطبیق الگو، یک دستور چند داده، بردارسازی، جمع آوری |
کلمات کلیدی انگلیسی | Pattern matching، SIMD، Vectorization، Gather |
شناسه دیجیتال – doi |
https://doi.org/10.1016/j.jpdc.2019.10.011 |
کد محصول | E14281 |
وضعیت ترجمه مقاله | ترجمه آماده این مقاله موجود نمیباشد. میتوانید از طریق دکمه پایین سفارش دهید. |
دانلود رایگان مقاله | دانلود رایگان مقاله انگلیسی |
سفارش ترجمه این مقاله | سفارش ترجمه این مقاله |
فهرست مطالب مقاله: |
Abstract
۱- Introduction ۲- Background ۳- System model ۴- S-PATCH : a vectorizable version of DFC ۵- V-PATCH : Vectorized algorithmic design ۶- Performance model ۷- Evaluation ۸- Other related work ۹- Conclusion References |
بخشی از متن مقاله: |
Abstract As both new network attacks emerge and network traffic increases in volume, the need to perform network traffic inspection at high rates is ever increasing. The core of many security applications that inspect network traffic (such as Network Intrusion Detection) is pattern matching. At the same time, pattern matching is a major performance bottleneck for those applications: indeed, it is shown to contribute to more than 70% of the total running time of Intrusion Detection Systems. Although numerous efficient approaches to this problem have been proposed on custom hardware, it is challenging for pattern matching algorithms to gain benefit from the advances in commodity hardware. This becomes even more relevant with the adoption of Network Function Virtualization, that moves network services, such as Network Intrusion Detection, to the cloud, where scaling on commodity hardware is key for performance. Introduction Pattern matching is an essential building block for many security applications, such as antivirus programs or Network Intrusion Detection Systems (NIDS). In its core, pattern matching algorithms operate on two sets of input: (i) a predefined set of patterns and (ii) an incoming stream of data and attempt to detect if any of the patterns exist in the stream. In this work, we focus on the problem of fixed-string, multiple pattern matching, i.e. the patterns are string literals and, differently from single pattern matching [9,24], we are simultaneously tracking the presence of many patterns. In the context of Network Intrusion Detection Systems, the set of patterns are signatures of known malicious attacks (usually in the order of thousands) that the system aims to detect and the data stream is the reassembled stream of packets captured from the network interface. Motivation and Challenges. |