txt2stix 0.0.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. txt2stix/__init__.py +33 -0
  2. txt2stix/ai_extractor/__init__.py +15 -0
  3. txt2stix/ai_extractor/anthropic.py +12 -0
  4. txt2stix/ai_extractor/base.py +87 -0
  5. txt2stix/ai_extractor/deepseek.py +19 -0
  6. txt2stix/ai_extractor/gemini.py +18 -0
  7. txt2stix/ai_extractor/openai.py +15 -0
  8. txt2stix/ai_extractor/openrouter.py +20 -0
  9. txt2stix/ai_extractor/prompts.py +164 -0
  10. txt2stix/ai_extractor/utils.py +85 -0
  11. txt2stix/attack_flow.py +101 -0
  12. txt2stix/bundler.py +428 -0
  13. txt2stix/common.py +23 -0
  14. txt2stix/extractions.py +59 -0
  15. txt2stix/includes/__init__.py +0 -0
  16. txt2stix/includes/extractions/ai/config.yaml +1023 -0
  17. txt2stix/includes/extractions/lookup/config.yaml +393 -0
  18. txt2stix/includes/extractions/pattern/config.yaml +609 -0
  19. txt2stix/includes/helpers/mimetype_filename_extension_list.csv +936 -0
  20. txt2stix/includes/helpers/stix_relationship_types.txt +41 -0
  21. txt2stix/includes/helpers/tlds.txt +1446 -0
  22. txt2stix/includes/helpers/windows_registry_key_prefix.txt +12 -0
  23. txt2stix/includes/lookups/_README.md +11 -0
  24. txt2stix/includes/lookups/_generate_lookups.py +247 -0
  25. txt2stix/includes/lookups/attack_pattern.txt +1 -0
  26. txt2stix/includes/lookups/campaign.txt +1 -0
  27. txt2stix/includes/lookups/country_iso3166_alpha2.txt +249 -0
  28. txt2stix/includes/lookups/course_of_action.txt +1 -0
  29. txt2stix/includes/lookups/disarm_id_v1_5.txt +345 -0
  30. txt2stix/includes/lookups/disarm_name_v1_5.txt +347 -0
  31. txt2stix/includes/lookups/extensions.txt +78 -0
  32. txt2stix/includes/lookups/identity.txt +1 -0
  33. txt2stix/includes/lookups/infrastructure.txt +1 -0
  34. txt2stix/includes/lookups/intrusion_set.txt +1 -0
  35. txt2stix/includes/lookups/malware.txt +2 -0
  36. txt2stix/includes/lookups/mitre_atlas_id_v4_5_2.txt +116 -0
  37. txt2stix/includes/lookups/mitre_atlas_name_v4_5_2.txt +117 -0
  38. txt2stix/includes/lookups/mitre_attack_enterprise_aliases_v16_0.txt +1502 -0
  39. txt2stix/includes/lookups/mitre_attack_enterprise_id_v16_0.txt +1656 -0
  40. txt2stix/includes/lookups/mitre_attack_enterprise_name_v16_0.txt +1765 -0
  41. txt2stix/includes/lookups/mitre_attack_ics_aliases_v16_0.txt +141 -0
  42. txt2stix/includes/lookups/mitre_attack_ics_id_v16_0.txt +254 -0
  43. txt2stix/includes/lookups/mitre_attack_ics_name_v16_0.txt +293 -0
  44. txt2stix/includes/lookups/mitre_attack_mobile_aliases_v16_0.txt +159 -0
  45. txt2stix/includes/lookups/mitre_attack_mobile_id_v16_0.txt +277 -0
  46. txt2stix/includes/lookups/mitre_attack_mobile_name_v16_0.txt +296 -0
  47. txt2stix/includes/lookups/mitre_capec_id_v3_9.txt +559 -0
  48. txt2stix/includes/lookups/mitre_capec_name_v3_9.txt +560 -0
  49. txt2stix/includes/lookups/mitre_cwe_id_v4_15.txt +939 -0
  50. txt2stix/includes/lookups/mitre_cwe_name_v4_15.txt +939 -0
  51. txt2stix/includes/lookups/threat_actor.txt +1 -0
  52. txt2stix/includes/lookups/tld.txt +1422 -0
  53. txt2stix/includes/lookups/tool.txt +1 -0
  54. txt2stix/includes/tests/test_cases.yaml +695 -0
  55. txt2stix/indicator.py +860 -0
  56. txt2stix/lookups.py +68 -0
  57. txt2stix/pattern/__init__.py +13 -0
  58. txt2stix/pattern/extractors/__init__.py +0 -0
  59. txt2stix/pattern/extractors/base_extractor.py +167 -0
  60. txt2stix/pattern/extractors/card/README.md +34 -0
  61. txt2stix/pattern/extractors/card/__init__.py +15 -0
  62. txt2stix/pattern/extractors/card/amex_card_extractor.py +52 -0
  63. txt2stix/pattern/extractors/card/diners_card_extractor.py +47 -0
  64. txt2stix/pattern/extractors/card/discover_card_extractor.py +48 -0
  65. txt2stix/pattern/extractors/card/jcb_card_extractor.py +43 -0
  66. txt2stix/pattern/extractors/card/master_card_extractor.py +63 -0
  67. txt2stix/pattern/extractors/card/union_card_extractor.py +38 -0
  68. txt2stix/pattern/extractors/card/visa_card_extractor.py +46 -0
  69. txt2stix/pattern/extractors/crypto/__init__.py +3 -0
  70. txt2stix/pattern/extractors/crypto/btc_extractor.py +38 -0
  71. txt2stix/pattern/extractors/directory/__init__.py +10 -0
  72. txt2stix/pattern/extractors/directory/unix_directory_extractor.py +40 -0
  73. txt2stix/pattern/extractors/directory/unix_file_path_extractor.py +42 -0
  74. txt2stix/pattern/extractors/directory/windows_directory_path_extractor.py +47 -0
  75. txt2stix/pattern/extractors/directory/windows_file_path_extractor.py +42 -0
  76. txt2stix/pattern/extractors/domain/__init__.py +8 -0
  77. txt2stix/pattern/extractors/domain/domain_extractor.py +39 -0
  78. txt2stix/pattern/extractors/domain/hostname_extractor.py +36 -0
  79. txt2stix/pattern/extractors/domain/sub_domain_extractor.py +49 -0
  80. txt2stix/pattern/extractors/hashes/__init__.py +16 -0
  81. txt2stix/pattern/extractors/hashes/md5_extractor.py +16 -0
  82. txt2stix/pattern/extractors/hashes/sha1_extractor.py +14 -0
  83. txt2stix/pattern/extractors/hashes/sha224_extractor.py +18 -0
  84. txt2stix/pattern/extractors/hashes/sha2_256_exactor.py +14 -0
  85. txt2stix/pattern/extractors/hashes/sha2_512_exactor.py +13 -0
  86. txt2stix/pattern/extractors/hashes/sha3_256_exactor.py +15 -0
  87. txt2stix/pattern/extractors/hashes/sha3_512_exactor.py +16 -0
  88. txt2stix/pattern/extractors/helper.py +64 -0
  89. txt2stix/pattern/extractors/ip/__init__.py +14 -0
  90. txt2stix/pattern/extractors/ip/ipv4_cidr_extractor.py +49 -0
  91. txt2stix/pattern/extractors/ip/ipv4_extractor.py +18 -0
  92. txt2stix/pattern/extractors/ip/ipv4_port_extractor.py +42 -0
  93. txt2stix/pattern/extractors/ip/ipv6_cidr_extractor.py +18 -0
  94. txt2stix/pattern/extractors/ip/ipv6_extractor.py +16 -0
  95. txt2stix/pattern/extractors/ip/ipv6_port_extractor.py +46 -0
  96. txt2stix/pattern/extractors/others/__init__.py +22 -0
  97. txt2stix/pattern/extractors/others/asn_extractor.py +14 -0
  98. txt2stix/pattern/extractors/others/cpe_extractor.py +29 -0
  99. txt2stix/pattern/extractors/others/cve_extractor.py +14 -0
  100. txt2stix/pattern/extractors/others/email_extractor.py +21 -0
  101. txt2stix/pattern/extractors/others/filename_extractor.py +17 -0
  102. txt2stix/pattern/extractors/others/iban_extractor.py +15 -0
  103. txt2stix/pattern/extractors/others/mac_address_extractor.py +13 -0
  104. txt2stix/pattern/extractors/others/phonenumber_extractor.py +41 -0
  105. txt2stix/pattern/extractors/others/user_agent_extractor.py +20 -0
  106. txt2stix/pattern/extractors/others/windows_registry_key_extractor.py +18 -0
  107. txt2stix/pattern/extractors/url/__init__.py +7 -0
  108. txt2stix/pattern/extractors/url/url_extractor.py +22 -0
  109. txt2stix/pattern/extractors/url/url_file_extractor.py +21 -0
  110. txt2stix/pattern/extractors/url/url_path_extractor.py +74 -0
  111. txt2stix/retriever.py +126 -0
  112. txt2stix/stix.py +1 -0
  113. txt2stix/txt2stix.py +336 -0
  114. txt2stix/utils.py +86 -0
  115. txt2stix-0.0.4.dist-info/METADATA +190 -0
  116. txt2stix-0.0.4.dist-info/RECORD +119 -0
  117. txt2stix-0.0.4.dist-info/WHEEL +4 -0
  118. txt2stix-0.0.4.dist-info/entry_points.txt +2 -0
  119. txt2stix-0.0.4.dist-info/licenses/LICENSE +202 -0
