0x3C50 / pyobf2

An in-place obfuscator for python 3.11
BSD 3-Clause "New" or "Revised" License
52 stars 8 forks source link

transformer request new mode #7

Closed itskekoff closed 1 year ago

itskekoff commented 1 year ago

add to int transformer obfuscation like this:

# before
print(123)
# after
print((~v << 16) | (~va >> 16))

# where v is (~original >> 16), va is (~original << 16)

# also u can add ^ operator.
0x3C50 commented 1 year ago

grafik is this adequate