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
For improved security, it might be a good idea to not statically link system calls but instead, dynamically load and resolve said system calls during runtime. As an example, on Windows, the system calls can be retrieved entirely through the PEB.
Another security feature would be to encrypt the system call strings as to not leave any trace of the functions used in the compiled library. Encrypting the strings using a random key everytime the library is compiled might also be a cool idea, if it could be done reliably.
The text was updated successfully, but these errors were encountered:
For improved security, it might be a good idea to not statically link system calls but instead, dynamically load and resolve said system calls during runtime. As an example, on Windows, the system calls can be retrieved entirely through the PEB.
Another security feature would be to encrypt the system call strings as to not leave any trace of the functions used in the compiled library. Encrypting the strings using a random key everytime the library is compiled might also be a cool idea, if it could be done reliably.
The text was updated successfully, but these errors were encountered: