cwong-scw / action-playground

0 stars 2 forks source link

nnnnn #42

Open cwong-scw opened 2 years ago

cwong-scw commented 2 years ago

dom xss aaa

cwong-scw commented 2 years ago

cross site scripting aa

temp-scw-app[bot] commented 2 years ago

Micro-Learning Topic: Cross-site scripting (Detected by phrase)

Matched on "cross site scripting"

What is this? (2min video)

Reflected cross-site scripting vulnerabilities occur when unescaped input is displayed in the resulting page displayed to the user. When HTML or script is included in the input, it will be processed by a user's browser as HTML or script and can alter the appearance of the page or execute malicious scripts in their user context.

Try this challenge in Secure Code Warrior

Useful links

cwong-scw commented 2 years ago

dom xss

temp-scw-app[bot] commented 2 years ago

Micro-Learning Topic: DOM-based cross-site scripting (Detected by phrase)

Matched on "dom xss"

What is this? (2min video)

DOM-based cross-site scripting vulnerabilities occur when unescaped input is processed by client-side script and insecurely written into the page Document Object Model (DOM). This will result in immediate changes to the page, potentially without any call to the server. When HTML or script is included in the input, it will be processed by a user's browser as HTML or script and can alter the appearance of the page or execute malicious scripts in their user context.

Try this challenge in Secure Code Warrior

cwong-scw commented 2 years ago

path traversal a

temp-scw-app[bot] commented 2 years ago

Micro-Learning Topic: Path traversal (Detected by phrase)

Matched on "path traversal"

What is this? (2min video)

Path traversal vulnerabilities occur when inputs that have not been sufficiently validated or sanitised are used to build directory or file paths. If an attacker can influence the path being accessed by the server, they may be able to gain unauthorised access to files or even execute arbitrary code on the server (when coupled with file upload functionality).

Try a challenge in Secure Code Warrior

Helpful references
  • OWASP Input Validation Cheat Sheet - This cheatsheet is focused on providing clear, simple, actionable guidance for preventing injection and input validation flaws in your applications, including defence against path traversal.
  • OWASP Path Traversal - OWASP community page with comprehensive information about path traversal, and links to various OWASP resources to help detect or prevent it.