This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Install native dependencies | |
| sudo dnf update -y | |
| sudo dnf install -y curl wine | |
| # Install MSYS2 | |
| curl -L -o /tmp/msys2.exe 'https://github.com/msys2/msys2-installer/releases/download/2021-11-30/msys2-base-x86_64-20211130.sfx.exe' | |
| wine64 /tmp/msys2.exe x -y -oC:/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from bs4 import BeautifulSoup as Soup | |
| import requests | |
| from module.plugins.captcha.ReCaptcha import ReCaptcha | |
| from module.plugins.internal.Crypter import Crypter | |
| class TestDummy(Crypter): | |
| __name__ = 'TestDummy' | |
| __status__ = 'testing' |