What are the security issues with AJAX?

Questions by norman   answers by norman

Showing Answers 1 - 12 of 12 Answers

Ajax-based web applications are vulnerable to the same hacking methodologies as 'normal' applications.

The Ajax engine uses JS to capture the user commands and to transform them into function calls. Such function calls are sent in plain visible text to the server and may easily reveal database table fields such as valid product and user IDs, or even important variable names, valid data types or ranges, and any other parameters which may be manipulated by a hacker. 

With this information, a hacker can easily use AJAX functions without the intended interface by crafting specific HTTP requests directly to the server.

  Was this answer useful?  Yes

Bhaumik Mehta

  • May 8th, 2015
 

1. Source code written in AJAX is easily human readable.

2. Attackers can easily insert scripts into the system.

3. JSON data leakage.

4. Database detail can be obtained easily.

  Was this answer useful?  Yes

RaviKumar

  • Jun 28th, 2015
 

Source code written in AJAX is easily human readable

  Was this answer useful?  Yes

Masroor

  • Dec 28th, 2017
 

Security point of view, hackers can hack the script and send there pages to respond, where they may get confidential data

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions