将任意对象转储到XML(绕过默认序列化)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将任意对象转储到XML(绕过默认序列化)相关的知识,希望对你有一定的参考价值。
Useful in cases where the object author has specified their own serialization that doesn't work for you.
public static string ObjectToString(object o) { string objectType = o.GetType().ToString(); foreach (PropertyInfo pi in o.GetType().GetProperties()) { } return doc.ToString(); }
以上是关于将任意对象转储到XML(绕过默认序列化)的主要内容,如果未能解决你的问题,请参考以下文章
XCTF-攻防世界CTF平台-Web类——10unserialize3(反序列化漏洞绕过__wakeup()函数)