Skip to content

Files

Latest commit

Mar 24, 2022
8aca131 · Mar 24, 2022

History

History
28 lines (19 loc) · 1.31 KB

.NET-deserialization.md

File metadata and controls

28 lines (19 loc) · 1.31 KB
  • VIEWSTATE deserialization
  • Json.Net, aka. Newtonsoft.Json, i.e JsonConvert.DeserializeObject(value)
  • UEditor SSRF/file upload to RCE
  • Denpendency Check

OWASP dependency-check includes an analyzer that scans .NET dll and exe files and collect as much information it can about the files as it can. The information collected is internally referred to as evidence and is grouped into vendor, product, and version buckets. Other analyzers later use this evidence to identify any Common Platform Enumeration (CPE) identifiers that apply. .NET core 2.x needs to be installed for this analyzer to work. Files Types Scanned: EXE, DLL

Ref: https://jeremylong.github.io/DependencyCheck/analyzers/assembly-analyzer.html

Ref

Appendix