Search Results

1
vote

Hacking your own application

You could do much worse than reasing Ross Anderson's Security Engineering book. The first edition is downloadable a a PDF and i …
2
votes

Security plan for business critical information and service accessibility

The system needs to be reachable through the Internet. What should we think about when deciding on how to host it? I'd consider a few things. First, your hosting provider …
0
votes

How could one circumvent an IP locator besides proxy?

Don't forget VPNs (and, admittedly, NAT). I guess that could be classed as a proxy, too. It also requires having access to a suitable machine in another country. …
1
vote

Tools to reduce risk regarding password security and HDD slack space.

How common is it for file formats to contain uninitialized data? Less and less common, I would've thought. The classic "offender" is older versions of MS office applicatio …
0
votes

Login protocol

Step 2 seems to be the bigger weakness, there. If you can make sure that the server sends a "sufficiently large" salt and NEVER the same salt, twice (I suspect a small portion of decent random numb …
1
vote

Can other datatypes than Strings be potentially harmful if obtained from external sources?

No, you can have security problems arising from accepting numbers from an external source. If an external source gives you a number of elements in (say) an array that you will need to process, a la …
1
vote

Is a secret token generated with /dev/urandom a good way to protect a daemon?

If you're forking (but not exec()ing), just keeping them in local memory should be enough. If you're also exec()ing, you'll probably (as you stated in your comment to Jim) have to pass the token (a …
0
votes

How to strengthen Mysql database server Security?

Lock down access to specific user(s) from specific IPs. Use a non-public network for the inter-server communication. If applicable, lock down access to whatever MySQL port you decide …