Week 13b

Week 13b

University

10 Qs

quiz-placeholder

Similar activities

Tehnologii Web

Tehnologii Web

University

10 Qs

Internet and mobile programming 5

Internet and mobile programming 5

University

11 Qs

Mobile App. Dev. - sem6 Grp(B)

Mobile App. Dev. - sem6 Grp(B)

University

7 Qs

Mobile App. - Android studio 2023-2024 G(B)

Mobile App. - Android studio 2023-2024 G(B)

University

8 Qs

quiz-1-Mobile Application development using Android

quiz-1-Mobile Application development using Android

University

15 Qs

Web/System Exploitation

Web/System Exploitation

1st Grade - Professional Development

9 Qs

DW (EM25) - Introducción al Internet [T1]

DW (EM25) - Introducción al Internet [T1]

University - Professional Development

15 Qs

PHP MySQL

PHP MySQL

University

10 Qs

Week 13b

Week 13b

Assessment

Quiz

Computers

University

Hard

Created by

A Moreno

Used 12+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Your application sets a cookie with Secure attribute. What does this mean?

The cookie can not be accessed by JavaScript

The cookie will not be sent cross-domain

Client will send the cookie only over an HTTPS connection

none of these

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

The session ID must be renewed after...

A short idle period (ie. 30 seconds)

When a new window is created

Any privilege level change

A client logs in

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Your web server supports secure (HTTPS) connections. By design, which of the following is the best way to make sure a client will not accidentally request a page over non-secure HTTP connection?

Completely close port 80

Use HTTP Strict-Transport-Security

Redirect all requests for port 80 to port 443

disable port 433

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Your application performs logging queries after certain events. Timestamp, IP address, POST payload and a type of action will be saved to a MySQL database. Is it possible for an adversary to bypass this logging query by sending specifically crafted POST payload?

No, if escaping is used (ie. mysql_real_escape_string() function in PHP)

Yes, further validation is needed on the input data

No, if the SQL query is performed using a prepared statement with correctly set character encoding

Yes, because posts are generally associated with malicious payloads

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

You use a 104-bit, cryptographically strong, random number (hexadecimal encoded, for example) as your password on a web site which stores passwords as plain MD5 hashes: md5 (password). Is it safe to assume your password will be safe if the user database leaks?

Yes

No, because of the broken collision resistance of MD5

maybe...?

No, because of the lack of salting and stretching

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

You are running Apache + PHP server. PHP runs as an Apache module:

AddHandler php5-script .php

You allow users to upload avatar images (in PNG format). Avatar filename is allowed to contain characters: "a-z0-9.-".

Is it safe to assume you are secure against PHP code execution launched via uploaded files?

Yes, if I make sure the filename ends with .png extension

occassionally

No, further configuration is needed on the server-side

Yes, if I reject files that do not pass getimagesize()

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Your PHP application reads user submitted XML documents using DOM. You fetch certain element values from the XML:

$doc = new DOMDocument();

$doc->loadXML($xml);

$params = $doc->getElementsByTagName('parameters');

You display some of those parameters on the user's account settings page. Is it possible to exploit this scenario with a maliciously crafted XML document?

yes

No, if I make sure the user submitted XML is well-formed

maybe?

No, if I escape the data before displaying on the account page

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?