Search Results

5
votes

Password Cracking Windows Accounts

Obviously, if someone has physical access to the machine, all credentials stored can be considered compromised. If one can, for example, boot from an USB device or optical drive, one can us …
6
votes

GET versus POST in terms of security?

Neither one of GET and POST is inherently "more secure" than the other, just like neither one of fax and phone is "more secure" than the other. The various HTTP methods are provided so that you can …
1
vote

Encrypting/Hashing plain text passwords in database

For authentication purposes you should avoid storing the passwords using reversible encryption, i.e. you should only store the password hash and check the hash of the user-supplied password against …
1
vote

Email Headers: Where and who has sent this email?

Please note that it's trivial to falsify most headers - the usual case being the From: header. Spammers always do that, and sometimes choose falsified originating addresses picking a close variatio …
4
votes

can cURL be used to read php code from php files?

No, it cannot. All cURL does is access an URL just like you would access it using a browser. If you can read the PHP source with a browser, so can cURL, if not, then not. …
15
votes

How can I make a file trully immutable (non-deletable and read-only)?

This is one of the "what would happen if that were true?" questions. It has nothing to do with the operating system, the points apply equally to any general purpose computer. Imagine that t …