About 50 results
Open links in new tab
  1. security - What is javascript injection and how it could be use in ...

    Apr 3, 2012 · XSS is usually the attack to read up on when one talks about javascript injection. Basically you load malicious javascript into a web page that can be later used for phishing. I don't think there …

  2. Preventing HTML and Script injections in Javascript

    Learn how to prevent HTML and script injections in JavaScript to enhance web security and protect your application from potential vulnerabilities.

  3. How to prevent Javascript injection attacks within user-generated HTML

    How to prevent Javascript injection attacks within user-generated HTML Asked 16 years, 8 months ago Modified 5 years, 4 months ago Viewed 104k times

  4. What is the simplest check possible for an HTML/JS injection attack?

    Jul 20, 2017 · function isItSafe(text) { return text.indexOf('<') === -1; } But maybe that's naive. Especially, when some exploits rely on how a certain browser behaves in response to invalid HTML. …

  5. javascript - What should be entered into the username box to execute …

    Apr 5, 2023 · If it is being generated in an insecure way, it could potentially be manipulated by an attacker to execute a SQL injection attack. Example A SQL injection attack could be attempted by …

  6. How to prevent script injection attacks - Stack Overflow

    Oct 29, 2019 · This question is to address these issues and serve as current and historical reference as technology improves -or new/better methods are discovered to address browser security issues …

  7. How to prevent JavaScript Injection Attacks - Stack Overflow

    To prevent Javascript injection, you should have a Validation Feature whenever you allow your user to enter something. Try to use libraries that determine Javascript scripts that are entered to the form.

  8. javascript - Preventing SQL injection in Node.js - Stack Overflow

    Preventing SQL injection in Node.js Asked 12 years, 10 months ago Modified 4 years, 3 months ago Viewed 219k times

  9. Javascript injection attack prevention for textboxes

    Nov 26, 2010 · Javascript injection attack prevention for textboxes Asked 14 years, 11 months ago Modified 5 years, 10 months ago Viewed 5k times

  10. Server Side JavaScript Code Injection Attack - Stack Overflow

    3 What is "Server-Side JavaScript code injection" (as opposed to Client-Side Injection -XSS)? It is a vulnerability that allows an attacker to execute their JavaScript code on your server (as opposed to in …