Skip to content

Latest commit

 

History

History
executable file
·
48 lines (36 loc) · 885 Bytes

File metadata and controls

executable file
·
48 lines (36 loc) · 885 Bytes

DNAS Bypass

This is a project to bypass the DNAS check for online PS2 games.

Clone Project

git clone https://github.com/Project-Backstab/DNASBypass.git
cd DNASBypass

git submodule init
git submodule update

Monitor network

sudo tcpdump -D
sudo tcpdump --interface any port 443 -w dump.pcap

OpenSSL

This project requires a openssl that is compiled with sslv2, sslv3 and weak ciphers.

Compile openssl 1.0.2u

mkdir download
cd download
wget https://github.com/openssl/openssl/archive/refs/tags/OpenSSL_1_0_2u.tar.gz

cd ..
mkdir temp
cd temp
tar xvfz ../download/OpenSSL_1_0_2u.tar.gz

cd openssl-OpenSSL_1_0_2u
./Configure --prefix=$PWD/../../libs/openssl-1.0.2u linux-x86_64 enable-ssl2 enable-ssl3 enable-weak-ssl-ciphers
make depend
make -j 4
make install

Check:

cd libs/openssl-1.0.2u/bin
./openssl ciphers -V ALL | grep DES-CBC3-SHA