Test details
Intermediate
June 2026
275 minutes
4.5/5(1)
Cyber Security
This test consists of 20 questions randomly selected from a database of 1 questions in .Discover all our interview questions and answers here
Actual season (Summer 2026)
⌛ Ranking not yet available !The ranking will be available when a minimum of developers have completed it.
Test author : WeLoveDevs
Contributors1
Sample question
Quelle condition complète correctement la vérification pour empêcher une attaque SSRF (Server-Side Request Forgery) ?
import requests
from urllib.parse import urlparse
ALLOWED_DOMAINS = {'api.service.com', 'internal.data.local'}
def fetch_resource(user_url):
parsed = urlparse(user_url)
if ______________:
return requests.get(user_url).text
raise ValueError("Domaine non autorisé")