You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to remove our dependency on script. Our usage is too basic, and I think we can get rid of it without much work.
Basically, what we need to do is open the terminal process and grab its stdin/stdout, while also sending them to the user. We're doing a MITM attack. In Python, I guess it would be possible to use Popen3.
As a reference, check how tty.js did it. They used node, and didn't replayed the terminal's output to the user, but the idea is the same.
The text was updated successfully, but these errors were encountered:
I would like to remove our dependency on script. Our usage is too basic, and I think we can get rid of it without much work.
Basically, what we need to do is open the terminal process and grab its stdin/stdout, while also sending them to the user. We're doing a MITM attack. In Python, I guess it would be possible to use Popen3.
As a reference, check how tty.js did it. They used node, and didn't replayed the terminal's output to the user, but the idea is the same.
The text was updated successfully, but these errors were encountered: