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
in ShinyTreeMenu/R/ShinyTreeMenuHTML.R* treedata <- treedata[eval(parse(text = lookfor))]
I especially discourage use eval-parse in server-side / client-side interactions for security reasons. Client-side injections may be possible. Or at least maintainers have to consider this every time updating the code.
from library(fortunes)...
Thomas Lumley's fortune "If the answer is parse() you should usually rethink the question."
funny example of sql-injection
The text was updated successfully, but these errors were encountered:
Reading through the code I found this in file:
treedata <- treedata[eval(parse(text = lookfor))]
I especially discourage use eval-parse in server-side / client-side interactions for security reasons. Client-side injections may be possible. Or at least maintainers have to consider this every time updating the code.
from library(fortunes)...
funny example of sql-injection
The text was updated successfully, but these errors were encountered: