Re[2]: Linux hardening
Kir <[email protected]>
| Newsgroups | gmane.comp.security.linux |
|---|---|
| Message-ID | <[email protected]> |
> How did u modify your wget or curl for not to download to /tmp and /var/tmp? > pavan. It`s simple, really: you can modify source code of the wget to include string matching (strncmp(url, "/tmp", 4)) and throwing exception on positive result. Then all you need to do is recompile code and replace original wget with the new one.