NamasteCoders
رفتن به کانال در Telegram
Reverse Engineer ❤️ Join Our Channel Check it 👉 @namastegangnetwork
نمایش بیشتر1 674
مشترکین
اطلاعاتی وجود ندارد24 ساعت
+37 روز
-830 روز
آرشیو پست ها
1 674
this is everything i know about encryption and decryption
from this you can make your automatic decoding tool
1 674
import marshal
mrsata=b'c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xf3\x1c\x00\x00\x00\x97\x00\x02\x00e\x00d\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00d\x01S\x00)\x02\xda\x05helloN)\x01\xda\x05print\xa9\x00\xf3\x00\x00\x00\x00\xfa\x03\xfa\x08r\x06\x00\x00\x00\x01\x00\x00\x00s\x16\x00\x00\x00\xf0\x03\x01\x01\x01\xd8\x00\x05\x80\x05\x80g\x81\x0e\x84\x0e\x80\x0e\x80\x0e\x80\x0er\x04\x00\x00\x00'
exec(marshal.loads(mrsata))
1 674
import marshal
inn="""print('hello')"""
data=marshal.dumps(compile(inn,'','exec'))
print(data)
1 674
basic guide
to decode
python marshal encryption
its just a basic code
you can take it as a example and research more
