Attacking Python's pickle

前端 未结 3 937
礼貌的吻别
礼貌的吻别 2020-12-15 16:49

I\'m writing a web app that stores user input in an object. This object will be pickled.

Is it possible for a user to craft malicious input that could do something e

3条回答
  •  一个人的身影
    2020-12-15 17:00

    Yes and no...

    No - unless there's a bug with the interpreter or the pickle module, you can't run arbitrary code via pickled text, or something like that. unless the pickled text is evaled later, or you're doing stuff like creating a new object with a type mentioned in this data.

    Yes - depending on what you plan to do with the information in the object later, a user can do all sorts of things. From SQL injection attempts, to changing credentials, brute force password cracking, or anything that should be considered when you're validating user input. But you are probably checking for all this.


    Edit:

    The python documentation states this:

    Warning The pickle module is not intended to be secure against erroneous or maliciously constructed data. Never unpickle data received from an untrusted or unauthenticated source.

    However this is not your case - you accept the input, put it through the regular validation, and then pickle it.

提交回复
热议问题