ok guys, check this out:
exec("useradd mumu");
exec("smbpasswd -a mumu secret");
this 2 lines will never execute normaly in a php file. the reason is simple: you need root access for useradd and smbpasswd commands. still, i need a way to trick this. the above lines were given as examples, i need this to automate some things that i do with openssl command. can anyone please help?
thank you.