what is the data from loads()

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • leo

    #1

    what is the data from loads()

    Hi,

    Following is the python scripts:



    import marshal

    exec(marshal.lo ads('c\000\000\ 000\000\001\000 \000\000s\017\0 00\000\000\177\ 000\000\177\002 \000d\000\000GH d\001\000S(\002 \000\000\000s\0 05\000\000\000h elloN(\000\000\ 000\000(\000\00 0\000\000s\010\ 000\000\000<scr ipt>s\001\000\0 00\000?\002\000 s\000\000\000\0 00'))

    anyone know what is the data in loads()?
    i mean what is the
    ('c\000\000\000 \000\001\000\00 0\000s\017\000\ 000\000\177\000 \000\177\002\00 0d\000\000GHd\0 01\000S(\002\00 0\000\000s\005\ 000\000\000hell oN(\000\000\000 \000(\000\000\0 00\000s\010\000 \000\000<script >s\001\000\000\ 000?\002\000s\0 00\000\000\000' )
    ??


  • Fredrik Lundh

    #2
    Re: what is the data from loads()

    leo wrote:
    anyone know what is the data in loads()?
    i mean what is the
    ('c\000\000\000 \000\001\000\00 0\000s\017...
    compiled and serialized Python code (the same kind of stuff that you'll
    find in PYC files).

    if you don't trust the source, don't run that program.

    </F>

    Comment

    Working...