Question: A Web app encodes user = AAAA as dXNlcj 1 BQUFB . What encoding is this? a . Base 6 4 encoding b . Hex

A Web app encodes user=AAAA as dXNlcj1BQUFB. What encoding is this?
a.
Base64 encoding
b.
Hex encoding
c.
Unicode encoding
d.
URL encoding
Question 16
The Jetty web server used the Java API java.util.Random to generate session tokens. It generates the next number in the sequence as follows:
Synchronized protected int next (int bits){
seed =(seed *0x5DEECE66DL +0xBL) & ((1L <<48)-1);
return (int)(seed >>>(48 bits)}
[mark all correct answers]
a.
This algorithm is vulnerable to session token prediction attack
b.
This algorithm is not vulnerable to session token predication attack
c.
Knowing this algorithm and a single number generated by it, it is very easy to derive the next number generated by this algorithm
d.
Knowing this algorithm and a single number generated by it, it is very difficult to derive the next number generated by this algorithm

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!