@@ -0,0 +1,939 @@
1
+ Sensitive Cookie Without 'HttpOnly' Flag
2
+ Insufficient Visual Distinction of Homoglyphs Presented to User
3
+ Struts: Duplicate Validation Forms
4
+ Improper Restriction of Rendered UI Layers or Frames
5
+ Use of Web Link to Untrusted Target with window.opener Access
6
+ Incomplete Comparison with Missing Factors
7
+ Comparison of Incompatible Types
8
+ Comparison Using Wrong Factors
9
+ Struts: Incomplete validate() Method Definition
10
+ Processor Optimization Removal or Modification of Security-critical Code
11
+ Insecure Automated Optimizations
12
+ Automated Recognition Mechanism with Inadequate Detection or Handling of Adversarial Input Perturbations
13
+ Struts: Form Bean Does Not Extend Validation Class
14
+ Use of Redundant Code
15
+ Static Member Data Element outside of a Singleton Class Element
16
+ Data Element Aggregating an Excessively Large Number of Non-Primitive Elements
17
+ Architecture with Number of Horizontal Layers Outside of Expected Range
18
+ Parent Class with a Virtual Destructor and a Child Class without a Virtual Destructor
19
+ Creation of Immutable Text Using String Concatenation
20
+ Modules with Circular Dependencies
21
+ Invokable Control Element with Large Number of Outward Calls
22
+ Excessive Data Query Operations in a Large Data Table
23
+ Struts: Form Field Without Validator
24
+ Excessive Platform Resource Consumption within a Loop
25
+ Initialization with Hard-Coded Network Resource Configuration Data
26
+ Excessive Use of Hard-Coded Literals in Initialization
27
+ Missing Documentation for Design
28
+ Invocation of a Control Element at an Unnecessarily Deep Horizontal Layer
29
+ Multiple Inheritance from Concrete Classes
30
+ Invokable Control Element with Variadic Parameters
31
+ Data Access Operations Outside of Expected Data Manager Component
32
+ Invokable Control Element in Multi-Thread Context with non-Final Static Storable or Member Element
33
+ Insufficient Technical Documentation
34
+ Struts: Plug-in Framework not in Use
35
+ Excessive Number of Inefficient Server-Side Data Accesses
36
+ Insufficient Encapsulation
37
+ Parent Class with References to Child Class
38
+ Creation of Class Instance within a Static Code Block
39
+ Invokable Control Element with Signature Containing an Excessive Number of Parameters
40
+ Runtime Resource Management Control Element in a Component Built to Run on Application Servers
41
+ Missing Serialization Control Element
42
+ Excessive Execution of Sequential Searches of Data Resource
43
+ Inconsistency Between Implementation and Documented Design
44
+ Empty Exception Block
45
+ Struts: Unused Validation Form
46
+ Serializable Data Element Containing non-Serializable Item Elements
47
+ Empty Code Block
48
+ Data Resource Access without Use of Connection Pooling
49
+ Non-SQL Invokable Control Element with Excessive Number of Data Resource Accesses
50
+ Class with Excessively Deep Inheritance
51
+ Unconditional Control Flow Transfer outside of Switch Block
52
+ Insufficient Adherence to Expected Conventions
53
+ Floating Point Comparison with Incorrect Operator
54
+ Inappropriate Source Code Style or Formatting
55
+ Parent Class without Virtual Destructor Method
56
+ Struts: Unvalidated Action Form
57
+ Source Code File with Excessive Number of Lines of Code
58
+ Class Instance Self Destruction Control Element
59
+ Data Access from Outside Expected Data Manager Component
60
+ Invokable Control Element with Excessive File or Data Access Operations
61
+ Invokable Control Element with Excessive Volume of Commented-out Code
62
+ Class with Excessive Number of Child Classes
63
+ Class with Virtual Method without a Virtual Destructor
64
+ Synchronous Access of Remote Resource without Timeout
65
+ Large Data Table with Excessive Number of Indices
66
+ Struts: Validator Turned Off
67
+ Method Containing Access of a Member Element from Another Class
68
+ Use of Object without Invoking Destructor Method
69
+ Use of Same Invokable Control Element in Multiple Architectural Layers
70
+ Excessively Complex Data Representation
71
+ Excessive Index Range Scan for a Data Resource
72
+ Loop Condition Value Update within the Loop
73
+ Singleton Class Instance Creation without Proper Locking or Synchronization
74
+ Persistent Storable Data Element without Associated Comparison Control Element
75
+ Data Element containing Pointer Item without Proper Copy Control Element
76
+ Inconsistent Naming Conventions for Identifiers
77
+ ASP.NET Misconfiguration: Creating Debug Binary
78
+ Struts: Validator Without Form Field
79
+ Insufficient Isolation of System-Dependent Functions
80
+ Reliance on Runtime Component in Generated Code
81
+ Reliance on Machine-Dependent Data Representation
82
+ Use of Platform-Dependent Third Party Components
83
+ Use of Unmaintained Third Party Components
84
+ Insufficient Encapsulation of Machine-Dependent Functionality
85
+ Insufficient Use of Symbolic Constants
86
+ Insufficient Isolation of Symbolic Constant Definitions
87
+ Excessive Reliance on Global Variables
88
+ Use of Same Variable for Multiple Purposes
89
+ Direct Use of Unsafe JNI
90
+ Incomplete Design Documentation
91
+ Incomplete I/O Documentation
92
+ Incomplete Documentation of Program Execution
93
+ Inappropriate Comment Style
94
+ Inappropriate Whitespace Style
95
+ Source Code Element without Standard Prologue
96
+ Inaccurate Comments
97
+ Callable with Insufficient Behavioral Summary
98
+ Insufficient Documentation of Error Handling Techniques
99
+ Excessive Use of Unconditional Branching
100
+ Missing XML Validation
101
+ Excessive Code Complexity
102
+ Excessive McCabe Cyclomatic Complexity
103
+ Excessive Halstead Complexity
104
+ Excessive Use of Self-Modifying Code
105
+ Excessively Deep Nesting
106
+ Excessive Attack Surface
107
+ Declaration of Variable with Unnecessarily Wide Scope
108
+ Compilation with Insufficient Warnings or Errors
109
+ Improper Neutralization of CRLF Sequences in HTTP Headers ('HTTP Request/Response Splitting')
110
+ Process Control
111
+ Misinterpretation of Input
112
+ Improper Encoding or Escaping of Output
113
+ Irrelevant Code
114
+ Improper Output Neutralization for Logs
115
+ Improper Use of Validation Framework
116
+ ASP.NET Misconfiguration: Improper Model Validation
117
+ Inefficient CPU Computation
118
+ Use of Prohibited Code
119
+ Incorrect Access of Indexable Resource ('Range Error')
120
+ Initialization of a Resource with an Insecure Default
121
+ Improper Isolation of Shared Resources on System-on-a-Chip (SoC)
122
+ Improper Restriction of Operations within the Bounds of a Memory Buffer
123
+ DMA Device Enabled Too Early in Boot Phase
124
+ On-Chip Debug and Test Interface With Improper Access Control
125
+ Improper Identifier for IP Block used in System-On-Chip (SOC)
126
+ Power-On of Untrusted Execution Core Before Enabling Fabric Access Control
127
+ ASP.NET Misconfiguration: Missing Custom Error Page
128
+ Buffer Copy without Checking Size of Input ('Classic Buffer Overflow')
129
+ Generation of Weak Initialization Vector (IV)
130
+ Failure to Disable Reserved Bits
131
+ Stack-based Buffer Overflow
132
+ Heap-based Buffer Overflow
133
+ Insufficient Granularity of Access Control
134
+ Incorrect Register Defaults or Module Parameters
135
+ Insufficient Granularity of Address Regions Protected by Register Locks
136
+ Race Condition for Write-Once Attributes
137
+ Improper Restriction of Write-Once Bit Fields
138
+ Creation of Emergent Resource
139
+ Write-what-where Condition
140
+ Exposure of Sensitive Information Through Metadata
141
+ Improper Prevention of Lock Bit Modification
142
+ Improper Lock Behavior After Power State Transition
143
+ Security-Sensitive Hardware Controls with Missing Lock Bit Protection
144
+ Hardware Internal or Debug Modes Allow Override of Locks
145
+ Incorrect Use of Autoboxing and Unboxing for Performance Critical Operations
146
+ Improper Neutralization of Formula Elements in a CSV File
147
+ Improper Zeroization of Hardware Register
148
+ Buffer Underwrite ('Buffer Underflow')
149
+ Use of a Cryptographic Primitive with a Risky Implementation
150
+ Use of Predictable Algorithm in Random Number Generator
151
+ Inclusion of Undocumented Features or Chicken Bits
152
+ Sensitive Non-Volatile Information Not Protected During Debug
153
+ Internal Asset Exposed to Unsafe Debug Access Level or State
154
+ Improper Finite State Machines (FSMs) in Hardware Logic
155
+ Improper Write Handling in Limited-write Non-Volatile Memories
156
+ Improper Protection Against Voltage and Clock Glitches
157
+ Semiconductor Defects in Hardware Logic with Security-Sensitive Implications
158
+ Application-Level Admin Tool with Inconsistent View of Underlying Operating System
159
+ Out-of-bounds Read
160
+ Improper Preservation of Consistency Between Independent Representations of Shared State
161
+ Mirrored Regions with Different Values
162
+ CPU Hardware Not Configured to Support Exclusivity of Write and Execute Operations
163
+ Incorrect Selection of Fuse Values
164
+ Incorrect Comparison Logic Granularity
165
+ Comparison Logic is Vulnerable to Power Side-Channel Attacks
166
+ Improper Restriction of Software Interfaces to Hardware Features
167
+ Improper Access Control Applied to Mirrored or Aliased Memory Regions
168
+ Exposure of Sensitive System Information Due to Uncleared Debug Information
169
+ Improper Restriction of Security Token Assignment
170
+ Buffer Over-read
171
+ Improper Handling of Overlap Between Protected Memory Ranges
172
+ Improper Handling of Single Event Upsets
173
+ Improper Access Control for Register Interface
174
+ Improper Physical Access Control
175
+ Hardware Logic with Insecure De-Synchronization between Control and Data Channels
176
+ Unintended Reentrant Invocation of Non-reentrant Code Via Nested Calls
177
+ Improper Scrubbing of Sensitive Data from Decommissioned Device
178
+ Policy Uses Obsolete Encoding
179
+ Policy Privileges are not Assigned Consistently Between Control and Data Agents
180
+ Product Released in Non-Release Configuration
181
+ Buffer Under-read
182
+ Generation of Incorrect Security Tokens
183
+ Uninitialized Value on Reset for Registers Holding Security Settings
184
+ Sensitive Information Uncleared Before Debug/Power State Transition
185
+ Device Unlock Credential Sharing
186
+ Improper Access Control for Volatile Memory Containing Boot Code
187
+ Sensitive Cookie with Improper SameSite Attribute
188
+ Hardware Child Block Incorrectly Connected to Parent System
189
+ Firmware Not Updateable
190
+ Missing Protection Against Hardware Reverse Engineering Using Integrated Circuit (IC) Imaging Techniques
191
+ Cryptographic Operations are run Before Supporting Units are Ready
192
+ Wrap-around Error
193
+ Access Control Check Implemented After Asset is Accessed
194
+ Sequence of Processor Instructions Leads to Unexpected Behavior
195
+ Assumed-Immutable Data is Stored in Writable Memory
196
+ Mutable Attestation or Measurement Reporting Data
197
+ Improper Validation of Specified Quantity in Input
198
+ Improper Validation of Specified Index, Position, or Offset in Input
199
+ Improper Validation of Syntactic Correctness of Input
200
+ Improper Validation of Specified Type of Input
201
+ Improper Validation of Consistency within Input
202
+ Improper Validation of Unsafe Equivalence in Input
203
+ Improper Validation of Array Index
204
+ Incorrect Decoding of Security Identifiers
205
+ Public Key Re-Use for Signing both Debug and Production Code
206
+ Incorrect Conversion of Security Identifiers
207
+ Missing Source Correlation of Multiple Independent Data
208
+ Insecure Security Identifier Mechanism
209
+ Debug Messages Revealing Unnecessary Information
210
+ Incorrect Chaining or Granularity of Debug Components
211
+ Unprotected Confidential Information on Device is Accessible by OSAT Vendors
212
+ Hardware Logic Contains Race Conditions
213
+ Missing Protection Mechanism for Alternate Hardware Interface
214
+ ASP.NET Misconfiguration: Password in Configuration File
215
+ Improper Handling of Length Parameter Inconsistency
216
+ Improper Protection of Physical Side Channels
217
+ Insufficient or Incomplete Data Removal within Hardware Component
218
+ Missing Source Identifier in Entity Transactions on a System-On-Chip (SOC)
219
+ Non-Transparent Sharing of Microarchitectural Resources
220
+ Improperly Preserved Integrity of Hardware Configuration State During a Power Save/Restore Operation
221
+ Incorrect Calculation of Buffer Size
222
+ Missing Ability to Patch ROM Code
223
+ Improper Translation of Security Attributes by Fabric Bridge
224
+ Missing Protection for Mirrored Regions in On-Chip Fabric Firewall
225
+ Hardware Allows Activation of Test or Debug Logic at Runtime
226
+ Missing Write Protection for Parametric Data Values
227
+ Improper Setting of Bus Controlling Capability in Fabric End-point
228
+ Fabric-Address Map Allows Programming of Unwarranted Overlaps of Protected and Unprotected Ranges
229
+ Improper Access Control in Fabric Bridge
230
+ Missing Support for Security Features in On-chip Fabrics or Buses
231
+ Improper Protection against Electromagnetic Fault Injection (EM-FI)
232
+ Improper Protection for Outbound Error Messages and Alert Signals
233
+ Improperly Controlled Modification of Object Prototype Attributes ('Prototype Pollution')
234
+ Use of Blocking Code in Single-threaded, Non-blocking Context
235
+ Improper Management of Sensitive Trace Data
236
+ Improperly Controlled Sequential Memory Allocation
237
+ Missing Immutable Root of Trust in Hardware
238
+ Binding to an Unrestricted IP Address
239
+ Security Version Number Mutable to Older Versions
240
+ Reliance on Component That is Not Updateable
241
+ Remanent Data Readable after Memory Erase
242
+ Improper Isolation of Shared Resources in Network On Chip (NoC)
243
+ Improper Handling of Faults that Lead to Instruction Skips
244
+ Inefficient Regular Expression Complexity
245
+ Unauthorized Error Injection Can Degrade Hardware Redundancy
246
+ Incorrect Bitwise Shift of Integer
247
+ Improper Neutralization of Special Elements Used in a Template Engine
248
+ Improper Protections Against Hardware Overheating
249
+ Insufficient Precision or Accuracy of a Real Number
250
+ Use of Externally-Controlled Format String
251
+ Multiple Releases of Same Resource or Handle
252
+ Information Exposure through Microarchitectural State after Transient Execution
253
+ Incorrect Calculation of Multi-Byte String Length
254
+ Improper Handling of Hardware Behavior in Exceptionally Cold Environments
255
+ Reliance on Insufficiently Trustworthy Component
256
+ Improper Neutralization of Special Elements
257
+ Improper Handling of Physical or Environmental Conditions
258
+ Missing Origin Validation in WebSockets
259
+ Insecure Operation on Windows Junction / Mount Point
260
+ Incorrect Parsing of Numbers with Different Radices
261
+ Weak Authentication
262
+ Use of Weak Credentials
263
+ Use of Default Credentials
264
+ Use of Default Password
265
+ Use of Default Cryptographic Key
266
+ Dependency on Vulnerable Third-Party Component
267
+ Compiler Removal of Code to Clear Buffers
268
+ Improper Neutralization of Delimiters
269
+ Improper Neutralization of Parameter/Argument Delimiters
270
+ Incorrect Initialization of Resource
271
+ Improper Neutralization of Value Delimiters
272
+ Exposure of Sensitive Information during Transient Execution
273
+ Exposure of Sensitive Information in Shared Microarchitectural Structures during Transient Execution
274
+ Exposure of Sensitive Information caused by Incorrect Data Forwarding during Transient Execution
275
+ Exposure of Sensitive Information caused by Shared Microarchitectural Predictor State that Influences Transient Execution
276
+ Improper Validation of Generative AI Output
277
+ Improper Neutralization of Record Delimiters
278
+ Improper Neutralization of Line Delimiters
279
+ Improper Neutralization of Section Delimiters
280
+ Improper Neutralization of Expression/Command Delimiters
281
+ Improper Neutralization of Input Terminators
282
+ Improper Neutralization of Input Leaders
283
+ Improper Neutralization of Quoting Syntax
284
+ External Control of System or Configuration Setting
285
+ Improper Neutralization of Escape, Meta, or Control Sequences
286
+ Improper Neutralization of Comment Delimiters
287
+ Improper Neutralization of Macro Symbols
288
+ Improper Neutralization of Substitution Characters
289
+ Improper Neutralization of Variable Name Delimiters
290
+ Improper Neutralization of Wildcards or Matching Symbols
291
+ Improper Neutralization of Whitespace
292
+ Failure to Sanitize Paired Delimiters
293
+ Improper Neutralization of Null Byte or NUL Character
294
+ Improper Handling of Invalid Use of Special Elements
295
+ Improper Neutralization of Leading Special Elements
296
+ Improper Neutralization of Multiple Leading Special Elements
297
+ Improper Neutralization of Trailing Special Elements
298
+ Improper Neutralization of Multiple Trailing Special Elements
299
+ Improper Neutralization of Internal Special Elements
300
+ Improper Neutralization of Multiple Internal Special Elements
301
+ Improper Handling of Missing Special Element
302
+ Improper Handling of Additional Special Element
303
+ Improper Handling of Inconsistent Special Elements
304
+ Improper Null Termination
305
+ Encoding Error
306
+ Improper Handling of Alternate Encoding
307
+ Double Decoding of the Same Data
308
+ Improper Handling of Mixed Encoding
309
+ Improper Handling of Unicode Encoding
310
+ Improper Handling of URL Encoding (Hex Encoding)
311
+ Improper Handling of Case Sensitivity
312
+ Incorrect Behavior Order: Early Validation
313
+ Incorrect Behavior Order: Validate Before Canonicalize
314
+ Incorrect Behavior Order: Validate Before Filter
315
+ Collapse of Data into Unsafe Value
316
+ Permissive List of Allowed Inputs
317
+ Incomplete List of Disallowed Inputs
318
+ Incorrect Regular Expression
319
+ Overly Restrictive Regular Expression
320
+ Partial String Comparison
321
+ Reliance on Data/Memory Layout
322
+ Integer Overflow or Wraparound
323
+ Integer Underflow (Wrap or Wraparound)
324
+ Integer Coercion Error
325
+ Off-by-one Error
326
+ Unexpected Sign Extension
327
+ Signed to Unsigned Conversion Error
328
+ Unsigned to Signed Conversion Error
329
+ Numeric Truncation Error
330
+ Use of Incorrect Byte Ordering
331
+ Improper Input Validation
332
+ Exposure of Sensitive Information to an Unauthorized Actor
333
+ Insertion of Sensitive Information Into Sent Data
334
+ Exposure of Sensitive Information Through Data Queries
335
+ Observable Discrepancy
336
+ Observable Response Discrepancy
337
+ Observable Behavioral Discrepancy
338
+ Observable Internal Behavioral Discrepancy
339
+ Observable Behavioral Discrepancy With Equivalent Products
340
+ Observable Timing Discrepancy
341
+ Generation of Error Message Containing Sensitive Information
342
+ Self-generated Error Message Containing Sensitive Information
343
+ Externally-Generated Error Message Containing Sensitive Information
344
+ Improper Removal of Sensitive Information Before Storage or Transfer
345
+ Exposure of Sensitive Information Due to Incompatible Policies
346
+ Invocation of Process Using Visible Sensitive Information
347
+ Insertion of Sensitive Information Into Debugging Code
348
+ Storage of File with Sensitive Data Under Web Root
349
+ Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal')
350
+ Storage of File With Sensitive Data Under FTP Root
351
+ Information Loss or Omission
352
+ Truncation of Security-relevant Information
353
+ Omission of Security-relevant Information
354
+ Obscured Security-relevant Information by Alternate Name
355
+ Sensitive Information in Resource Not Removed Before Reuse
356
+ Improper Handling of Syntactically Invalid Structure
357
+ Improper Handling of Values
358
+ Relative Path Traversal
359
+ Improper Handling of Missing Values
360
+ Improper Handling of Extra Values
361
+ Improper Handling of Undefined Values
362
+ Improper Handling of Parameters
363
+ Failure to Handle Missing Parameter
364
+ Improper Handling of Extra Parameters
365
+ Improper Handling of Undefined Parameters
366
+ Improper Handling of Structural Elements
367
+ Improper Handling of Incomplete Structural Elements
368
+ Failure to Handle Incomplete Element
369
+ Path Traversal: '../filedir'
370
+ Improper Handling of Inconsistent Structural Elements
371
+ Improper Handling of Unexpected Data Type
372
+ Use of Inherently Dangerous Function
373
+ Creation of chroot Jail Without Changing Working Directory
374
+ Improper Clearing of Heap Memory Before Release ('Heap Inspection')
375
+ J2EE Bad Practices: Direct Management of Connections
376
+ J2EE Bad Practices: Direct Use of Sockets
377
+ Uncaught Exception
378
+ Path Traversal: '/../filedir'
379
+ Execution with Unnecessary Privileges
380
+ Unchecked Return Value
381
+ Incorrect Check of Function Return Value
382
+ Plaintext Storage of a Password
383
+ Storing Passwords in a Recoverable Format
384
+ Empty Password in Configuration File
385
+ Use of Hard-coded Password
386
+ Path Traversal: '/dir/../filename'
387
+ Password in Configuration File
388
+ Weak Encoding for Password
389
+ Not Using Password Aging
390
+ Password Aging with Long Expiration
391
+ Incorrect Privilege Assignment
392
+ Privilege Defined With Unsafe Actions
393
+ Privilege Chaining
394
+ Improper Privilege Management
395
+ Path Traversal: 'dir/../../filename'
396
+ Privilege Context Switching Error
397
+ Privilege Dropping / Lowering Errors
398
+ Least Privilege Violation
399
+ Improper Check for Dropped Privileges
400
+ Improper Handling of Insufficient Privileges
401
+ Incorrect Default Permissions
402
+ Insecure Inherited Permissions
403
+ Insecure Preserved Inherited Permissions
404
+ Incorrect Execution-Assigned Permissions
405
+ Path Traversal: '..\filedir'
406
+ Improper Handling of Insufficient Permissions or Privileges
407
+ Improper Preservation of Permissions
408
+ Improper Ownership Management
409
+ Unverified Ownership
410
+ Improper Access Control
411
+ Improper Authorization
412
+ Incorrect User Management
413
+ Improper Authentication
414
+ Authentication Bypass Using an Alternate Path or Channel
415
+ Authentication Bypass by Alternate Name
416
+ Path Traversal: '\..\filename'
417
+ Authentication Bypass by Spoofing
418
+ Reliance on IP Address for Authentication
419
+ Using Referer Field for Authentication
420
+ Authentication Bypass by Capture-replay
421
+ Improper Certificate Validation
422
+ Improper Following of a Certificate's Chain of Trust
423
+ Improper Validation of Certificate with Host Mismatch
424
+ Improper Validation of Certificate Expiration
425
+ Improper Check for Certificate Revocation
426
+ Path Traversal: '\dir\..\filename'
427
+ Channel Accessible by Non-Endpoint
428
+ Reflection Attack in an Authentication Protocol
429
+ Authentication Bypass by Assumed-Immutable Data
430
+ Incorrect Implementation of Authentication Algorithm
431
+ Missing Critical Step in Authentication
432
+ Authentication Bypass by Primary Weakness
433
+ Missing Authentication for Critical Function
434
+ Improper Restriction of Excessive Authentication Attempts
435
+ Use of Single-factor Authentication
436
+ Use of Password System for Primary Authentication
437
+ Path Traversal: 'dir\..\..\filename'
438
+ Missing Encryption of Sensitive Data
439
+ Cleartext Storage of Sensitive Information
440
+ Cleartext Storage in a File or on Disk
441
+ Cleartext Storage in the Registry
442
+ Cleartext Storage of Sensitive Information in a Cookie
443
+ Cleartext Storage of Sensitive Information in Memory
444
+ Cleartext Storage of Sensitive Information in GUI
445
+ Cleartext Storage of Sensitive Information in Executable
446
+ Cleartext Transmission of Sensitive Information
447
+ Path Traversal: '...' (Triple Dot)
448
+ Use of Hard-coded Cryptographic Key
449
+ Key Exchange without Entity Authentication
450
+ Reusing a Nonce, Key Pair in Encryption
451
+ Use of a Key Past its Expiration Date
452
+ Missing Cryptographic Step
453
+ Inadequate Encryption Strength
454
+ Use of a Broken or Risky Cryptographic Algorithm
455
+ Use of Weak Hash
456
+ Generation of Predictable IV with CBC Mode
457
+ Path Traversal: '....' (Multiple Dot)
458
+ Use of Insufficiently Random Values
459
+ Insufficient Entropy
460
+ Insufficient Entropy in PRNG
461
+ Improper Handling of Insufficient Entropy in TRNG
462
+ Small Space of Random Values
463
+ Incorrect Usage of Seeds in Pseudo-Random Number Generator (PRNG)
464
+ Same Seed in Pseudo-Random Number Generator (PRNG)
465
+ Predictable Seed in Pseudo-Random Number Generator (PRNG)
466
+ Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG)
467
+ Small Seed Space in PRNG
468
+ Path Traversal: '....//'
469
+ Generation of Predictable Numbers or Identifiers
470
+ Predictable from Observable State
471
+ Predictable Exact Value from Previous Values
472
+ Predictable Value Range from Previous Values
473
+ Use of Invariant Value in Dynamically Changing Context
474
+ Insufficient Verification of Data Authenticity
475
+ Origin Validation Error
476
+ Improper Verification of Cryptographic Signature
477
+ Use of Less Trusted Source
478
+ Acceptance of Extraneous Untrusted Data With Trusted Data
479
+ Path Traversal: '.../...//'
480
+ Reliance on Reverse DNS Resolution for a Security-Critical Action
481
+ Insufficient Type Distinction
482
+ Cross-Site Request Forgery (CSRF)
483
+ Missing Support for Integrity Check
484
+ Improper Validation of Integrity Check Value
485
+ Product UI does not Warn User of Unsafe Actions
486
+ Insufficient UI Warning of Dangerous Operations
487
+ Improperly Implemented Security Check for Standard
488
+ Exposure of Private Personal Information to an Unauthorized Actor
489
+ Absolute Path Traversal
490
+ Trust of System Event Data
491
+ Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition')
492
+ Race Condition Enabling Link Following
493
+ Signal Handler Race Condition
494
+ Race Condition within a Thread
495
+ Time-of-check Time-of-use (TOCTOU) Race Condition
496
+ Context Switching Race Condition
497
+ Divide By Zero
498
+ Path Traversal: '/absolute/pathname/here'
499
+ Missing Check for Certificate Revocation after Initial Check
500
+ Incomplete Internal State Distinction
501
+ Passing Mutable Objects to an Untrusted Method
502
+ Returning a Mutable Object to an Untrusted Caller
503
+ Insecure Temporary File
504
+ Creation of Temporary File With Insecure Permissions
505
+ Creation of Temporary File in Directory with Insecure Permissions
506
+ Path Traversal: '\absolute\pathname\here'
507
+ J2EE Bad Practices: Use of System.exit()
508
+ J2EE Bad Practices: Direct Use of Threads
509
+ Session Fixation
510
+ Covert Timing Channel
511
+ Symbolic Name not Mapping to Correct Object
512
+ Path Traversal: 'C:dirname'
513
+ Detection of Error Condition Without Action
514
+ Unchecked Error Condition
515
+ Missing Report of Error Condition
516
+ Return of Wrong Status Code
517
+ Unexpected Status Code or Return Value
518
+ Use of NullPointerException Catch to Detect NULL Pointer Dereference
519
+ Declaration of Catch for Generic Exception
520
+ Declaration of Throws for Generic Exception
521
+ Path Traversal: '\\UNC\share\name\' (Windows UNC Share)
522
+ Uncontrolled Resource Consumption
523
+ Missing Release of Memory after Effective Lifetime
524
+ Transmission of Private Resources into a New Sphere ('Resource Leak')
525
+ Exposure of File Descriptor to Unintended Control Sphere ('File Descriptor Leak')
526
+ Improper Resource Shutdown or Release
527
+ Asymmetric Resource Consumption (Amplification)
528
+ Insufficient Control of Network Message Volume (Network Amplification)
529
+ Inefficient Algorithmic Complexity
530
+ Incorrect Behavior Order: Early Amplification
531
+ Improper Handling of Highly Compressed Data (Data Amplification)
532
+ Improper Resolution of Path Equivalence
533
+ Insufficient Resource Pool
534
+ Unrestricted Externally Accessible Lock
535
+ Improper Resource Locking
536
+ Missing Lock Check
537
+ Double Free
538
+ Use After Free
539
+ Unprotected Primary Channel
540
+ Path Equivalence: 'filename.' (Trailing Dot)
541
+ Unprotected Alternate Channel
542
+ Race Condition During Access to Alternate Channel
543
+ Unprotected Windows Messaging Channel ('Shatter')
544
+ Improper Protection of Alternate Path
545
+ Direct Request ('Forced Browsing')
546
+ Untrusted Search Path
547
+ Uncontrolled Search Path Element
548
+ Unquoted Search Path or Element
549
+ Path Equivalence: 'filename....' (Multiple Trailing Dot)
550
+ Deployment of Wrong Handler
551
+ Missing Handler
552
+ Dangerous Signal Handler not Disabled During Sensitive Operations
553
+ Unparsed Raw Web Content Delivery
554
+ Unrestricted Upload of File with Dangerous Type
555
+ Improper Interaction Between Multiple Correctly-Behaving Entities
556
+ Interpretation Conflict
557
+ Incomplete Model of Endpoint Features
558
+ Behavioral Change in New Version or Environment
559
+ Path Equivalence: 'file.name' (Internal Dot)
560
+ Expected Behavior Violation
561
+ Unintended Proxy or Intermediary ('Confused Deputy')
562
+ Inconsistent Interpretation of HTTP Requests ('HTTP Request/Response Smuggling')
563
+ UI Discrepancy for Security Feature
564
+ Unimplemented or Unsupported Feature in UI
565
+ Obsolete Feature in UI
566
+ The UI Performs the Wrong Action
567
+ Path Equivalence: 'file...name' (Multiple Internal Dot)
568
+ Multiple Interpretations of UI Input
569
+ User Interface (UI) Misrepresentation of Critical Information
570
+ Insecure Default Variable Initialization
571
+ External Initialization of Trusted Variables or Data Stores
572
+ Non-exit on Failed Initialization
573
+ Missing Initialization of a Variable
574
+ Use of Uninitialized Variable
575
+ Incomplete Cleanup
576
+ Path Equivalence: 'filename ' (Trailing Space)
577
+ Improper Cleanup on Thrown Exception
578
+ Duplicate Key in Associative List (Alist)
579
+ Deletion of Data Structure Sentinel
580
+ Addition of Data Structure Sentinel
581
+ Return of Pointer Value Outside of Expected Range
582
+ Use of sizeof() on a Pointer Type
583
+ Incorrect Pointer Scaling
584
+ Use of Pointer Subtraction to Determine Size
585
+ Path Equivalence: ' filename' (Leading Space)
586
+ Use of Externally-Controlled Input to Select Classes or Code ('Unsafe Reflection')
587
+ Modification of Assumed-Immutable Data (MAID)
588
+ External Control of Assumed-Immutable Web Parameter
589
+ PHP External Variable Modification
590
+ Use of Function with Inconsistent Implementations
591
+ Undefined Behavior for Input to API
592
+ NULL Pointer Dereference
593
+ Use of Obsolete Function
594
+ Missing Default Case in Multiple Condition Expression
595
+ Signal Handler Use of a Non-reentrant Function
596
+ Path Equivalence: 'file name' (Internal Whitespace)
597
+ Use of Incorrect Operator
598
+ Assigning instead of Comparing
599
+ Comparing instead of Assigning
600
+ Incorrect Block Delimitation
601
+ Omitted Break Statement in Switch
602
+ Comparison of Classes by Name
603
+ Reliance on Package-level Scope
604
+ Exposure of Data Element to Wrong Session
605
+ Active Debug Code
606
+ Path Equivalence: 'filename/' (Trailing Slash)
607
+ Public cloneable() Method Without Final ('Object Hijack')
608
+ Use of Inner Class Containing Sensitive Data
609
+ Critical Public Variable Without Final Modifier
610
+ Download of Code Without Integrity Check
611
+ Private Data Structure Returned From A Public Method
612
+ Public Data Assigned to Private Array-Typed Field
613
+ Exposure of Sensitive System Information to an Unauthorized Control Sphere
614
+ Cloneable Class Containing Sensitive Information
615
+ Serializable Class Containing Sensitive Data
616
+ J2EE Misconfiguration: Data Transmission Without Encryption
617
+ Path Equivalence: '//multiple/leading/slash'
618
+ Public Static Field Not Marked Final
619
+ Trust Boundary Violation
620
+ Deserialization of Untrusted Data
621
+ Embedded Malicious Code
622
+ Trojan Horse
623
+ Non-Replicating Malicious Code
624
+ Replicating Malicious Code (Virus or Worm)
625
+ Path Equivalence: '/multiple//internal/slash'
626
+ Trapdoor
627
+ Logic/Time Bomb
628
+ Spyware
629
+ Covert Channel
630
+ Covert Storage Channel
631
+ Path Equivalence: '/multiple/trailing/slash//'
632
+ .NET Misconfiguration: Use of Impersonation
633
+ Weak Password Requirements
634
+ Insufficiently Protected Credentials
635
+ Unprotected Transport of Credentials
636
+ Use of Cache Containing Sensitive Information
637
+ Use of Web Browser Cache Containing Sensitive Information
638
+ Cleartext Storage of Sensitive Information in an Environment Variable
639
+ Exposure of Version-Control Repository to an Unauthorized Control Sphere
640
+ Exposure of Core Dump File to an Unauthorized Control Sphere
641
+ Exposure of Access Control List Files to an Unauthorized Control Sphere
642
+ Path Equivalence: '\multiple\\internal\backslash'
643
+ Exposure of Backup File to an Unauthorized Control Sphere
644
+ Inclusion of Sensitive Information in Test Code
645
+ Insertion of Sensitive Information into Log File
646
+ Exposure of Information Through Shell Error Message
647
+ Servlet Runtime Error Message Containing Sensitive Information
648
+ Java Runtime Error Message Containing Sensitive Information
649
+ Insertion of Sensitive Information into Externally-Accessible File or Directory
650
+ Use of Persistent Cookies Containing Sensitive Information
651
+ Path Equivalence: 'filedir\' (Trailing Backslash)
652
+ Inclusion of Sensitive Information in Source Code
653
+ Inclusion of Sensitive Information in an Include File
654
+ Use of Singleton Pattern Without Synchronization in a Multithreaded Context
655
+ Missing Standardized Error Handling Mechanism
656
+ Suspicious Comment
657
+ Use of Hard-coded, Security-relevant Constants
658
+ Exposure of Information Through Directory Listing
659
+ Missing Password Field Masking
660
+ Path Equivalence: '/./' (Single Dot Directory)
661
+ Server-generated Error Message Containing Sensitive Information
662
+ Incorrect Behavior Order: Authorization Before Parsing and Canonicalization
663
+ Files or Directories Accessible to External Parties
664
+ Command Shell in Externally Accessible Directory
665
+ ASP.NET Misconfiguration: Not Using Input Validation Framework
666
+ J2EE Misconfiguration: Plaintext Password in Configuration File
667
+ ASP.NET Misconfiguration: Use of Identity Impersonation
668
+ Use of getlogin() in Multithreaded Application
669
+ Path Equivalence: 'filedir*' (Wildcard)
670
+ Use of umask() with chmod-style Argument
671
+ Dead Code
672
+ Return of Stack Variable Address
673
+ Assignment to Variable without Use
674
+ SQL Injection: Hibernate
675
+ Reliance on Cookies without Validation and Integrity Checking
676
+ Authorization Bypass Through User-Controlled SQL Primary Key
677
+ Unsynchronized Access to Shared Data in a Multithreaded Context
678
+ finalize() Method Without super.finalize()
679
+ Path Equivalence: 'fakedir/../realdir/filename'
680
+ Expression is Always False
681
+ Expression is Always True
682
+ Call to Thread run() instead of start()
683
+ Improper Following of Specification by Caller
684
+ EJB Bad Practices: Use of Synchronization Primitives
685
+ EJB Bad Practices: Use of AWT Swing
686
+ EJB Bad Practices: Use of Java I/O
687
+ EJB Bad Practices: Use of Sockets
688
+ EJB Bad Practices: Use of Class Loader
689
+ J2EE Bad Practices: Non-serializable Object Stored in Session
690
+ Path Equivalence: Windows 8.3 Filename
691
+ clone() Method Without super.clone()
692
+ Object Model Violation: Just One of Equals and Hashcode Defined
693
+ Array Declared Public, Final, and Static
694
+ finalize() Method Declared Public
695
+ Return Inside Finally Block
696
+ Empty Synchronized Block
697
+ Explicit Call to Finalize()
698
+ Assignment of a Fixed Address to a Pointer
699
+ Attempt to Access Child of a Non-structure Pointer
700
+ Call to Non-ubiquitous API
701
+ Improper Link Resolution Before File Access ('Link Following')
702
+ Free of Memory not on the Heap
703
+ Sensitive Data Storage in Improperly Locked Memory
704
+ Authentication Bypass: OpenSSL CTX Object Modified after SSL Objects are Created
705
+ J2EE Framework: Saving Unserializable Objects to Disk
706
+ Comparison of Object References Instead of Object Contents
707
+ Use of Wrong Operator in String Comparison
708
+ Use of GET Request Method With Sensitive Query Strings
709
+ Missing Validation of OpenSSL Certificate
710
+ J2EE Misconfiguration: Insufficient Session-ID Length
711
+ Uncaught Exception in Servlet
712
+ URL Redirection to Untrusted Site ('Open Redirect')
713
+ Client-Side Enforcement of Server-Side Security
714
+ Use of Client-Side Authentication
715
+ Multiple Binds to the Same Port
716
+ Unchecked Input for Loop Condition
717
+ Public Static Final Field References Mutable Object
718
+ Struts: Non-private Field in ActionForm Class
719
+ Double-Checked Locking
720
+ UNIX Symbolic Link (Symlink) Following
721
+ Externally Controlled Reference to a Resource in Another Sphere
722
+ Improper Restriction of XML External Entity Reference
723
+ Improper Authorization of Index Containing Sensitive Information
724
+ Insufficient Session Expiration
725
+ Sensitive Cookie in HTTPS Session Without 'Secure' Attribute
726
+ Inclusion of Sensitive Information in Source Code Comments
727
+ Incomplete Identification of Uploaded File Variables (PHP)
728
+ Reachable Assertion
729
+ Exposed Unsafe ActiveX Method
730
+ Dangling Database Cursor ('Cursor Injection')
731
+ UNIX Hard Link
732
+ Unverified Password Change
733
+ Variable Extraction Error
734
+ Improper Validation of Function Hook Arguments
735
+ Unsafe ActiveX Control Marked Safe For Scripting
736
+ Executable Regular Expression Error
737
+ Permissive Regular Expression
738
+ Null Byte Interaction Error (Poison Null Byte)
739
+ Dynamic Variable Evaluation
740
+ Function Call with Incorrectly Specified Arguments
741
+ Not Failing Securely ('Failing Open')
742
+ Unnecessary Complexity in Protection Mechanism (Not Using 'Economy of Mechanism')
743
+ Not Using Complete Mediation
744
+ Authorization Bypass Through User-Controlled Key
745
+ Windows Shortcut Following (.LNK)
746
+ Weak Password Recovery Mechanism for Forgotten Password
747
+ Improper Restriction of Names for Files and Other Resources
748
+ External Control of Critical State Data
749
+ Improper Neutralization of Data within XPath Expressions ('XPath Injection')
750
+ Improper Neutralization of HTTP Headers for Scripting Syntax
751
+ Overly Restrictive Account Lockout Mechanism
752
+ Reliance on File Name or Extension of Externally-Supplied File
753
+ Use of Non-Canonical URL Paths for Authorization Decisions
754
+ Incorrect Use of Privileged APIs
755
+ Reliance on Obfuscation or Encryption of Security-Relevant Inputs without Integrity Checking
756
+ Windows Hard Link
757
+ Trusting HTTP Permission Methods on the Server Side
758
+ Exposure of WSDL File Containing Sensitive Information
759
+ Improper Neutralization of Data within XQuery Expressions ('XQuery Injection')
760
+ Improper Isolation or Compartmentalization
761
+ Reliance on a Single Factor in a Security Decision
762
+ Insufficient Psychological Acceptability
763
+ Reliance on Security Through Obscurity
764
+ Violation of Secure Design Principles
765
+ Improper Handling of File Names that Identify Virtual Resources
766
+ Improper Synchronization
767
+ Use of a Non-reentrant Function in a Concurrent Context
768
+ Improper Control of a Resource Through its Lifetime
769
+ Improper Initialization
770
+ Operation on Resource in Wrong Phase of Lifetime
771
+ Improper Locking
772
+ Exposure of Resource to Wrong Sphere
773
+ Incorrect Resource Transfer Between Spheres
774
+ Improper Handling of Windows Device Names
775
+ Always-Incorrect Control Flow Implementation
776
+ Lack of Administrator Control over Security
777
+ Operation on a Resource after Expiration or Release
778
+ External Influence of Sphere Definition
779
+ Uncontrolled Recursion
780
+ Multiple Operations on Resource in Single-Operation Context
781
+ Use of Potentially Dangerous Function
782
+ Integer Overflow to Buffer Overflow
783
+ Incorrect Conversion between Numeric Types
784
+ Incorrect Calculation
785
+ Function Call With Incorrect Order of Arguments
786
+ Incorrect Provision of Specified Functionality
787
+ Function Call With Incorrect Number of Arguments
788
+ Function Call With Incorrect Argument Type
789
+ Function Call With Incorrectly Specified Argument Value
790
+ Function Call With Incorrect Variable or Reference as Argument
791
+ Permission Race Condition During Resource Copy
792
+ Improper Handling of Windows ::DATA Alternate Data Stream
793
+ Unchecked Return Value to NULL Pointer Dereference
794
+ Insufficient Control Flow Management
795
+ Incomplete Denylist to Cross-Site Scripting
796
+ Protection Mechanism Failure
797
+ Use of Multiple Resources with Duplicate Identifier
798
+ Use of Low-Level Functionality
799
+ Incorrect Behavior Order
800
+ Incorrect Comparison
801
+ Execution After Redirect (EAR)
802
+ J2EE Misconfiguration: Missing Custom Error Page
803
+ Improper Check or Handling of Exceptional Conditions
804
+ Incorrect Type Conversion or Cast
805
+ Incorrect Control Flow Scoping
806
+ Use of Incorrectly-Resolved Name or Reference
807
+ Improper Neutralization
808
+ Incorrect Ownership Assignment
809
+ Improper Adherence to Coding Standards
810
+ Improper Handling of Apple HFS+ Alternate Data Stream Path
811
+ External Control of File Name or Path
812
+ Incorrect Permission Assignment for Critical Resource
813
+ Compiler Optimization Removal or Modification of Security-critical Code
814
+ Improper Neutralization of Special Elements in Output Used by a Downstream Component ('Injection')
815
+ Exposed Dangerous Method or Function
816
+ Failure to Sanitize Special Elements into a Different Plane (Special Element Injection)
817
+ Improper Check for Unusual or Exceptional Conditions
818
+ Improper Handling of Exceptional Conditions
819
+ Missing Custom Error Page
820
+ Selection of Less-Secure Algorithm During Negotiation ('Algorithm Downgrade')
821
+ Reliance on Undefined, Unspecified, or Implementation-Defined Behavior
822
+ Use of a One-Way Hash without a Salt
823
+ Improper Neutralization of Equivalent Special Elements
824
+ Use of a One-Way Hash with a Predictable Salt
825
+ Free of Pointer not at Start of Buffer
826
+ Mismatched Memory Management Routines
827
+ Release of Invalid Pointer or Reference
828
+ Multiple Locks of a Critical Resource
829
+ Multiple Unlocks of a Critical Resource
830
+ Critical Data Element Declared Public
831
+ Access to Critical Private Variable via Public Method
832
+ Incorrect Short Circuit Evaluation
833
+ Improper Neutralization of Special Elements used in a Command ('Command Injection')
834
+ Allocation of Resources Without Limits or Throttling
835
+ Missing Reference to Active Allocated Resource
836
+ Missing Release of Resource after Effective Lifetime
837
+ Missing Reference to Active File Descriptor or Handle
838
+ Allocation of File Descriptors or Handles Without Limits or Throttling
839
+ Missing Release of File Descriptor or Handle after Effective Lifetime
840
+ Improper Restriction of Recursive Entity References in DTDs ('XML Entity Expansion')
841
+ Regular Expression without Anchors
842
+ Insufficient Logging
843
+ Logging of Excessive Data
844
+ Improper Neutralization of Special Elements used in an OS Command ('OS Command Injection')
845
+ Use of RSA Algorithm without OAEP
846
+ Improper Address Validation in IOCTL with METHOD_NEITHER I/O Control Code
847
+ Exposed IOCTL with Insufficient Access Control
848
+ Operator Precedence Logic Error
849
+ Reliance on Cookies without Validation and Integrity Checking in a Security Decision
850
+ Use of Path Manipulation Function without Maximum-sized Buffer
851
+ Access of Memory Location Before Start of Buffer
852
+ Out-of-bounds Write
853
+ Access of Memory Location After End of Buffer
854
+ Memory Allocation with Excessive Size Value
855
+ Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')
856
+ Improper Filtering of Special Elements
857
+ Incomplete Filtering of Special Elements
858
+ Incomplete Filtering of One or More Instances of Special Elements
859
+ Only Filtering One Instance of a Special Element
860
+ Incomplete Filtering of Multiple Instances of Special Elements
861
+ Only Filtering Special Elements at a Specified Location
862
+ Only Filtering Special Elements Relative to a Marker
863
+ Only Filtering Special Elements at an Absolute Position
864
+ Use of Hard-coded Credentials
865
+ Improper Control of Interaction Frequency
866
+ J2EE Misconfiguration: Entity Bean Declared Remote
867
+ Improper Neutralization of Script-Related HTML Tags in a Web Page (Basic XSS)
868
+ Guessable CAPTCHA
869
+ Buffer Access with Incorrect Length Value
870
+ Buffer Access Using Size of Source Buffer
871
+ Reliance on Untrusted Inputs in a Security Decision
872
+ Improper Neutralization of Script in an Error Message Web Page
873
+ Improper Neutralization of Script in Attributes of IMG Tags in a Web Page
874
+ Missing Synchronization
875
+ Incorrect Synchronization
876
+ Untrusted Pointer Dereference
877
+ Use of Out-of-range Pointer Offset
878
+ Access of Uninitialized Pointer
879
+ Expired Pointer Dereference
880
+ Premature Release of Resource During Expected Lifetime
881
+ Improper Control of Document Type Definition
882
+ Signal Handler with Functionality that is not Asynchronous-Safe
883
+ Inclusion of Functionality from Untrusted Control Sphere
884
+ Improper Neutralization of Script in Attributes in a Web Page
885
+ Inclusion of Web Functionality from an Untrusted Source
886
+ Signal Handler Function Associated with Multiple Signals
887
+ Unlock of a Resource that is not Locked
888
+ Deadlock
889
+ Excessive Iteration
890
+ Loop with Unreachable Exit Condition ('Infinite Loop')
891
+ Use of Password Hash Instead of Password for Authentication
892
+ Improper Enforcement of a Single, Unique Action
893
+ Inappropriate Encoding for Output Context
894
+ Numeric Range Comparison Without Minimum Check
895
+ Improper Neutralization of Encoded URI Schemes in a Web Page
896
+ Improper Enforcement of Behavioral Workflow
897
+ Placement of User into Incorrect Group
898
+ Access of Resource Using Incompatible Type ('Type Confusion')
899
+ Doubled Character XSS Manipulations
900
+ Improper Neutralization of Invalid Characters in Identifiers in Web Pages
901
+ Missing Authorization
902
+ Incorrect Authorization
903
+ Improper Neutralization of Alternate XSS Syntax
904
+ Improper Neutralization of Argument Delimiters in a Command ('Argument Injection')
905
+ Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection')
906
+ J2EE Misconfiguration: Weak Access Permissions for EJB Methods
907
+ Improper Neutralization of Special Elements used in an LDAP Query ('LDAP Injection')
908
+ Use of Uninitialized Resource
909
+ Missing Initialization of Resource
910
+ XML Injection (aka Blind XPath Injection)
911
+ Use of Expired File Descriptor
912
+ Improper Update of Reference Count
913
+ Hidden Functionality
914
+ Improper Control of Dynamically-Managed Code Resources
915
+ Improper Control of Dynamically-Identified Variables
916
+ Improperly Controlled Modification of Dynamically-Determined Object Attributes
917
+ Use of Password Hash With Insufficient Computational Effort
918
+ Improper Neutralization of Special Elements used in an Expression Language Statement ('Expression Language Injection')
919
+ Server-Side Request Forgery (SSRF)
920
+ Improper Restriction of Power Consumption
921
+ Storage of Sensitive Data in a Mechanism without Access Control
922
+ Insecure Storage of Sensitive Information
923
+ Improper Restriction of Communication Channel to Intended Endpoints
924
+ Improper Enforcement of Message Integrity During Transmission in a Communication Channel
925
+ Improper Verification of Intent by Broadcast Receiver
926
+ Improper Export of Android Application Components
927
+ Use of Implicit Intent for Sensitive Communication
928
+ Improper Neutralization of CRLF Sequences ('CRLF Injection')
929
+ Improper Authorization in Handler for Custom URL Scheme
930
+ Improper Control of Generation of Code ('Code Injection')
931
+ Improper Verification of Source of a Communication Channel
932
+ Incorrectly Specified Destination in a Communication Channel
933
+ Permissive Cross-domain Policy with Untrusted Domains
934
+ Improper Neutralization of Special Elements in Data Query Logic
935
+ Improper Neutralization of Directives in Dynamically Evaluated Code ('Eval Injection')
936
+ Improper Neutralization of Directives in Statically Saved Code ('Static Code Injection')
937
+ Improper Neutralization of Server-Side Includes (SSI) Within a Web Page
938
+ Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion')
939
+ Improper Control of Resource Identifiers ('Resource Injection')