paper-with-me

Papers

VUDENC: Vulnerability Detection with Deep Learning on a Natural Codebase for Python

2022-01-20 · Laura Wartschinski, Yannic Noller, Thomas Vogel, Timo Kehrer, Lars Grunske

Context: Identifying potential vulnerable code is important to improve the security of our software systems. However, the manual detection of software vulnerabilities requires expert knowledge and is time-consuming, and must be supported by automated techniques. Objective: Such automated vulnerability detection techniques should achieve a high accuracy, point developers directly to the vulnerable code fragments, scale to real-world software, generalize across the boundaries of a specific software project, and require no or only moderate setup or configuration effort. Method: In this article, we present VUDENC (Vulnerability Detection with Deep Learning on a Natural Codebase), a deep learning-based vulnerability detection tool that automatically learns features of vulnerable code from a large and real-world Python codebase. VUDENC applies a word2vec model to identify semantically similar code tokens and to provide a vector representation. A network of long-short-term memory cells (LSTM) is then used to classify vulnerable code token sequences at a fine-grained level, highlight the specific areas in the source code that are likely to contain vulnerabilities, and provide confidence levels for its predictions. Results: To evaluate VUDENC, we used 1,009 vulnerability-fixing commits from different GitHub repositories that contain seven different types of vulnerabilities (SQL injection, XSS, Command injection, XSRF, Remote code execution, Path disclosure, Open redirect) for training. In the experimental evaluation, VUDENC achieves a recall of 78%-87%, a precision of 82%-96%, and an F1 score of 80%-90%. VUDENC's code, the datasets for the vulnerabilities, and the Python corpus for the word2vec model are available for reproduction. Conclusions: Our experimental results suggest...

📄 PDF Abstract BibTeX arXiv:2201.08441

Code (0)

등록된 구현이 없습니다.

Tasks

Vulnerability Detection

Similar Papers 제목 키워드 기반

Routing Ceilings Are Domain-Independent: Structural Prior Injection in Code Security Vulnerability Detection

2026-07-16 · Manuel Israel Cázares arxiv

Large language models (LLMs) exhibit a well-documented gap between latent capability and consistent activation: the router hypothesis posits that models possess the knowledge to solve a task but lack reliable internal ro…

Vulnerability DetectionMathematical Reasoning

SecureFixAgent: A Hybrid LLM Agent for Automated Python Static Vulnerability Repair

2025-09-18 · Jugal Gajjar, Kamalasankari Subramaniakuppusamy, Relsy Puthal, Kaustik Ranaware arxiv

Modern software development pipelines face growing challenges in securing large codebases with extensive dependencies. Static analysis tools like Bandit are effective at vulnerability detection but suffer from high false…

Vulnerability Detection

LProtector: An LLM-driven Vulnerability Detection System

2024-11-10 · Ze Sheng, Fenghua Wu, Xiangwu Zuo, Chao Li 외

This paper presents LProtector, an automated vulnerability detection system for C/C++ codebases driven by the large language model (LLM) GPT-4o and Retrieval-Augmented Generation (RAG). As software complexity grows, trad…

Binary ClassificationLanguage ModelingLanguage ModellingLarge Language Model+4

Distilling Lightweight Language Models for C/C++ Vulnerabilities

2025-10-08 · Zhiyuan Wei, Xiaoxuan Yang, Jing Sun, Zijian Zhang arxiv

The increasing complexity of modern software systems exacerbates the prevalence of security vulnerabilities, posing risks of severe breaches and substantial economic loss. Consequently, robust code vulnerability detectio…

Vulnerability DetectionKnowledge Distillation

Machine Learning Techniques for Python Source Code Vulnerability Detection

2024-04-15 · Talaya Farasat, Joachim Posegga

Software vulnerabilities are a fundamental reason for the prevalence of cyber attacks and their identification is a crucial yet challenging problem in cyber security. In this paper, we apply and compare different machine…

Vulnerability Detection