Re: Python Obfuscation
Verfasst: Mittwoch 28. März 2012, 20:26
@MrVirus: Das ist nicht lauffähig: ValueError: invalid literal for int() with base 10: '124c74124c74124cf41b3d61031d6d035d60032c46030d711bdd70032d71027c74'
Worauf die dritte Zeile von unten hinausläuft ist so etwas hier:
Worauf die dritte Zeile von unten hinausläuft ist so etwas hier:
Code: Alles auswählen
In [208]: hex(255)
Out[208]: '0xff'
In [209]: hex(255)[2:-1]
Out[209]: 'f'
In [210]: int(hex(255)[2:-1])
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
/home/bj/<ipython console> in <module>()
ValueError: invalid literal for int() with base 10: 'f'