Actions
Bug #2381
closedWrong authorization check
Description
This authorization check does not work correctly:
private function saveCategoryEdit( $id, $user, $plugin ) {
...
$row = new cbgjCategory( $_CB_database );
if ( $id ) {
$row->load( $id );
}
$authorized = cbgjClass::getAuthorization( $row, null, $row->user_id );
if ( in_array( 'cat_create', $authorized ) || in_array( 'mod_lvl1', $authorized ) ) {
It checks that the owner of the category has right to save, and not the saving logged-in user. This means that anyone can save any category by giving its id, which is a vuln.
Please review all authorizations to WHOM the check is made. Actually, probably you want to check against the logged-in user all the time, and not pass the user id to the getAuthorization() function ?
Updated by krileon about 14 years ago
- Status changed from New to Feedback
- Assignee changed from krileon to beat
Updated by beat about 14 years ago
- Status changed from Feedback to Assigned
- Assignee changed from beat to krileon
Updated by krileon about 14 years ago
- Status changed from Assigned to Feedback
- Assignee changed from krileon to beat
Updated by beat about 14 years ago
- Status changed from Feedback to Rejected
- % Done changed from 0 to 100
Actions