Search Results
Wednesday, October 22nd, 2008
If you’re new here, you may want to subscribe to my RSS feed. Thanks for visiting!This is part 2 of the Building Something Scalable series / experiment: Security.
Umm why are you talking about security?
Security is part of being scalable, simple. Think about it. If your security is setup decently your servers will ignore […]
Sunday, September 21st, 2008
So after years of partial frameworks, and various concepts, I’ve finally started my framework.
First off there is NO windows support. I’m sure that’s not the best way to go, but I can’t think of one reason to host a php app on windows. As noted windows isn’t supported, but I’m working on a linux […]
Monday, August 18th, 2008
today one of the projects I work on tracked a user repeatedly trying to get contact information from our younger members, actually only our younger female members. We’re kid friendly so always watch out for certain types of communcation.
After repeat bans we then did an ip ban, because he keep coming back to try and […]
Sunday, August 17th, 2008
just a quick tip for anyone using .inc files via apache.
add the following to your apache configuration to prevent viewing of .inc files via the web. This will not prevent php from including the files locally
<FilesMatch “\.inc$”>
Deny From All
</FilesMatch>
There ya go, now feel free to use .inc files as much as you’d like. Also an […]
Wednesday, May 14th, 2008
Bacon 100%
Bacon is my pet project right now. the goal is to make a php 4 / 5 compatible plug and play security system. So the process would go something like: install bacon, develop your app, send me feedback
Its kind of a big undertaking for me, because I hate being limited. So […]
Friday, May 9th, 2008
I have a friend I’m teaching foundation security to. This post is for him, but also as a protest to some of the materials I’ve found when looking for reference material for him.
Security at it’s simplest form is common sense. ask yourself, how can I make sure I get exactly what I want? How do […]
Sunday, May 4th, 2008
So after a night of coding I decided to play with different ciphers to see which ones ran faster, because it pointless to focus on just security, ya want speed to right!
One layer encryption:
The following where the fastest three I in my tests. Blowfish shouldn’t be used as your primary encryption, and aes is […]
Sunday, May 4th, 2008
So last night I decided it would be pretty cool and take the information access process from the DOD and figure out how you could apply them to a php application.
After a few hours spec’ing out the system i got to coding. I now have a quick and easy class I call Cryption. Its built […]
Saturday, May 3rd, 2008
I have a confession, I’ve been slowly falling in love with encryption. No clue how i’m gonna get paid to do it, since most companies care less about actually data encryption, and all about network security.
Anyways I’m finding myself more and more engrossed in the subject, so I thought it time to hit amazon […]
Tuesday, December 25th, 2007
this is more for my reference than anything, but I cover the areas i modified to integrate wordpress in to a clients current site. I’m posting this, mainly to keep me from having to compare files everytime i do a wp upgrade. its by no means a solid tut as there are additional site classes […]