You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It takes advantage of the fact that the property of req.query.xxx can be overridden.
(Implicit in outputFormats[exportType], toString is performed on variables such as exportType.)
lib/note/noteActions.js#L136 is inside the async function and outside try/catch, so an error here will stop the entire application.
TypeError: Cannot convert object to primitive value
at actionPandoc (/home/yoden/work/project/codimd/lib/note/noteActions.js:136:36)
at noteActions (/home/yoden/work/project/codimd/lib/note/index.js:187:7)
2024-01-03T15:32:10.225Z error: An uncaught exception has occured.
2024-01-03T15:32:10.225Z error: Cannot convert object to primitive value
TypeError: Cannot convert object to primitive value
at actionPandoc (/home/yoden/work/project/codimd/lib/note/noteActions.js:136:36)
at noteActions (/home/yoden/work/project/codimd/lib/note/index.js:187:7) {
level: 'error',
timestamp: '2024-01-03T15:32:10.225Z',
[Symbol(level)]: 'error',
[Symbol(message)]: '2024-01-03T15:32:10.225Z error: \tCannot convert object to primitive value'
}
2024-01-03T15:32:10.226Z error: Process will exit now.
Suggested fix
Include the problematic part in the try/catch for proper error handling.
The text was updated successfully, but these errors were encountered:
Summary
It takes advantage of the fact that the property of req.query.xxx can be overridden.
(Implicit in
outputFormats[exportType]
, toString is performed on variables such as exportType.)lib/note/noteActions.js#L136
is inside the async function and outside try/catch, so an error here will stop the entire application.codimd/lib/note/noteActions.js
Lines 135 to 136 in cc78023
Step to reproduce
Here it is http://localhost:3000/cCijJWDqR3Ot9etF_oFmDw
Please replace ID accordingly
Suggested fix
Include the problematic part in the try/catch for proper error handling.
The text was updated successfully, but these errors were encountered: