-
Notifications
You must be signed in to change notification settings - Fork 197
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Issue with eval
usage in codebase
#744
Comments
My argument is that an attacker needs to have control of the DOM at the time of the initial page load in order to exploit the eval. In order for the code to be untrusted, the user would have to load untrusted html during the initial page load (could not come from user input). The one issue is the developer may think they have properly sanitized this HTML to remove script tags only for data-callback to provide a workaround for the sanitation. Of course, if they are aware of this issue they can easily sanitize away the data-callback. |
There's also a certain amount of anooying side effects - vite build warns you on every build:
This also violates any and every security scanning policy of any kind, so causes CI pipelines that include SAST or other security scanning to fail, or emit warnings, depending on policy. This does make it somewhat harder to use this component in my projects, regardless of any discussion about actual vulnerabilities. |
Is there an equivalent of a preprocessor macro that would allow this code to be omitted within your build system (prior to linting) while maintaining backwards compatibility? |
@dkoes Is there a place where the usage of Corresponding code: Line 239 in ceda936
Line 269 in ceda936
It seems redundant with the
Please let's not take this road. We must work to improve the library's code and not rely on end user hacking away vulnerable code. |
Issue #744. At least it is used only in one place now.
Hello everyone 👋
Description
3Dmol.js uses
eval()
to execute arbitrary strings.3Dmol.js/src/autoload.ts
Lines 233 to 238 in b038d7b
This means that if the
data-callback
attribute is controlled by an attacker, they can execute any JS code they want on the victim computer (the victim loads the page that contains the nefarious attribute, and 3Dmol.js will happily execute it).This is a (major) security vulnerability in my book, but @dkoes disagrees, so I'll try and argument my point.
I'm skipping the arguments about eval's speed and worsen DX, because that's not the point.
The main problems are:
the mere presence of this
eval()
call that will be blocked by most Content Security Policy, unless unsafe-eval is set but this is clearly not a possibility for any web application serious about security. This means that the application will not work properly in this context, and code should be modified to avoid the use ofeval()
completely.It is entirely possible for an attacker to have control of the data attributes, you cannot know how apps can behave and as such should not dismiss this problem by assuming only the dev can modify data attributes of elements. A first bug/vuln could also allow an attacker to get this access, and then they use this problematic
eval()
in 3dmol code to inject the payload to the visitor of the infected page.Further points:
Simply look at this MDN page for eval
Does it look like something that should exist in a codebase? I'd say no. If a big red banner on MDN website is not enough, feel free to read more about it:
https://javascript.plainenglish.io/javascript-eval-is-it-evil-a8cd935d0daa
https://security.stackexchange.com/questions/94017/what-are-the-security-issues-with-eval-in-javascript
https://www.codiga.io/blog/javascript-eval-best-practices/
https://www.digitalocean.com/community/tutorials/js-eval
https://medium.com/@eric_lum/the-dangerous-world-of-javascripts-eval-and-encoded-strings-96fd902af2bd
...
I mean there are thousands of articles out there explaining why it is bad.
Fortunately, its usage is pretty limited in 3dmol, so it shouldn't cause too much troubles to address this issue.
To Reproduce
Expected behavior
Arbitrary javascript code present in HTML must not be executed by a library present on the page.
Concluding remarks
I hope you will give sufficient interest towards this issue and consider the workarounds I suggested in my email or think about a way to still keep a similar feature but without this problematic
eval
usage.Also, I couldn't find any documentation about this feature so I'm not sure it is being used outside of your own usage.
Finally, from the
tests
folder, it looks like the expected functions are all from 3dmol, so it is not designed for completely arbitrary code execution but rather from a list of existing 3dmol functions. So the "allowlist" approach would work IMHO.Instead of
data-callback="$3dmol.foo()"
anddata-callback="$3dmol.bar()"
, one could use:data-foo
anddata-bar
instead.I understand using
eval
is a quick and dirty working solution, but I hope you understand that it is a bad solution that must be removed from the codebase.Best regards,
~Nicolas
The text was updated successfully, but these errors were encountered: