RoellerRoeller
Keymaster
    Post count: 51

    Could you try to run hs_main under root? The hs_main is run from a boot script. Maybe you can set the SUID bit (S_ISUID).

    chmod u+s hs_main

    This will execute the hs_main process (no matter who calls it) under the owner of that process. So if you make ‘root’ the owner, then the hs_main will be executed as root. Now it should be able to create raw sockets.

    Let me know if it works!