The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Getting Ready for VB3 - A Coding Tutorial
My husband is a Visual Basic programmer (ick) and he?s always after me to teach him web development. So, when I started working on a redesign of a modification for VBulletin 3, I told him that he could help me code it. To get him started, I installed a local version of PHP on his computer, and sent him to Web Monkey to take a tutorial. Shortly after he got started, he yelled for help. He was working on reading data from a form and printing it out to the screen and the data refused to print. I read the code several times, and everything seemed correct. After a couple of minutes of tinkering, I saw that data within his PHP script would print, but not the data being passed in from the form. Suddenly, in the deep recesses of my mind, a tiny lightbulb went on in my head, and I went to Google to research Register Globals. By default, Register Globals is now set to OFF in PHP versions 4.2.0. In previous versions, it defaulted to ON. Therefore, things that we always assumed were just how PHP worked (such as being able to process form data easily) work a bit differently now. The official PHP documentation says: Quote:
What I really should have done was teach him how to code properly when Register Globals is off, and that is the point of this tutorial. Vbulletin 3 is coded to work with Register Globals off, and any modifications we write should be as well. So, it?s time for us to break some bad habits and learn how to write elegant, more secure code. One of the blessings, and curses, of PHP is that it?s easy and it forgives mistakes. Unlike other languages, PHP does not require us to initialize variables. This makes it cake to throw together a script or VBulletin modification in a matter of minutes. Unfortunately, the ability to code quickly and easily makes it just as easy to code sloppily. Just about all of us have been guilty of sloppy coding at one time or another. It?s too easy to just throw together something that works and forget about form and style. Sloppy coding can create security holes though. Take this example: PHP Code:
and whether they were an admin or not, they could possibly do some pretty naughty things. By initializing userid to something else, and by validating incoming data, we could prevent havoc and mayhem. PHP Code:
With Register Globals set to OFF, form data is retrieved by using the following syntax: $variable1 = $_POST['variable1']; or $variable1 = $_GET['variable1']; Whether you use $_POST or $_GET depends on the type of form used. Even if security isn?t an issue, having Register Globals set to off can help stop bugs from creeping in. In VBulletin 2.x, it was possible to break the functionality of the board by using the wrong variable name in the phpinclude template. With Register Globals set to off, such problems might be prevented because variables will have to be intentionally passed into a script and won?t just drift in on their own. Having Register Globals set to off won?t cure the world?s ills, and it will take some time to learn. But, if you are going to release code modifications for VBulletin 3, you should master the concept and use it. More info: http://www.onlamp.com/pub/a/php/2003..._security.html |
#2
|
||||
|
||||
Nice post you made here amy
I always code with register_globals set to OFF, because, as you quoted, it is quite insecure, and the default is now set to off (although many webhosts still set it to ON for the convenience of its customers). |
#3
|
||||
|
||||
Nice tips.
|
#4
|
||||
|
||||
Thank you
|
#5
|
|||
|
|||
Quote:
Please explain to me why it's convienient for people that install scripts and don't know much about coding? Aren't most scripts assuming register glabals are turned off? I just don't understand how it's a convienence if it's a security hole. |
#6
|
||||
|
||||
Its convenient because variables are global as the name sugests. For example it may be posible to overwrite a value by appending it to the URL:
EG: URL: test.php?debug=1 PHP Code:
vB2 works with register_globals ON or OFF and registers the globals for you if its set to OFF. Its convenient because many scripts still require register_globals set to ON, hence why many hosts have it turned on. |
#7
|
|||
|
|||
Thanks Lee! I understand that now. :banana:
|
#8
|
||||
|
||||
great thread, any more pointers on the way?
|
#9
|
||||
|
||||
o_< reminds me of "Getting Ready for Y2K"
|
#10
|
||||
|
||||
Has anybody read my tips?
If not, can add them here. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|