REVIEW 5 major objections 6 minor 4 cited by
Understanding the Supply Chain and Risks of Large Language Model Applications
T0 review · 5 major / 6 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read This paper introduces LLMSCBench, the first dataset covering the full supply chains of 3,859 LLM applications, and uses it to show that these chains are deeply nested and carry widespread known vulnerabilities.
desk verdict A substantial first-of-its-kind LLM supply chain benchmark effort, but the headline deep-dependency finding conflates descendants with dependencies and the dataset is not shipped. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central artifact is LLMSCBench, a benchmark dataset built by a four-step pipeline that scrapes Hugging Face applications, reads the linked_model field and recursive fine-tuning metadata to build model dependency chains, uses an LLM-assisted and human-confirmed extraction over application and model descriptions to identify datasets, and resolves requirements.txt libraries recursively to capture transitive library dependencies. Risk data is attached by keyword-mining GitHub Issues and Hugging Face Discussions for applications, models, and datasets (manually verified), and by matching libraries against public vulnerability databases such as OSV.dev. These dependency graphs are what let the paper measure depth, width, reuse, and risk propagation that component-level analyses would miss.
What would settle it
Re-running the dependency analysis on a sample of LLM applications collected from a different source, such as GitHub repositories or application stores that publish lockfiles, and comparing the share of applications with known-vulnerable dependencies: if that share is far below 49%, or if fine-tuning chains resolve to much smaller depths than 40, the paper's ecosystem-wide claims would not survive.
Extended reading notes
Core claim
The paper's central claim is that LLM applications sit inside a multi-component supply chain—base models, datasets, and libraries along with their transitive dependencies—and that this chain is the right unit of analysis for understanding security risk. LLMSCBench operationalizes that claim by collecting 3,859 LLM applications from Hugging Face, tracing base components to their dependent components (2,975 base models expanding to 109,211 models through fine-tuning chains, 2,406 base datasets with 68 dependency chains, and 6,089 base libraries expanding to 8,862 through recursive resolution), and attaching 1,555 validated risk issues: 50 application-level, 325 model-level, 18 dataset-level, and 1,229 library-level vulnerability records. The empirical analysis finds deep nesting—fine-tuning chains up to depth 40, with 90.1% of models traceable to just 161 root models—and reports that 49% of applications depend on libraries with known vulnerabilities, most of which have published fixes. The conclusion is that comprehensive supply chain analysis is needed, and that datasets like LLMSCBench are a prerequisite for it.
Load-bearing premise
That the snapshot of Hugging Face applications—especially the 2,008 of 3,859 apps that expose their linked models, plus libraries listed in requirements.txt—is representative enough that conclusions such as '49% of applications depend on vulnerable libraries' describe the wider ecosystem and not just what Hugging Face happens to make visible.
Editorial extensions
If this is right
- Risk assessment for LLM applications must include the full transitive dependency set, not just the model or dataset, because vulnerabilities propagate along these chains.
- Because roughly 70% of applications with vulnerable dependencies have fixes available, routine dependency updates could remove most currently-known library risk.
- Ecosystem risk is concentrated: with 90.1% of models traceable to 161 root models, compromising one root model or a few base libraries can cascade to a large fraction of applications.
- The scarcity of model- and dataset-level risk data (325 and 18 issues after manual cleaning) points to the need for CVE-style vulnerability databases for components other than software libraries.
- Compared with earlier datasets that cover only applications and sometimes their risks, LLMSCBench is positioned as the first spanning all four component types with documented interdependencies.
Reading between the lines
- Because the collection is centered on Hugging Face and depends on explicit linked_model fields and requirements.txt files, the reported percentages may undercount dependencies that platforms do not expose; the true ecosystem figures could differ in either direction.
- The same construction pipeline could be applied to other deployment channels, such as GitHub repositories, application stores, or enterprise registries, to test whether the depth and vulnerability patterns generalize beyond Hugging Face.
- The dataset invites a direct research program that the paper does not carry out: turning a vulnerable transitive library or a poisoned fine-tuned model into a concrete exploit against a downstream application.
- With only 18 dataset-level issues found, the paper's dataset-risk taxonomy is likely a floor; structured and standardized dataset issue reporting would probably reveal substantially more cases.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces LLMSCBench, a claimed first comprehensive dataset for LLM supply-chain security, built from 3,859 Hugging Face applications. It collects 109,211 models, 2,474 datasets, and 8,862 libraries (9,862 in the abstract), together with dependency relationships and 1,555 risk-related issues (50 application issues, 325 model issues, 18 dataset issues, and 1,229 library CVEs). The authors analyze dependency depth and width, popularity distributions, and risk-type prevalence, reporting findings such as 42.8% of base models being fine-tuned from other models, maximum model dependency depth 40, 90.1% of models tracing to 161 root models, and 49% of applications depending on libraries with known vulnerabilities. The paper concludes with stakeholder implications and a brief threat-to-validity discussion.
Significance. If the dataset and measurements were sound, LLMSCBench would be a useful resource for researchers studying LLM supply-chain security, filling a gap between model-focused security studies and system-level analyses. The empirical findings, especially the library CVE statistics and application dependency patterns, would provide a concrete starting point for further studies. The paper also ships no executable artifact, but the design of the collection pipeline is described in enough detail to be partially reproduced. However, the contribution's validity hinges on correct construction of the model dependency graph and on the internal consistency of the reported numbers; both are currently in question. The paper's strength is the breadth of its data collection across four component types, but its central claim of 'deeply nested dependencies' is not established by the current analysis.
major comments (5)
- [Section 3.1 Step 2; Figure 3; Section 4.2; Finding 5] The model dependency graph conflates dependencies with dependents. Section 1 defines dependent components as components that applications 'rely on,' i.e., upstream dependencies. However, Step 2 constructs fine-tuning chains by crawling 'in both directions,' including models fine-tuned from the base model. Figure 3 illustrates this with Model-A at the root and Model-B, Model-C, etc., as chains of descendants. Such descendant chains are not dependencies of the application; they are dependents of the base model. Consequently, the maximum depth of 40, the claim that 90.1% of models trace to 161 root models, and the headline statement that LLM applications exhibit 'deeply nested dependencies' may be artifacts of the crawl direction rather than properties of application supply chains. The paper would need to re-run the analysis using only upstream fine-tuning edges (i.e., models from which each model was fine-tuned) to support the dependency-depth claims.
- [Abstract; Section 3.1; Figure 2] The dataset artifact is not provided, and the main numeric claims are internally inconsistent. No repository, DOI, or downloadable artifact link is given for LLMSCBench, despite the dataset being the paper's primary contribution. The abstract reports 9,862 libraries while Section 3.1 Step 4 and the conclusion report 8,862. The abstract and body state 1,555 total risk issues, but the itemized counts (50 + 325 + 18 + 1,229) sum to 1,622, and Figure 2 shows 1,640. Without the artifact and with these inconsistencies, key quantitative claims such as the total number of dependent models or libraries cannot be verified.
- [Section 4.1, Figure 7, Finding 4] The claimed percentage of application risks in the top two categories is arithmetically wrong. The text states that 'most of the risks (73.84%) lie in Application Security Vulnerability and Application-Layer Privacy Violation,' but Figure 7 shows 17 + 17 = 34 issues out of 50, which is 68%, not 73.84%. This error appears in both the main text and Finding 4. The mismatch is load-bearing because the 73.84% figure is used to argue that security and privacy are the dominant application-level risk classes.
- [Section 3.2, Steps 1 and 2] The risk-issue extraction procedure risks circularity in the reported risk distributions. The 13 risk categories are first defined (Section 3.2 Step 1) and then used as the keyword set to crawl user discussions (Step 2). The observed prevalence of each risk type is therefore partly an artifact of the search vocabulary: categories with more distinct or more commonly used keywords may be overrepresented, and risks not matching any keyword may be missed. The paper does not report the keyword lists, or any sensitivity analysis varying the vocabulary, even though Section 5.2 claims sensitivity analyses were conducted. This is particularly relevant for the headline percentages in Section 4.1 (73.84% / 68%) and Section 4.2 (86.46% for three categories).
- [Section 5.2; Sections 4.2 and 4.4] The external-validity limitation is acknowledged but the paper's conclusions are phrased more strongly than the evidence supports. Section 5.2 notes that the dataset comes from a single Hugging Face snapshot on 18 July 2025, that only 2,008 of 3,859 applications have explicit linked_model information, that dependent models and datasets are included only when clearly documented, and that libraries are limited to those in requirements.txt files. Given these constraints, the claim that 49% of applications depend on vulnerable libraries, or that the model graph shows 90.1% concentration, is a property of the collected sample, not a demonstrated ecosystem-wide fact. The abstract and Section 4.4 state these as general findings about LLM applications. At minimum, the paper should temper the wording and discuss the likely direction of bias (e.g., popular models may be overrepresented in fine-tuning graphs).
minor comments (6)
- [Abstract vs. Section 3.1 Step 4] The number of libraries is inconsistent: the abstract says 9,862, while Sections 3.1 and 7 say 8,862. Please correct the typo.
- [Abstract; Section 3.1; Figure 2] The total risk-issue count is inconsistent: the abstract and body say 1,555, the itemized counts sum to 1,622, and Figure 2 shows 1,640. Please align these figures.
- [Figure 4] The caption says 'Number of models over months,' but the surrounding text in Section 4.1 discusses the development trend of applications. The caption should say 'applications.'
- [Section 4.4, Figure 16] The text says 'Figure 16 presents the top 20 applications ranked by the number of their contained critical vulnerabilities,' but the figure caption describes the top 20 libraries by CVE count. Please correct the reference or the caption.
- [Section 4.4, Risk analysis] The severity counts do not reconcile: 29 + 365 + 543 + 207 = 1,144, but the paper earlier states 1,229 unique CVE records. The missing 85 records are unexplained; please clarify how CVEs without CVSS scores are handled.
- [Section 5.1, dataset providers paragraph] The claim that '28% of the risks come from the root cause of Vulnerable HuggingFace Datasets Library' is not tied to the numbers reported in Section 4.3, and the derivation of 28% is unclear. Please provide the calculation or remove the claim.
Circularity Check
Dataset construction is largely self-contained, but the "deeply nested dependencies" headline is partly self-definitional because model dependency chains are crawled in both upstream and downstream directions.
-
self definitional
[Section 3.1 Step 2; Section 4.2 Model Analysis and Finding 5]
"Specifically, we develop an automated recursive crawler that traces fine-tuning relationships in both directions: (1) models fine-tuned from a given base model, and (2) models from which the base model was fine-tuned. ... Notably, the maximum depth of fine-tuning chains reaches up to 40, illustrating deeply nested dependencies."
The paper's own Section 1 defines dependent components as what components "rely on" (upstream). The crawler, however, includes downstream descendants (models fine-tuned from the base model) in the same "dependency chains." A descendant fine-tuned from a base model is not a dependency of an application that uses the base model; it is a dependent. The Section 4.2 depth/width statistics (max depth 40, 90.1% of models traced to 161 roots, 106,236 "dependent models") are therefore properties of the Hugging Face fine-tuning graph, not of LLM-application supply chains. The headline finding "deeply nested dependencies" is generated by the bidirectional crawl definition, so the claimed supply-chain result reduces to the construction rather than to application dependencies.
full rationale
LLMSCBench is an empirical dataset paper: percentages such as 49% of applications with vulnerable dependencies are obtained by matching collected requirements.txt libraries against CVE databases, not by fitting a parameter to a target, so no fitted-input-called-prediction circularity occurs. The 13 risk categories are taken from prior taxonomies and used as search keywords; this is a mild selection loop, but the manual verification step means the reported counts are not strictly identical to the keyword counts, so it is not a definitional equivalence. The paper's self-citations (Quan et al. 2022; Yu et al. 2024) are methodological and non-load-bearing. The one localized circular step is the model dependency graph: because "model fine-tuning chains" are traced in both upstream and downstream directions, the "deeply nested dependencies" finding in Section 4.2 is an artifact of that definition rather than a measured property of applications' upstream supply chains. Section 5.2 honestly documents coverage limitations (Hugging Face snapshot, clear platform information required), which are external-validity threats rather than circularity. Overall, the central dataset and library vulnerability analysis are independent; the circularity is partial and confined to the model-dependency interpretation.
Assumptions & free parameters
free parameters (4)
- Snapshot date and three-year inclusion window =
18 July 2025; 2022-2025
- 13 risk categories =
13 categories from Slattery et al. and Das et al.
- Crawl keyword set =
Not disclosed in the paper
- Manual review consensus protocol =
Not quantified
assumptions (5)
- domain assumption Hugging Face Spaces is a representative source of real-world LLM applications.
- domain assumption linked_model metadata and model pages accurately record which models an application uses and how models are fine-tuned from one another.
- domain assumption LLM-assisted extraction with human confirmation correctly recovers dataset usage from application and model descriptions.
- domain assumption Keyword search over GitHub Issues and Hugging Face Discussions, followed by manual review, finds a representative sample of true risk issues.
- domain assumption OSV/CVE records matched by package name and version accurately reflect exploitable vulnerabilities in the applications.
Cite this review
Pith. "Pith review of Understanding the Supply Chain and Risks of Large Language Model Applications." pith.science (2026). https://pith.science/paper/TUEFPBYW
@misc{pith2026250718105,
author = {Pith},
title = {Pith review of: Understanding the Supply Chain and Risks of Large Language Model Applications},
year = {2026},
howpublished = {\url{https://pith.science/paper/TUEFPBYW}},
note = {Machine review of arXiv:2507.18105}
}
read the original abstract
The rise of Large Language Models (LLMs) has led to the widespread deployment of LLM-based systems across diverse domains. As these systems proliferate, understanding the risks associated with their complex supply chains is increasingly important. LLM-based systems are not standalone as they rely on interconnected supply chains involving pretrained models, third-party libraries, datasets, and infrastructure. Yet, most risk assessments narrowly focus on model or data level, overlooking broader supply chain vulnerabilities. While recent studies have begun to address LLM supply chain risks, there remains a lack of benchmarks for systematic research. To address this gap, we introduce the first comprehensive dataset for analyzing and benchmarking LLM supply chain security. We collect 3,859 real-world LLM applications and perform interdependency analysis, identifying 109,211 models, 2,474 datasets, and 9,862 libraries. We extract model fine-tuning paths, dataset reuse, and library reliance, mapping the ecosystem's structure. To evaluate security, we gather 1,555 risk-related issues-50 for applications, 325 for models, 18 for datasets, and 1,229 for libraries from public vulnerability databases. Using this dataset, we empirically analyze component dependencies and risks. Our findings reveal deeply nested dependencies in LLM applications and significant vulnerabilities across the supply chain, underscoring the need for comprehensive security analysis. We conclude with practical recommendations to guide researchers and developers toward safer, more trustworthy LLM-enabled systems.
Figures
Figures from the paper (14 more)
Forward citations
Cited by 4 Pith papers
-
Towards Demystifying and Repairing LLM-in-the-Loop Vulnerabilities
Authors create LLMCVE dataset of LLM-in-the-loop vulnerabilities and demonstrate that agent-based repair methods achieve low success rates on them, particularly prompt injections at 28.57% Pass@1.
-
Towards Demystifying and Repairing LLM-in-the-Loop Vulnerabilities
LiL vulnerabilities are more severe than ecosystem and conventional bugs and drop LLM-based repair Pass@1 by ~10.8%, with three categories often at 0% success.
-
LLM Harms: A Taxonomy and Discussion
This paper proposes a taxonomy of LLM harms in five categories and suggests mitigation strategies plus a dynamic auditing system for responsible development.
-
LLM Harms: A Taxonomy and Discussion
Proposes a five-bucket taxonomy of LLM harms and calls for dynamic auditing, but the systematic review behind it is not reproducible and contains mismatched citations.
Reference graph
Works this paper leans on
-
[1]
Gpt in sheep’s clothing: The risk of customized gpts.arXiv preprint arXiv:2401.09075,
Sagiv Antebi, Noam Azulay, Edan Habler, Ben Ganon, Asaf Shabtai, and Yuval Elovici. Gpt in sheep’s clothing: The risk of customized gpts.arXiv preprint arXiv:2401.09075,
-
[5]
Risk taxonomy, mitigation, and assessment benchmarks of large language model systems
Tianyu Cui, Yanling Wang, Chuanpu Fu, Yong Xiao, Sijia Li, Xinhao Deng, Yunpeng Liu, Qinglin Zhang, Ziyi Qiu, Peiyang Li, et al. Risk taxonomy, mitigation, and assessment benchmarks of large language model systems. arXiv preprint arXiv:2401.05778,
-
[6]
Do membership inference attacks work on large language models?arXiv preprint arXiv:2402.07841,
Michael Duan, Anshuman Suri, Niloofar Mireshghallah, Sewon Min, Weijia Shi, Luke Zettlemoyer, Yulia Tsvetkov, Yejin Choi, David Evans, and Hannaneh Hajishirzi. Do membership inference attacks work on large language models?arXiv preprint arXiv:2402.07841,
- [7]
-
[8]
23 Understanding the Supply Chain and Risks of Large Language Model Applications Samuel Gehman, Suchin Gururangan, Maarten Sap, Yejin Choi, and Noah A Smith. Realtoxicityprompts: Evaluating neural toxic degeneration in language models.arXiv preprint arXiv:2009.11462,
arXiv 2009
-
[9]
Large language model supply chain: Open problems from the security perspective
Qiang Hu, Xiaofei Xie, Sen Chen, Lili Quan, and Lei Ma. Large language model supply chain: Open problems from the security perspective. InProceedings of the 34th ACM SIGSOFT International Symposium on Software Testing and Analysis, pages 169–173, 2025a. Yuke Hu, Zheng Li, Zhihao Liu, Yang Zhang, Zhan Qin, Kui Ren, and Chun Chen. Membership inference attac...
-
[10]
Pleak: Prompt leaking attacks against large language model applications
Bo Hui, Haolin Yuan, Neil Gong, Philippe Burlina, and Yinzhi Cao. Pleak: Prompt leaking attacks against large language model applications. InProceedings of the 2024 on ACM SIGSAC Conference on Computer and Communications Security, pages 3600–3614,
work page 2024
-
[11]
Exploring the robustness of decision- level through adversarial attacks on llm-based embodied models
Shuyuan Liu, Jiawei Chen, Shouwei Ruan, Hang Su, and Zhaoxia Yin. Exploring the robustness of decision- level through adversarial attacks on llm-based embodied models. InProceedings of the 32nd ACM Interna- tional Conference on Multimedia, pages 8120–8128, 2024a. Xiaogeng Liu, Zhiyuan Yu, Yizhe Zhang, Ning Zhang, and Chaowei Xiao. Automatic and universal ...
Show all 28 references
-
[12]
Prompt injection attacks and defenses in llm-integrated applications
24 Understanding the Supply Chain and Risks of Large Language Model Applications Yupei Liu, Yuqi Jia, Runpeng Geng, Jinyuan Jia, and Neil Zhenqiang Gong. Prompt injection attacks and defenses in llm-integrated applications. corr, abs/2310.12815, 2023i. doi: 10.48550.arXiv prep...
-
[13]
Hallucination detection and hallucination mitigation: An investigation.arXiv preprint arXiv:2401.08358,
Junliang Luo, Tianyu Li, Di Wu, Michael Jenkin, Steve Liu, and Gregory Dudek. Hallucination detection and hallucination mitigation: An investigation.arXiv preprint arXiv:2401.08358,
-
[14]
optimum habana
Apache License 2.0, Accessed: 2025-07-15. optimum habana. The transformers required for optimum-habana 1.16.0 has security issues.https: //github.com/huggingface/optimum-habana/issues/1912. Accessed: July
2025
-
[17]
Survey of vulnerabilities in large language models revealed by adversarial attacks.arXiv preprint arXiv:2310.10844,
Erfan Shayegani, Md Abdullah Al Mamun, Yu Fu, Pedram Zaree, Yue Dong, and Nael Abu-Ghazaleh. Survey of vulnerabilities in large language models revealed by adversarial attacks.arXiv preprint arXiv:2310.10844,
-
[18]
do anything now
Xinyue Shen, Zeyuan Chen, Michael Backes, Yun Shen, and Yang Zhang. " do anything now": Characterizing and evaluating in-the-wild jailbreak prompts on large language models. InProceedings of the 2024 on ACM SIGSAC Conference on Computer and Communications Security, pages 1671–1685,
2024
-
[19]
The ai risk repository: A comprehensive meta-review, database, and taxonomy of risks from artificial intelligence.arXiv preprint arXiv:2408.12622,
Peter Slattery, Alexander K Saeri, Emily AC Grundy, Jess Graham, Michael Noetel, Risto Uuk, James Dao, Soroush Pour, Stephen Casper, and Neil Thompson. The ai risk repository: A comprehensive meta-review, database, and taxonomy of risks from artificial intelligence.arXiv prepr...
-
[20]
Beyond memorization: Violating privacy via inference with large language models.arXiv preprint arXiv:2310.07298,
Robin Staab, Mark Vero, Mislav Balunović, and Martin Vechev. Beyond memorization: Violating privacy via inference with large language models.arXiv preprint arXiv:2310.07298,
-
[21]
Gpt store mining and analysis.arXiv preprint arXiv:2405.10210,
Dongxun Su, Yanjie Zhao, Xinyi Hou, Shenao Wang, and Haoyu Wang. Gpt store mining and analysis.arXiv preprint arXiv:2405.10210,
-
[22]
Opening a pandora’s box: things you should know in the era of custom gpts.arXiv preprint arXiv:2401.00905,
25 Understanding the Supply Chain and Risks of Large Language Model Applications Guanhong Tao, Siyuan Cheng, Zhuo Zhang, Junmin Zhu, Guangyu Shen, and Xiangyu Zhang. Opening a pandora’s box: things you should know in the era of custom gpts.arXiv preprint arXiv:2401.00905,
-
[23]
Large language model supply chain: A research agenda
Shenao Wang, Yanjie Zhao, Xinyi Hou, and Haoyu Wang. Large language model supply chain: A research agenda. ACM Transactions on Software Engineering and Methodology, 34(5):1–46, 2025a. Shenao Wang, Yanjie Zhao, Zhao Liu, Quanchen Zou, and Haoyu Wang. Sok: Understanding vulnerab...
-
[24]
A new era in llm security: Exploring security concerns in real-world llm-based systems.arXiv preprint arXiv:2402.18649,
Fangzhou Wu, Ning Zhang, Somesh Jha, Patrick McDaniel, and Chaowei Xiao. A new era in llm security: Exploring security concerns in real-world llm-based systems.arXiv preprint arXiv:2402.18649,
-
[25]
Llm app squatting and cloning.arXiv preprint arXiv:2411.07518,
Yinglin Xie, Xinyi Hou, Yanjie Zhao, Kai Chen, and Haoyu Wang. Llm app squatting and cloning.arXiv preprint arXiv:2411.07518,
-
[26]
A comprehensive study of jailbreak attack versus defense for large language models.arXiv preprint arXiv:2402.13457,
Zihao Xu, Yi Liu, Gelei Deng, Yuekang Li, and Stjepan Picek. A comprehensive study of jailbreak attack versus defense for large language models.arXiv preprint arXiv:2402.13457,
-
[27]
Gpts window shopping: An analysis of the landscape of custom chatgpt models.arXiv preprint arXiv:2405.10547, 2024a
Benjamin Zi Hao Zhao, Muhammad Ikram, and Mohamed Ali Kâafar. Gpts window shopping: An analysis of the landscape of custom chatgpt models.arXiv preprint arXiv:2405.10547, 2024a. Shuai Zhao, Meihuizi Jia, Zhongliang Guo, Leilei Gan, Xiaoyu Xu, Xiaobao Wu, Jie Fu, Yichao Feng, F...
-
[28]
Universal and transferable adversarial attacks on aligned language models.arXiv preprint arXiv:2307.15043,
Andy Zou, Zifan Wang, Nicholas Carlini, Milad Nasr, J Zico Kolter, and Matt Fredrikson. Universal and transferable adversarial attacks on aligned language models.arXiv preprint arXiv:2307.15043,
-
[2020]
Rodrigo Pedro, Daniel Castro, Paulo Carreira, and Nuno Santos
doi: 10.1109/SP40000.2020.00095. Rodrigo Pedro, Daniel Castro, Paulo Carreira, and Nuno Santos. From prompt injections to sql injection attacks: How protected is your llm-integrated web application?arXiv preprint arXiv:2308.01990,
2020
-
[2022]
Are llms correctly integrated into software systems?arXiv preprint arXiv:2407.05138,
Yuchen Shao, Yuheng Huang, Jiawei Shen, Lei Ma, Ting Su, and Chengcheng Wan. Are llms correctly integrated into software systems?arXiv preprint arXiv:2407.05138,
-
[2023]
On the opportunities and risks of foundation models.arXiv preprint arXiv:2108.07258,
Rishi Bommasani, Drew A Hudson, Ehsan Adeli, Russ Altman, Simran Arora, Sydney von Arx, Michael S Bernstein, Jeannette Bohg, Antoine Bosselut, Emma Brunskill, et al. On the opportunities and risks of foundation models.arXiv preprint arXiv:2108.07258,
-
[2024]
Purple llama cyberseceval: A secure coding benchmark for language models.arXiv preprint arXiv:2312.04724,
Manish Bhatt, Sahana Chennabasappa, Cyrus Nikolaidis, Shengye Wan, Ivan Evtimov, Dominik Gabi, Daniel Song, Faizan Ahmad, Cornelius Aschermann, Lorenzo Fontana, et al. Purple llama cyberseceval: A secure coding benchmark for language models.arXiv preprint arXiv:2312.04724,
-
[2025]
Are aligned neural networks adversarially aligned?, 2023.URL https://arxiv
Nicholas Carlini, Milad Nasr, Christopher A Choquette-Choo, Matthew Jagielski, Irena Gao, Anas Awadalla, Pang Wei Koh, Daphne Ippolito, Katherine Lee, Florian Tramer, et al. Are aligned neural networks adversarially aligned?, 2023.URL https://arxiv. org/abs/2306.15447,
2023 arXiv
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.