Recent content by derefd

  1. derefd

    PS3 bgtoolset access workaround guide

    You can use mitmproxy on Windows as well if Fiddler doesn't work for you. Just follow the instructions which are linked in the main post. Feel free to ask if you have any questions.
  2. derefd

    PS3 bgtoolset access workaround guide

    Your firewall might block the port that fiddler/mitmproxy is running on. If it is open, you have to ensure you enter the correct IP of your computer in your LAN and double check the port used.
  3. derefd

    PS3 [Update: SSL issue Resolved} BG Toolset SSL Issues (80710A06 Error) (July 2024)

    I posted a working solution for linux in the guide, which uses just mitmproxy. AFAIK there is a mono port for fiddler, but I have not tried it.
  4. derefd

    PS3 bgtoolset access workaround guide

    Huge thanks for that workaround. Helped me find a solution that works on linux as well. Simply create a python file with this content, for example bypass_ssl.py: class BypassSSL: def request(self, flow): flow.request.headers["Accept-Encoding"] = "gzip, deflate" def...
Back
Top