ExamGecko
Question list
Search
Search

Question 1 - 350-701 discussion

Report
Export

In which form of attack is alternate encoding, such as hexadecimal representation, most often observed?

A.

Smurf

Answers
A.

Smurf

B.

distributed denial of service

Answers
B.

distributed denial of service

C.

cross-site scripting

Answers
C.

cross-site scripting

D.

rootkit exploit

Answers
D.

rootkit exploit

Suggested answer: C

Explanation:

Cross site scripting (also known as XSS) occurs when a web application gathers malicious data from a user. The data is usually gathered in the form of a hyperlink which contains malicious content within it. The user will most likely click on this link from another website, instant message, or simply just reading a web board or email message.

Usually the attacker will encode the malicious portion of the link to the site in HEX (or other encoding methods) so the request is less suspicious looking to the user when clicked on.

For example the code below is written in hex: <a href=javascript:alert&# x28'XSS')>Click Here</a> is equivalent to:

<a href=javascript:alert('XSS')>Click Here</a>

Note: In the format "&#xhhhh", hhhh is the code point in hexadecimal form.

asked 10/10/2024
haythem BRIGUI
31 questions
NextNext
User
Your answer:
0 comments
Sorted by

Leave a comment first