Security
Headlines
HeadlinesLatestCVEs

Headline

CVE-2015-10018: SQL injection problem · DBRisinajumi/d2files@b5767f2

A vulnerability has been found in DBRisinajumi d2files and classified as critical. Affected by this vulnerability is the function actionUpload/actionDownloadFile of the file controllers/D2filesController.php. The manipulation leads to sql injection. Upgrading to version 1.0.0 is able to address this issue. The name of the patch is b5767f2ec9d0f3cbfda7f13c84740e2179c90574. It is recommended to upgrade the affected component. The identifier VDB-217561 was assigned to this vulnerability.

CVE
#sql#vulnerability#php#auth

@@ -114,15 +114,15 @@ public function actionUpload($model_name, $model_id) {

//if (!Yii::app()->user->checkAccess($model_name . ‘.uploadD2File’)) {

D2files::extendedCheckAccess($model_name . ‘.uploadD2File’);

if (!$this->performReadValidation($model_name, $model_id)) {

if (!$this->performReadValidation($model_name, (int)$model_id)) {

throw new CHttpException(403, Yii::t(“D2filesModule.model","You are not authorized to perform this action.”));

}

Yii::import(“vendor.dbrisinajumi.d2files.compnents.*”);

$oUploadHandler = new UploadHandlerD2files(

array(

‘model_name’ => $model_name,

‘model_id’ => $model_id,

‘model_id’ => (int)$model_id,

)

);

@@ -175,7 +175,7 @@ public function actionDownloadFile($id) {

$oUploadHandler = new UploadHandlerD2files(

array(

‘model_name’ => $model->model,

‘model_id’ => $id,

‘model_id’ => (int)$id,

‘download_via_php’ => TRUE,

‘file_name’ => $model->file_name,

)

CVE: Latest News

CVE-2023-50976: Transactions API Authorization by oleiman · Pull Request #14969 · redpanda-data/redpanda
CVE-2023-6905
CVE-2023-6903
CVE-2023-6904
CVE-2023-3907