About 1,270,000 results
Open links in new tab
  1. 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 example, if we do...

  2. What does Python's eval() do? - Stack Overflow

    Eval function try to execute and interpret the string (argument) passed to it as python code. x=1 print (eval ('x+1')) Output of the above code will be 2. The disadvantage of such approach is that ,user get independence of writing code which can result in havoc conditions.Though you can restrict users from accessing many variables and methods by passing global and local …

  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. puppeteer - How to use .$$eval function - Stack Overflow

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

  5. CSP safe usage of 'unsafe-inline' 'unsafe-eval' - Stack Overflow

    Aug 4, 2020 · It's definitely better if you can avoid unsafe-inline and unsafe-eval. The usual cause for seeing/needing unsafe-inline is having inline styles or style tags on the page.

  6. What is the "eval" command in bash? - Unix & Linux Stack Exchange

    eval is a bash-builtin and is documented in the man page of bash. So just type "man bash" and search for the appropriate section for eval. This applies for other bash-builtins, too.

  7. 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 browser.

  8. 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?

  9. Understanding ASP.NET Eval () and Bind () - Stack Overflow

    Nov 22, 2009 · Can anyone show me some absolutely minimal ASP.NET code to understand Eval() and Bind()? It is best if you provide me with two separate code-snippets or may be web-links.

  10. Evaluate Typescript from string? - Stack Overflow

    Jul 18, 2017 · Thanks for correcting. My issue on understanding the question as I didn't see it's an Eval of a typescript. Anyway if anyone is looking for alternatives without typescript.