This is good: The Six Dumbest Ideas in Computer Security.
It referenced this, which is also good: Personal observations on the reliability of the Shuttle by R.P. Feynman.
This is good: The Six Dumbest Ideas in Computer Security.
It referenced this, which is also good: Personal observations on the reliability of the Shuttle by R.P. Feynman.
Had a quick read of this old chestnut: OWASP SCP Quick Reference Guide v2.
This on Hacker News today: CSRF, CORS, and HTTP Security headers Demystified.
The above article referred to OWASP SameSite doco, and you can read about how to implement that with PHP.
This security.txt looks like a good idea.
Oh wow, this is great: OWASP Cheat Sheet Series.
I found an interesting article: Linux 25 PHP Security Best Practices For Sys Admins
Today I ran into this warning from iceweasel when I tried to access a web service on port 101:
This address is restricted
This address uses a network port which is normally used for purposes other than Web browsing. Iceweasel has canceled the request for your protection.
I found this article which said:
Read a little from the Open Web Application Security Project today.
An article on The 5 Hardest Parts of Programming which discusses optimisation, networking, security, reliability and scalability.
Read about the security considerations for find. Find is a *nix tool for searching though directories for files and filtering them to build lists or run commands.
While I’m here I might as well show you my latest find command, I think it’s a beauty. :)
sudo find . \ \( \( \( \! -user jj5 \) -or \( \! -group jj5 \) \) \ -execdir chown jj5:jj5 '{}' \+ \) , \ \( \( -type d \( \! -perm -u+rwx \) \) \ -execdir chmod u+rwx '{}' \+ \) , \ \( \( -type f \( \! -perm -u+rw \) \) \ -execdir chmod u+rw '{}' \+ \)