lets see how far it can goo!!!!!!!!!!!!!
I need help @EliteEmper0r #EliteEmper0r
I tried to run the file it gave the error of bad magic number
so I ran some codes and found the version of python which is magic 3 version 0.10
so there only python version 3.10.10 is available
so I think if I don't have the same version I won't be able run it but the problem is that there isn't any such version of python available
can you pleases guide me if any thing that I'm missing or is there any other solution to run this file?
Looking foreword to your reply!
I'm talking about the version which the file is created with
C:\Users\coinbase hack>python CoinbaseDrainer.pyc
RuntimeError: Bad magic number in .pyc file
C:\Users\coinbase hack>python
Python 3.10.10 (tags/v3.10.10:aad5f6a, Feb 7 2023, 17:20:36) [MSC v.1929 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import dis
>>>
>>> with open('CoinbaseDrainer.pyc', 'rb') as f:
... magic = f.read(4)
... version = int.from_bytes(f.read(2), byteorder='little')
...
>>> print(f"The file was compiled with Python version {version}.{magic[3]}")
The file was compiled with Python version 0.10
C:\Users\coinbase hack>python --version
Python 3.10.10
I guess It's the closed version to the python version which the file is created with, and the file version of python is not found on the internet
I need help @EliteEmper0r #EliteEmper0r
I tried to run the file it gave the error of bad magic number
so I ran some codes and found the version of python which is magic 3 version 0.10
so there only python version 3.10.10 is available
so I think if I don't have the same version I won't be able run it but the problem is that there isn't any such version of python available
can you pleases guide me if any thing that I'm missing or is there any other solution to run this file?
Looking foreword to your reply!
I'm talking about the version which the file is created with
C:\Users\coinbase hack>python CoinbaseDrainer.pyc
RuntimeError: Bad magic number in .pyc file
C:\Users\coinbase hack>python
Python 3.10.10 (tags/v3.10.10:aad5f6a, Feb 7 2023, 17:20:36) [MSC v.1929 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import dis
>>>
>>> with open('CoinbaseDrainer.pyc', 'rb') as f:
... magic = f.read(4)
... version = int.from_bytes(f.read(2), byteorder='little')
...
>>> print(f"The file was compiled with Python version {version}.{magic[3]}")
The file was compiled with Python version 0.10
C:\Users\coinbase hack>python --version
Python 3.10.10
I guess It's the closed version to the python version which the file is created with, and the file version of python is not found on the internet