Closed
Bug 32971
Opened 25 years ago
Closed 25 years ago
edituser.cgi "new" checks user against bultin regular expression
Categories
(Bugzilla :: Bugzilla-General, defect, P3)
Tracking
()
VERIFIED
FIXED
Bugzilla 2.12
People
(Reporter: egbert, Assigned: justdave)
References
Details
Attachments
(1 file)
953 bytes,
patch
|
Details | Diff | Splinter Review |
edituser.cgi
unless ($user =~ /^[^\@]+\@[^\@]+$/) {
print "The user name entered must be a valid e-mail address. Please
press\n";
print "<b>Back</b> and try again.\n";
PutTrailer($localtrailer);
exit;
}
Notice how the $user is checked against /^[^\@]+\@[^\@]+$/. It should be
checked against Param("emailregexp");
Comment 1•25 years ago
|
||
tara@tequilarista.org is the new owner of Bugzilla and Bonsai. (For details,
see my posting in netscape.public.mozilla.webtools,
news://news.mozilla.org/38F5D90D.F40E8C1A%40geocast.com .)
Assignee: terry → tara
Comment 2•25 years ago
|
||
This bug still exists in 2.10 and is duplicated by bug #34017
Comment 3•25 years ago
|
||
Assignee | ||
Comment 4•25 years ago
|
||
another patch here waiting... (maybe you can follow and appropriately mark the
duplicates while you're at it)
Assignee | ||
Comment 6•25 years ago
|
||
The following patch was posted to bug 44620 by mtakacs@pacbell.net, which ended
up being a duplicate of this bug.
Assignee: tara → dave
Assignee | ||
Comment 7•25 years ago
|
||
Assignee | ||
Updated•25 years ago
|
Status: NEW → ASSIGNED
Assignee | ||
Comment 8•25 years ago
|
||
Patch has been checked in.
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 10•24 years ago
|
||
*** Bug 58464 has been marked as a duplicate of this bug. ***
Assignee | ||
Comment 11•24 years ago
|
||
In search of accurate queries.... (sorry for the spam)
Target Milestone: --- → Bugzilla 2.12
Updated•24 years ago
|
Status: RESOLVED → VERIFIED
Comment 12•24 years ago
|
||
This is a trivial fix which is a pain to verify. So VERIFYING based on
inspection ;-)
Gerv
Assignee | ||
Comment 13•23 years ago
|
||
Moving closed bugs to Bugzilla product
Component: Bugzilla → Bugzilla-General
Product: Webtools → Bugzilla
Version: other → unspecified
Updated•12 years ago
|
QA Contact: matty_is_a_geek → default-qa
You need to log in
before you can comment on or make changes to this bug.
Description
•