Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature req] Route traffic after successfull jailbreak #65

Closed
Gouster4 opened this issue Jun 2, 2024 · 7 comments
Closed

[Feature req] Route traffic after successfull jailbreak #65

Gouster4 opened this issue Jun 2, 2024 · 7 comments

Comments

@Gouster4
Copy link

Gouster4 commented Jun 2, 2024

Hello. Its not bad idea to run PPPwn on router, as its online 24/7.
But after jailbreak, we need to disable PPPoE client (which breaks automatized jailbreaking), or manually run PPPoE server.

Is it possible to embedd PPPoE server into PPPwn_cpp, so with some pppwn parameter, it will host PPPoE server for internet access on jailbroken PS4?

Also, if PPPoE client (PS4) disconnects, it can start jailbraking over again? this way once PS4 has PPPoE client enabled, jailbreak will be fully automatic.

@xfangfang
Copy link
Owner

xfangfang commented Jun 2, 2024

maybe you can try :https://github.com/stooged/PI-Pwn

they run pppoe-server after jailbreak.

I have implemented a simple version of pppoe server for macOS and Windows, but it does not work on Linux. #10 (comment)

https://github.com/xfangfang/PPPwn_cpp/tree/gateway

I haven't tried it before, but maybe you can make it work under Linux by adding this modification:https://stackoverflow.com/a/8578541

@Gouster4
Copy link
Author

Gouster4 commented Jun 2, 2024

Thank you. I didn't noticed gateway branch. This sounds very promising. I will try it on my Linux PC, and also on OPNSense (FreeBSD), and share results.

@Gouster4
Copy link
Author

Gouster4 commented Jun 2, 2024

I got this error when triyng to compile.
But main branch does compile without any problems.
Do i have some libraries missing?

[ 87%] Building CXX object CMakeFiles/pppwn_static.dir/src/gateway.cpp.o
/root/PPPwn_cpp/src/gateway.cpp:62:24: error: variable has incomplete type 'struct sockaddr_in'
struct sockaddr_in addr{};
^
/root/PPPwn_cpp/src/gateway.cpp:62:12: note: forward declaration of 'sockaddr_in'
struct sockaddr_in addr{};
^
/root/PPPwn_cpp/src/gateway.cpp:64:34: error: use of undeclared identifier 'INADDR_ANY'
addr.sin_addr.s_addr = htonl(INADDR_ANY);
^
2 errors generated.
*** Error code 1

Stop.
make[2]: stopped in /root/PPPwn_cpp
*** Error code 1

Stop.
make[1]: stopped in /root/PPPwn_cpp
*** Error code 1

Stop.
make: stopped in /root/PPPwn_cpp

@Gouster4
Copy link
Author

Gouster4 commented Jun 3, 2024

#67
Found out source of issue, and solution.
So, i created pull request.

@Gouster4
Copy link
Author

Gouster4 commented Jun 3, 2024

So, i managed to start gateway on OPNSense with INADDR_ANY fix from my PR.
But i didnt got internet access on it, as fix uses iptables command which isnt present on FreeBSD, so an alternative for it is needed. Will try to find one.

But, after i powered off my PS4, gateway was still running. Is there any way to automatically stop it after cient (ps4) disconnects?
Same way as PPPwn closes itself after sucessfull jaibreak.
So i can automatically run PPPwn again waiting for PS4 after an reboot/power cycle.

Thank you.

EDIT: Maybe i can run PPPwn network, and then ping PS4 ip. once i detect ps4 not repsonging to ping for long time, i can kill pppwn network process. I hope PS4 can respond to ping on its IP specified in gateway.cpp.
Will see once i figure out that iptables fix alternative.

@xfangfang
Copy link
Owner

The problem may occur in different places on freebsd, which requires checking the pcap traffic on the router to determine the specific problem.

I think the best alternative is to use a real pppoe-server, which can better match the operating system. The current gateway branch is just a simple platform independent implementation, which is inefficient and may have packet loss or performance issues.

Perhaps an elegant approach is you can write a simple web service that calls pppwn and pppoe-server, in which case you can freely combine the desired operations

@Gouster4
Copy link
Author

Gouster4 commented Jun 7, 2024

I tried clean FreeBSD and also OPNSense.
Ended up using mpd5 as PPPoE server.
Got IP assigned, but no internet access.
But it's just matter of tweaking mpd5 config.

@Gouster4 Gouster4 closed this as completed Jun 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants