If you need to add an existing user to a Linux group it is very easy, just run the following command:
usermod -a -G <group name> <user name>
If you need to add an existing user to a Linux group it is very easy, just run the following command:
usermod -a -G <group name> <user name>
This is an interesting project that shows you how you can create a long range RFID reader. This is another reason why wireless, no matter how short the range, is insecure.
Source: RFID Thief v2.0 – scund00r
To have your vpn traffic be able to reach the internet you just need to add the following iptable rules:
iptables -A FORWARD -i tun0 -j ACCEPT
iptables -A FORWARD -i tun0 -o eth0 -m state –state RELATED,ESTABLISHED -j ACCEPT
iptables -A FORWARD -i eth0 -o tun0 -m state –state RELATED,ESTABLISHED -j ACCEPT
iptables -t nat -A POSTROUTING -s 192.168.0.0/24 -o eth0 -j MASQUERADE
This would take the tunnel adapter of tun0 and route the traffic through eth0 for the vpn subnet of 192.168.0.0.
A malicious traffic detection system which can be deployed on your network with ease.
https://www.latesthackingnews.com/maltrail-malicious-traffic-detection-system/