| 제목 | mjperpinosa stumasy 327d1b0f2915ba79d7ef8ebb74553e987609d9be SQL Injection |
|---|
| 설명 | The affected component is `application/PHP/objects/notes/accessing_dictionary_authorization.php`, which calls `Notes_controller::accessing_dictionary_authorization()` with a user-controlled password. The controller concatenates the password directly into a SQL expression:
```php
$select_statement = $this->db_holder->prepare("SELECT * FROM passwords WHERE intended_to = 'accessing dictionary' AND password = password('".$password."')");
$select_statement->execute();
```
An attacker can submit `') OR 1=1 -- -` to alter the WHERE clause and bypass the dictionary password check. The issue can also be used as a SQL injection primitive against the application database.
|
|---|
| 원천 | ⚠️ https://github.com/mjperpinosa/stumasy/issues/6 |
|---|
| 사용자 | gscsd (UID 97914) |
|---|
| 제출 | 2026. 06. 05. PM 04:44 (29 날 ago) |
|---|
| 모더레이션 | 2026. 07. 04. PM 05:50 (29 days later) |
|---|
| 상태 | 수락 |
|---|
| VulDB 항목 | 376339 [mjperpinosa stumasy 까지 327d1b0f2915ba79d7ef8ebb74553e987609d9be accessing_dictionary_authorization.php accessing_dictionary_authorization 비밀번호 SQL 주입] |
|---|
| 포인트들 | 20 |
|---|