About 19,300,000 results
Open links in new tab
  1. What does Python's eval() do? - Stack Overflow

    See also: Why is using 'eval' a bad practice? to understand the critical security risks created by using eval or exec on untrusted input (i.e.: anything that is even partially under the user's …

  2. The 'eval' command in Bash and its typical uses - Stack Overflow

    After reading the Bash man pages and with respect to this post, I am still having trouble understanding what exactly the eval command does and which would be its typical uses. For …

  3. Exploiting JavaScript's eval() method - Stack Overflow

    Aug 13, 2013 · Learn about potential vulnerabilities and exploitation techniques of JavaScript's eval() method, along with best practices to mitigate risks.

  4. Is there ever a good reason to use eval ()? - Stack Overflow

    Dec 1, 2009 · This question cannot be language-agnostic because of the special role of block eval in Perl as the primary exception handling mechanism. Therefore, I submit to you that there …

  5. puppeteer - How to use .$$eval function - Stack Overflow

    Jul 11, 2018 · How to use .$$eval function Asked 7 years, 4 months ago Modified 3 years, 4 months ago Viewed 33k times

  6. Why is using the JavaScript eval function a bad idea? [closed]

    The eval function is a powerful and easy way to dynamically generate code, so what are the caveats?

  7. github - eval is not recognised on Windows - Stack Overflow

    Sep 19, 2021 · 1 PowerShell instance that comes up when opened from the original GitHub toolkit (containing also Git Bash), which preloads some aliases or other functionality. eval itself might …

  8. What are the Alternatives to eval in JavaScript? - Stack Overflow

    May 22, 2017 · Everyone says eval is EVIL (as in bad) and slow (as I have found), but I can't really do anything else - the server simply pulls the data out the database and pushes to the …

  9. When is JavaScript's eval () not evil? - Stack Overflow

    Oct 13, 2008 · To the point, let's look at the dangers in the use of eval (). There are probably many small hidden dangers just like everything else, but the two big risks - the reason why …

  10. What's the main benefit of using eval () in JavaScript?

    eval makes it possible to execute (or evaluate) a string of javascript code. Thus, it is applicable when you want someone to execute a string of javascript code.