paper-with-me

홈 › Papers

Automated Vulnerability Detection in Source Code Using Deep Representation Learning

2026-02-26 · C. Seas, G. Fitzpatrick, J. A. Hamilton, M. C. Carlisle arxiv

Each year, software vulnerabilities are discovered, which pose significant risks of exploitation and system compromise. We present a convolutional neural network model that can successfully identify bugs in C code. We trained our model using two complementary datasets: a machine-labeled dataset created by Draper Labs using three static analyzers and the NIST SATE Juliet human-labeled dataset designed for testing static analyzers. In contrast with the work of Russell et al. on these datasets, we focus on C programs, enabling us to specialize and optimize our detection techniques for this language. After removing duplicates from the dataset, we tokenize the input into 91 token categories. The category values are converted to a binary vector to save memory. Our first convolution layer is chosen so that the entire encoding of the token is presented to the filter. We use two convolution and pooling layers followed by two fully connected layers to classify programs into either a common weakness enumeration category or as ``clean.'' We obtain higher recall than prior work by Russell et al. on this dataset when requiring high precision. We also demonstrate on a custom Linux kernel dataset that we are able to find real vulnerabilities in complex code with a low false-positive rate.

📄 PDF Abstract BibTeX arXiv:2602.23121

Code (0)

등록된 구현이 없습니다.

Tasks

Vulnerability DetectionRepresentation Learning

Similar Papers 제목 키워드 기반

Automated Vulnerability Detection in Source Code Using Deep Representation Learning

2018-07-11 · Rebecca L. Russell, Louis Kim, Lei H. Hamilton, Tomo Lazovich 외

Increasing numbers of software vulnerabilities are discovered every year whether they are reported publicly or discovered internally in proprietary code. These vulnerabilities can pose serious risk of exploit and result …

Representation LearningVulnerability Detection

Enhancing Software Vulnerability Detection Using Code Property Graphs and Convolutional Neural Networks

2025-03-23 · Amanpreet Singh Saimbhi

The increasing complexity of modern software systems has led to a rise in vulnerabilities that malicious actors can exploit. Traditional methods of vulnerability detection, such as static and dynamic analysis, have limit…

Vulnerability Detection

Literature review on vulnerability detection using NLP technology

2021-04-23 · Jiajie Wu

Vulnerability detection has always been the most important task in the field of software security. With the development of technology, in the face of massive source code, automated analysis and detection of vulnerabiliti…

Vulnerability Detection

Automated Vulnerability Detection Using Deep Learning Technique

2024-10-29 · Guan-Yan Yang, Yi-Heng Ko, Farn Wang, Kuo-Hui Yeh 외

Our work explores the utilization of deep learning, specifically leveraging the CodeBERT model, to enhance code security testing for Python applications by detecting SQL injection vulnerabilities. Unlike traditional secu…

Deep LearningVulnerability Detection

A Comparative Study of Static Code Analysis tools for Vulnerability Detection in C/C++ and JAVA Source Code

2020-10-20 · 2020 2020 10 · Prof. Arvinder Kaur, Ruchikaa Nayyar

Software security has become an essential component of software development process. It is necessary for an organisation to maintain software security in order to ensure integrity, authenticity and availability of the s…

Vulnerability Detection