Welcome to phpMyAdmin versions 2.11.9.3 and 3.0.1.1 which fix a security
problem (details will follow on phpmyadmin.net).
Details / downloads: http://phpmyadmin.net.
Marc Delisle, for the team
Hi,
Exploit :
register_globals=on,off
loged in ....
query :
http://localhost/pmd_pdf.php?db=>"><script>alert(1)</script>
Could you fix this quickly?
Yours
Fabian
Welcome to phpMyAdmin 3.0.1, a bugfix-only version. The 3.0 series
requires PHP 5.2+ and MySQL 5.0+.
Details and downloads on http://phpmyadmin.net.
Marc Delisle, for the team
Hi,
I'm trying to fix a bug and I would like to do the unit tests but I'm not
able to make the current unit tests work. How do you run it?
I've tried "phpunit AllTests.php" but no luck...
Thx.
Welcome to the first release candidate for phpMyAdmin 3.0.1, a
bugfix-only version.
The 3.0 series requires PHP 5.2+ and MySQL 5.0+.
Downloads/details: http://phpmyadmin.net
Marc Delisle, for the team
hi all,
this is my first email and I'm trying to solve my first bug... so any
help would be appreciate :)
As marc suggested I'm trying to solve this bug
https://sourceforge.net/tracker2/?func=detail&aid=2107583&group_id=23067&at…
I think i've found a way to solve it but I'm not really happy with the solution.
The main problem with this bug is when you write this 2 html the
submited value is the same (and it shouldn't)
--------------------------------------------
code 1:
<textarea>hi</textarea>
--------------------------------------------
Code 2 (see the \n before 'hi'):
<textarea>
hi</textarea>
--------------------------------------------
I can't understand why the textarea tag ignores the first \n (or \r).
The easiest way to solve it (but I don't like it) is add an extra \n
just before the text like this
--------------------------------------------
Code 3 (see the \n\n before 'hi'):
<textarea>
hi</textarea>
--------------------------------------------
As this line is ignored all the times it should work (I don't know if
all the browsers ignores this \n...)
do you have any better ideas?
Attached you can see a php example to reproduce the bug.