SusmithKrishnan / torghost

TorGhost is an anonymization script. TorGhost redirects all internet traffic through SOCKS5 tor proxy. DNS requests are also redirected via tor, thus preventing DNSLeak. The scripts also disables unsafe packets exiting the system. Some packets like ping request can compromise your identity.
GNU General Public License v3.0
856 stars 281 forks source link

Create systemd service #106

Open scottbarnesg opened 3 years ago

scottbarnesg commented 3 years ago

Having the ability to run/enable torghost as a systemd service would significantly improve torghost as an opsec tool. This would mean we can have tor connectivity from system init (boot) and check its status at any time.

Outcome would allow the following systemd commands:

systemctl start torghost -> equivalent to torghost -s systemctl stop torghost -> equivalent to torghost -x systemctl enable torghost -> equivalent to running torghost -s at system init (boot) systemctl status torghost -> standard service status

I'm happy to work this if this is something you're interested in adding to the project @SusmithKrishnan. I could probably have something working in the next few weeks.

This is an expansion on issue #66 (which I would argue is an incomplete workaround).