Giter VIP home page Giter VIP logo

pspypass's Introduction

PSPypass

Bypass PS4 update checker.

Most of the code in this project is based on inaz2/proxy2

Features

  • bypass the update checker of PS4
  • easy to customize
  • require no external modules

This script works on Python 2.7. Tested on macOS 10.11 and Ubuntu 16.04 LTS

Usage

Just run as a script:

$ python pspypass.py

Above command runs the proxy on tcp/8080. To use another port, specify the port number as the first argument.

$ python pspypass.py 8080

If you want the script run as a deamon (Run the proxy in the backgroud), just run the shell script

$ pspypass.sh start

To stop:

$ pspypass.sh stop

Customize

Change these values in pspypass.py

region_id: Your region. Possible values are: jp, us, au, uk, eu, kr, sa, tw, ru, mx, cn.

Region ID is based on the region of PS4 hardware, not the region of your PSN account.

os_version: Your firmware version. NOT the latest version of official firmware.

For example: You are on FW 3.50 and 4.00 is released. Just set os_version to 3.50 or below.

Firewall

If you use iptables on your server, remember to allow connection from the port.

Example:

iptables -A ufw-user-input -p tcp -m tcp --dport 8080 -j ACCEPT

If your server is available in public, it's better to set a whitelist of IP, so other people won't connect to your proxy and waste your bandwidth.

iptables -A ufw-user-input -p tcp -m tcp -s 12.34.56.78 --dport 8080 -j ACCEPT

References

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.