VideoHelp Forum
+ Reply to Thread
Results 1 to 10 of 10
Thread
  1. Member
    Join Date
    Mar 2023
    Location
    Istanbul
    Search Comp PM
    Hey guys,

    has anyone successfully installed and set up GetWVKeys?

    I was able to install it successfully, but I can't get any further with the configuration.

    According to the instructions, the two files should be adjusted: config.py and .env

    https://github.com/GetWVKeys/getwvkeys/blob/main/.env.sample
    HTML Code:
    SECRET_KEY=# generate secret offline with os.urandom(16).hex()
    OAUTH2_CLIENT_ID=# Discord OAuth Client ID
    OAUTH2_CLIENT_SECRET=# Discord OAuth Client Secret
    OAUTH2_REDIRECT_URL=https://getwvkeys.cc/login/callback
    SQLALCHEMY_DATABASE_URI=mysql+mysqldb://user:password@host/database
    API_PORT=8080
    REDIS_URI=redis://localhost:6379/0
    https://github.com/GetWVKeys/getwvkeys/blob/main/getwvkeys/config.py.example
    HTML Code:
    import logging
    import os
    import pathlib
    import time
    
    from dotenv import load_dotenv
    
    IS_DEVELOPMENT = bool(os.environ.get("DEVELOPMENT", False))
    IS_STAGING = bool(os.environ.get("STAGING", False))
    load_dotenv(".env.dev" if IS_DEVELOPMENT else ".env.staging" if IS_STAGING else ".env")
    
    SECRET_KEY = os.environ["SECRET_KEY"]  # generate secret offline with os.urandom(16).hex()
    OAUTH2_CLIENT_ID = os.environ["OAUTH2_CLIENT_ID"]  # Discord OAuth Client ID
    OAUTH2_CLIENT_SECRET = os.environ["OAUTH2_CLIENT_SECRET"]  # Discord OAuth Client Secret
    OAUTH2_REDIRECT_URL = os.environ["OAUTH2_REDIRECT_URL"]  # Discord OAuth Callback URL
    SQLALCHEMY_DATABASE_URI = os.environ["SQLALCHEMY_DATABASE_URI"]  # Database connection URI
    REDIS_URI = os.environ.get("REDIS_URI", None)  # Redis connection URI
    
    API_HOST = "0.0.0.0"
    API_PORT = int(os.environ.get("API_PORT", 8080))
    API_URL = os.environ.get("API_URL", "https://getwvkeys.cc")
    
    MAX_SESSIONS = 60
    PROXY = {}
    DEFAULT_CDMS = []  # list of build infos to use in key rotation
    APPENDERS = []  # passwords for dumping keys, deprecated in favor of flags
    GUILD_ID = ""  # Discord Guild ID
    VERIFIED_ROLE_ID = ""  # Discord Verified role ID
    ELITE_ROLE_ID = ""  # Discord Elite role ID
    LOGIN_DISABLED = False
    CONSOLE_LOG_LEVEL = logging.DEBUG
    FILE_LOG_LEVEL = logging.DEBUG
    LOG_FORMAT = "[%(asctime)s] [%(name)s] [%(funcName)s:%(lineno)d] %(levelname)s: %(message)s"
    LOG_DATE_FORMAT = "%I:%M:%S"
    WVK_LOG_FILE_PATH = pathlib.Path(os.getcwd(), "logs", f"GWVK_{time.strftime('%Y-%m-%d')}.log")
    DEFAULT_BLACKLISTED_URLS = [
        # using regex to match a url
        {
            "url": ".*my\.awesome\.site.com.*",
            "partial": True,
        },
        # matching an exact url
        {
            "url": "https://example.com/some_awesome_page_to_block",
            "partial": False,
        },
    ]
    EXTERNAL_API_BUILD_INFOS = [{"buildinfo": "my_awesome_custom_buildinfo", "url": "http://myamazingcdmapi.com", "token": "myS3cR$t"}]
    
    # List of CDMs that should use the blacklist, these are considered to be GetWVKeys System CDMs.
    SYSTEM_CDMS = []
    Unfortunately, I'm a bit confused and desperate as to what exactly should be edited and where.
    Maybe someone has already installed and configured the system before and can help me with that.

    Cheers.
    Quote Quote  
  2. Psychology student CrymanChen's Avatar
    Join Date
    Apr 2022
    Location
    Mainland China
    Search Comp PM
    Don't know 'bout the details of this project.

    But I used to use their website and their Python script to get what you want. You could join their discord group and get verified to use their services.

    btw, I didn't find out that I was being banned for no reason, because it's been long since the last time I use their service. Get prepared for getting banned.
    twitter @Cryman_Chen
    email crymanchen@gmail.com
    Quote Quote  
  3. Member
    Join Date
    Mar 2023
    Location
    Istanbul
    Search Comp PM
    Hey mate thanks for replying me.

    I have tried in the past already to get registered on their discord server but they refused me without providing any reason.
    I also read here in many post, that other guys had the same issue. Or they were banned without providing any reason.

    This show me that this guy are more than arrogant and won’t accept new members.

    Anyway I decide to setup my own getvwkeys instance with my own DB.

    Hope that anyone can help me here to get configured the system successfully.

    Chers
    Quote Quote  
  4. Member
    Join Date
    Feb 2022
    Location
    Search the forum first!
    Search PM
    Image
    [Attachment 69817 - Click to enlarge]


    "Something is rotten in the State of Denmark" GetWVkeys has become a coterie.

    coterie:
    noun: coterie; plural noun: coteries

    a small group of people with shared interests or tastes, especially one that is exclusive of other people.
    Last edited by A_n_g_e_l_a; 16th Mar 2023 at 03:04.
    Quote Quote  
  5. Psychology student CrymanChen's Avatar
    Join Date
    Apr 2022
    Location
    Mainland China
    Search Comp PM
    Originally Posted by A_n_g_e_l_a View Post
    That's scary.
    twitter @Cryman_Chen
    email crymanchen@gmail.com
    Quote Quote  
  6. This is what people do if you give them a least little bit of power. Looks like a psychological experiment but is real world. Nice example.
    Quote Quote  
  7. Psychology student CrymanChen's Avatar
    Join Date
    Apr 2022
    Location
    Mainland China
    Search Comp PM
    Originally Posted by Quint View Post
    This is what people do if you give them a least little bit of power. Looks like a psychological experiment but is real world. Nice example.
    I understand what you mean 'cause I major in psychology
    twitter @Cryman_Chen
    email crymanchen@gmail.com
    Quote Quote  
  8. Member
    Join Date
    Aug 2023
    Location
    Czech Republick
    Search Comp PM
    idk what the server, i search but i dont fint it... you have inv link?
    Quote Quote  
  9. Banned
    Join Date
    Aug 2023
    Location
    EU
    Search Comp PM
    Originally Posted by Bobs47 View Post
    idk what the server, i search but i dont fint it... you have inv link?
    PM
    Quote Quote  
  10. Search, Learn, Download! Karoolus's Avatar
    Join Date
    Oct 2022
    Location
    Belgium
    Search Comp PM
    You're honestly better off just using WKS Keys.

    That being said, I run my own instance of GetWVKeys but I hardly use it. It just makes more sense to use a local script
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!