Questions tagged [websecurity]

Taggable items within web security include the following: - Cross-Site Scripting (XSS) - Local File Inclusion (LFI) - Remote File Inclusion (RFI) - Remote Code Execution (RCE) - PHP Code Injection - HTTP Protocol Violation - Shellshock - Session Fixation - Scanner Detection - Metadata/Error Leakages - Project Honey Pot Blacklist - SSL related question To learn more about these topics, visit: https://owasp.org/ For further questions or definitions on web security, check out:

Protecting a client's encryption key

I was given the task of enhancing the security of a website that utilizes Angular v15 + JWT. The first step was to alter the login POST-request (HTTPS) from this format: /api/login?username=user_name&password=pass123 to this format: /api/login?credent ...

Tips for safeguarding AJAX or javascript-based web applications

Utilizing AJAX, this function retrieves information about an image in the database with the ID of 219 when a button is clicked. Any visitor to this webpage has the ability to alter the JavaScript code by inspecting the source code. By modifying the code a ...