-
-
Notifications
You must be signed in to change notification settings - Fork 231
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix CVE-2024-51417 #870
Fix CVE-2024-51417 #870
Conversation
StefH
commented
Jan 22, 2025
- remove 'object' from PredefinedTypes
- refactor DefaultDynamicLinqCustomTypeProvider so that only classes with DynamicLinqType annotation are resolved
- remove 'object' from PredefinedTypes - refactor DefaultDynamicLinqCustomTypeProvider so that only classes with DynamicLinqType annotation are resolved
ResolveTypeBySimpleName's call to FindTypesMarkedWithDynamicLinqTypeAttribute is missing the union with AdditionalTypes. ResolveType makes the same call to FindTypesMarkedWithDynamicLinqTypeAttribute but does union with AdditionalTypes. Can this be fixed? |
Good point. I'm fixing it with: #896 |