How to decode viewstate

前端 未结 11 1275
终归单人心
终归单人心 2020-11-28 04:45

I need to see the contents of the viewstate of an asp.net page. I looked for a viewstate decoder, found Fridz Onion\'s ViewState Decoder but it asks for the url of a page to

11条回答
  •  迷失自我
    2020-11-28 05:24

    JavaScript-ViewState-Parser:

    • http://mutantzombie.github.com/JavaScript-ViewState-Parser/
    • https://github.com/mutantzombie/JavaScript-ViewState-Parser/

    The parser should work with most non-encrypted ViewStates. It doesn’t handle the serialization format used by .NET version 1 because that version is sorely outdated and therefore too unlikely to be encountered in any real situation.

    http://deadliestwebattacks.com/2011/05/29/javascript-viewstate-parser/


    Parsing .NET ViewState

    • A Spirited Peek into ViewState, Part I:

      http://deadliestwebattacks.com/2011/05/13/a-spirited-peek-into-viewstate-part-i/

    • A Spirited Peek into ViewState, Part II:

      http://deadliestwebattacks.com/2011/05/25/a-spirited-peek-into-viewstate-part-ii/


提交回复
热议问题