What is the most memorable hacking you've done in the past 30 days?
If you've been around here long enough, you know what I am talking about. If not, then here is the definition I am using for hacking:
oldPost:
In this way, hacking can apply to many different disciplines outside the computer world.
So, back to the question:
What is the most memorable hacking you've done in the past 30 days?
It doesn't need to be "31337" (elite) or great or even brilliant. Share your out-of-the box solution to a problem, even if it was trivial.
Here is one from me:
A simple PHP script that runs whenever an HTTP 404 is encountered, which sucks in selected URL Host, and path, and then generates HTML content to let the user know that we have moved the http content to https, and then manufacture the https link they would want. The hackish part? Put this php script in a DocumentRoot that has no other files, meaning it always is called for any request including a request for itself.
Summary: Rely on an HTTP error, code for how to handle that error, then create a condition where that error always happens. Web server DocumentRoot are "supposed" to server files, but a DocumentRoot was made on purpose to not have any files. This was done to rely on an existing error, and then tap into handling of that error for redirection and information. I broke content service to take advantage of an error to report what I wanted.
Is it innovative? Probably not, since other people have solved this problem with other techniques for a long time. Also, this was a rather trivial problem to solve and could have been solved with many other techniques, including a web-server redirector without using any php or application.
Sure, this is a weak example of, "hacking," but I am not a hacker, and with a bar so low, you should be able to top my example. :-)
Don't forget! It doesn't have to be related to computers. A hacked solution to any problem in any discipline would count:
Law, language (like some jokes), engineering, science, math, art, etc.
If you've been around here long enough, you know what I am talking about. If not, then here is the definition I am using for hacking:
oldPost:
Originally posted by oldPost
So, back to the question:
What is the most memorable hacking you've done in the past 30 days?
It doesn't need to be "31337" (elite) or great or even brilliant. Share your out-of-the box solution to a problem, even if it was trivial.
Here is one from me:
A simple PHP script that runs whenever an HTTP 404 is encountered, which sucks in selected URL Host, and path, and then generates HTML content to let the user know that we have moved the http content to https, and then manufacture the https link they would want. The hackish part? Put this php script in a DocumentRoot that has no other files, meaning it always is called for any request including a request for itself.
Summary: Rely on an HTTP error, code for how to handle that error, then create a condition where that error always happens. Web server DocumentRoot are "supposed" to server files, but a DocumentRoot was made on purpose to not have any files. This was done to rely on an existing error, and then tap into handling of that error for redirection and information. I broke content service to take advantage of an error to report what I wanted.
Is it innovative? Probably not, since other people have solved this problem with other techniques for a long time. Also, this was a rather trivial problem to solve and could have been solved with many other techniques, including a web-server redirector without using any php or application.
Sure, this is a weak example of, "hacking," but I am not a hacker, and with a bar so low, you should be able to top my example. :-)
Don't forget! It doesn't have to be related to computers. A hacked solution to any problem in any discipline would count:
Law, language (like some jokes), engineering, science, math, art, etc.

Comment