Search test library by skills or roles
⌘ K

About the test:

OWASP在线测试评估了候选人对Web应用程序安全中十大漏洞和风险的理解。它涵盖了注射,身份验证破裂,敏感数据暴露等主题。该测试通过多项选择问题评估知识,从而为候选人识别和减轻这些安全漏洞的能力提供见解。

Covered skills:

  • 注射
  • 敏感数据暴露
  • 损坏的访问控制
  • 跨站点脚本(XSS)
  • 使用具有已知漏洞的组件
  • 破裂的身份验证
  • XML外部实体(XXE)
  • 安全性错误
  • 不安全的挑战
  • 记录和监视不足

Try practice test
9 reasons why
9 reasons why

Adaface OWASP Test is the most accurate way to shortlist 安全分析师s



Reason #1

Tests for on-the-job skills

The OWASP Online Test helps recruiters and hiring managers identify qualified candidates from a pool of resumes, and helps in taking objective hiring decisions. It reduces the administrative overhead of interviewing too many candidates and saves time by filtering out unqualified candidates at the first step of the hiring process.

The test screens for the following skills that hiring managers look for in candidates:

  • 能够有效识别和利用注射漏洞
  • 在身份验证和防止身份验证的最佳实践方面知识渊博
  • 了解安全处理和保护敏感数据
  • 熟悉XML外部实体(XXE)以及如何防止攻击
  • 熟练实施和维护安全的访问控件
  • 识别和解决安全性错误的能力
  • 知识渊博,可以防止和减轻跨站点脚本(XSS)攻击
  • 了解安全的避难和预防不安全的避免
  • 意识到具有已知漏洞的组件以及如何处理它们
  • 了解足够有效的伐木和监视的重要性
Reason #2

No trick questions

no trick questions

Traditional assessment tools use trick questions and puzzles for the screening, which creates a lot of frustration among candidates about having to go through irrelevant screening assessments.

View sample questions

The main reason we started Adaface is that traditional pre-employment assessment platforms are not a fair way for companies to evaluate candidates. At Adaface, our mission is to help companies find great candidates by assessing on-the-job skills required for a role.

Why we started Adaface
Try practice test
Reason #3

Non-googleable questions

We have a very high focus on the quality of questions that test for on-the-job skills. Every question is non-googleable and we have a very high bar for the level of subject matter experts we onboard to create these questions. We have crawlers to check if any of the questions are leaked online. If/ when a question gets leaked, we get an alert. We change the question for you & let you know.

How we design questions

这些只是我们库中有10,000多个问题的一个小样本。关于此的实际问题 Owasp在线测试 将是不可行的.

🧐 Question

Medium

Database testcase
Regression Testing
Try practice test
Adaface is developing a new database system called “Helen”. The tester at Adaface developed the following testcase for regression testing:
1. Open Helen
2. Open “Students” database
3. Enter data for “Sid”
4. Set checkpoint
5. Store “Sid” data in “Students” 
6. Restart Helen
7. Read “Sid” data from “Students”
8. Compare checkpoint with the contents
When the tester ran the testcase the first time, it worked as expected. Pick the correct statements:

A: When the test case is ran the second time, the data entry for “Sid” already exists in the database. 
B: When the test case is ran the second time, it performs exactly as it did the first time
C: The testcase is a good example for regression testing “Helen”
D: The testcase is not a good example for regression testing “Helen” since the system behaves differently when the testcase is ran the second time

Medium

Decision Table
Try practice test
Check the following decision table:
 image
What are the expected actions for following testcases?

I: Joey's age is 22. He is a smoker residing in India

II: Jennifer's age is 62. She is a non-smoker not residing in India

A) I - Insure, 10% discount. II - Insure, no discount
B) I - Don't insure. II - Don't insure
C) I - Insure, no discount. II - Don't insure
D) I - Insure, no discount. II - Insure, 10% discount

Easy

Cart Checkout
Incident Report
Try practice test
Review the following incident report written QA team of LWB, Little White Book (an e-commerce app):
1. Place any items in the cart (Say “Nike FST Men”).
2. Place any other (different) item in the shopping cart (Say “Nike Air Max”).
3. Remove “Nike FST Men” from the shopping cart, but leave “Nike Air Max” in the cart.
4. Click on “Check out” button.
5. Expect the app to display the check out screen, instead ‘No items in the shopping cart. Click continue to go back to shopping.’ error message is shown as a popup.
6. Click “Continue”.
7. Expect the app to go to shopping screen to add/remove items from the cart. Instead the app crashes. 
8. The error in steps 5 and 7 occurred in every attempt of 5 attempts (1 2 3 4 and 6).
Which of the following information is missing from the incident report?

Medium

Cookie Security Analysis
Web Application Security
HTTP Cookies
Cross-Domain Communication
Try practice test
You are a cybersecurity officer and a new third-party payment gateway is integrated into your company's e-commerce website. The payment gateway API is hosted on a different domain (pay-gateway.com) than your e-commerce site (my-ecommerce.com). You receive some reports that users are unable to complete their transactions intermittently. 

You obtain the following set of HTTP cookies from an affected user:

1. user_session=1; Domain=my-ecommerce.com; Path=/; Secure; HttpOnly
2. payment_session=xyz123; Domain=pay-gateway.com; Path=/; Secure; HttpOnly
3. cart_id=abcd1234; Domain=my-ecommerce.com; Path=/; Secure
4. csrf_token=efgh5678; Domain=my-ecommerce.com; Path=/; Secure
5. currency=USD; Domain=my-ecommerce.com; Path=/;
6. same_site_test=1; Domain=my-ecommerce.com; Path=/; Secure; SameSite=None
7. payment_verification=; Domain=my-ecommerce.com; Path=/; Secure; HttpOnly

Which of the following configuration modifications would likely solve the intermittent transaction failure issue?
A: Set SameSite=Strict attribute on all cookies.
B: Set "SameSite=None; Secure" attribute on the payment_session cookie.
C: Change the Domain attribute of payment_session cookie to my-ecommerce.com.
D: Set HttpOnly attribute on cart_id and csrf_token cookies.
E: Remove Secure attribute from user_session cookie.

Medium

Security Incident
Log Analysis
Try practice test
You are the security analyst for a company and are currently investigating a security incident. You found the following log entries in your HTTP server logs, which appear to be linked to the incident:

1. 192.0.2.4 - - [24/May/2023:13:15:30 +0000] "GET /wp-login.php HTTP/1.1" 200 167 "-" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; yie8)"
2. 192.0.2.4 - - [24/May/2023:13:15:31 +0000] "POST /wp-login.php HTTP/1.1" 302 152 "http://www.example.com/wp-login.php" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; yie8)"
3. 192.0.2.4 - - [24/May/2023:13:15:32 +0000] "GET /wp-admin/install.php HTTP/1.1" 200 125 "http://www.example.com/wp-admin/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; yie8)"

Based on this information, which of the following statements are correct?
A: The attacker was unable to compromise the Wordpress login page but was successful in accessing the installation page.
B: The attacker attempted to login to a Wordpress site and, despite the login failing, was able to access the Wordpress installation page.
C: The attacker was attempting a dictionary attack on the Wordpress site and accessed the Wordpress installation page.
D: The logs indicate that the attacker was able to compromise the Wordpress login and directly access the installation page.
E: The attacker attempted to login to a Wordpress site, succeeded, and then tried to access the Wordpress installation page.

Medium

Network Traffic Anomaly
Network Traffic Analysis
Network Protocols
Try practice test
You are a cybersecurity engineer working on a network traffic analysis case. You have been given the following set of observations from network logs of the past 24 hours:

- Observation 1: 1,000,000 DNS requests were recorded, 50% more than the usual daily traffic.
- Observation 2: 85% of these DNS requests have the same subdomain but different domain names.
- Observation 3: For each of these DNS requests, an HTTP POST request follows immediately.
- Observation 4: No other significant anomalies were detected in the system logs.

Given these observations, what would you suspect is happening?
A: The network is experiencing a DNS amplification attack
B: There is a misconfiguration in the DNS settings
C: The system is the source of a SYN flood attack
D: A fast-flux DNS network is in operation
E: The system is infected with a DNS tunneling based malware

Medium

SQL Log Analysis
SQL Injection
Log Analysis
Try practice test
You are investigating a possible SQL injection attack on your company's web application. You found the following entries in the HTTP server logs:

Note that each log line contains the following information:

IP Address - Timestamp - Request URI - Request Status - Response Size
 image
Based on the log entries, which of the following statements are correct?
A: The attacker logged in successfully but failed to execute the SQL injection.
B: The attacker failed in the SQL injection attack.
C: The attacker failed to login but successfully accessed the admin page.
D: The attacker performed a successful SQL injection attack that dumped all product information.
E: The attacker was unsuccessful in both the SQL injection attack and the login attempt.

Medium

Misappropriation Post-Migration
DNS Management
Infrastructure Migration
Subdomain Hijacking
Try practice test
A software company decided to move some of their web services from one cloud provider (Vendor A) to another (Vendor B) for better cost optimization. Initially, their main web application "webapp.company.com" was hosted at IP 192.0.2.1 on Vendor A's infrastructure. As part of this transition, it was moved to IP 203.0.113.1 on Vendor B's setup. Subsequently, a secondary web service previously hosted on "serviceA.company.com" at IP 192.0.2.2 (Vendor A), was migrated and re-hosted at "serviceB.company.com" at IP 203.0.113.2 (Vendor B).

A month post-migration, the SEO team reported an unexpected spike in organic traffic to the "company.com" domain. Upon investigating, the IT team noticed unusual activity related to "serviceA.company.com" in the server access logs, including successful HTTP 200 responses from several requests. A suspicious HTTPS GET request, `GET /explicit-content.html HTTP/1.1`, was also recorded.

Running `dig +short serviceA.company.com` returned IP address 198.51.100.1. Cross-checking this information with the company's DNS records revealed:
 image
Based on the details provided, identify the probable cause for the unexpected increase in organic traffic:
A: The company failed to delete the DNS "A" record for "serviceB.company.com" before migration on vendor A.
B: The company failed to delete the DNS "A" record for "serviceA.company.com" after migration.
C: The company did not configure DNS record for webapp.company.com properly on Vendor B's platform.
D: The DNS configuration for serviceB.company.com is incorrect post migration

Medium

Mac address and IP on router hop
Routers
Switches
Try practice test
Refer to the following exhibit:
 image
Host A is sending a packet to Host B. 

1. What is the source and destination MAC address at point PA?
2. What is the source and destination IP address at point PB?
// Option A
PA: source MAC - Mac-A
PA: destination MAC - Mac-B
PB: source IP - 192.168.1.1
PB: destination IP - 192.168.3.1

// Option B
PA: source MAC - Mac-A
PA: destination MAC - Mac-RA
PB: source IP - 192.168.3.3
PB: destination IP - 192.168.3.1

// Option C
PA: source MAC - Mac-A
PA: destination MAC - Mac-B
PB: source IP - 192.168.3.3
PB: destination IP - 192.168.3.1

// Option D
PA: source MAC - Mac-A
PA: destination MAC - Mac-RA
PB: source IP - 192.168.1.1
PB: destination IP - 192.168.3.1

Easy

MX Record, DMARC and Email Authentication
DNS
MX Records
DMARC
SPF
DKIM
Try practice test
You work as a network administrator for a company, "example.com", that recently started experiencing issues with email spoofing. To mitigate the problem, you decide to implement DMARC (Domain-based Message Authentication, Reporting & Conformance) in addition to existing SPF (Sender Policy Framework) and DKIM (DomainKeys Identified Mail) records.

Your current DNS records for example.com include the following:

- MX 10 mail.example.com (IP address 203.0.113.10)
- TXT "v=spf1 ip4:203.0.113.10 -all"
- TXT "v=DKIM1; k=rsa; p=public-key-here"

You add the following DMARC record:

- TXT "_dmarc.example.com" "v=DMARC1; p=quarantine; pct=100; rua=mailto:report@example.com"

After implementing the DMARC record, an external mail server sends an email to your domain. The email passes the SPF and DKIM checks but fails the DMARC check.

What will likely happen to the email?
A: The email will be accepted and delivered to the recipient's inbox.
B: The email will be rejected and returned to the sender as undeliverable.
C: The email might be delivered to the recipient's spam or junk folder.
D: The email will be accepted, but a report will be sent to the sender.
E: The email will be silently discarded, and the sender will not be notified.

Medium

Remote network resources
Gateway
Routing protocols
Try practice test
Review the following exhibit:
 image
Angelina noticed that the computers on 192.168.10.0/24 network can ping their default gateway. But they found that these computers cannot connect to any remote network resources. Which of the following is the most likely reason for this?

Medium

SSL Certificate Expiry
SSL/TLS
Network Security
Try practice test
You are a network administrator for an e-commerce company. The company's online store allows customers to browse products and make purchases securely over the internet. The online store uses SSL/TLS for secure communication. You receive reports that some customers are seeing a security warning in their web browsers when trying to access the online store. Upon investigation, you discover the following information:

- The SSL certificate used by the online store's web server is valid for one year and is due to expire in two days.
- The web server is configured to automatically redirect HTTP traffic to HTTPS.
- The SSL certificate was issued by a trusted certificate authority (CA), and all major web browsers have the CA's root certificate in their trusted certificate stores.
- The SSL certificate includes the correct domain name for the online store.

Given the above information, which of the following steps should be taken to resolve the issue and prevent customers from seeing the security warning?
A: Extend the validity of the current SSL certificate by one year.
B: Obtain a new SSL certificate from the same CA and install it on the web server before the current certificate expires.
C: Remove the automatic redirect from HTTP to HTTPS on the web server.
D: Ask customers to ignore the security warning and proceed to the online store.
E: Replace the SSL certificate with a self-signed certificate.
🧐 Question🔧 Skill

Medium

Database testcase
Regression Testing

2 mins

Testing
Try practice test

Medium

Decision Table

3 mins

Testing
Try practice test

Easy

Cart Checkout
Incident Report

2 mins

Testing
Try practice test

Medium

Cookie Security Analysis
Web Application Security
HTTP Cookies
Cross-Domain Communication

2 mins

Cyber Security
Try practice test

Medium

Security Incident
Log Analysis

2 mins

Cyber Security
Try practice test

Medium

Network Traffic Anomaly
Network Traffic Analysis
Network Protocols

2 mins

Cyber Security
Try practice test

Medium

SQL Log Analysis
SQL Injection
Log Analysis

2 mins

Cyber Security
Try practice test

Medium

Misappropriation Post-Migration
DNS Management
Infrastructure Migration
Subdomain Hijacking

3 mins

Cyber Security
Try practice test

Medium

Mac address and IP on router hop
Routers
Switches

2 mins

Computer Networks
Try practice test

Easy

MX Record, DMARC and Email Authentication
DNS
MX Records
DMARC
SPF
DKIM

2 mins

Computer Networks
Try practice test

Medium

Remote network resources
Gateway
Routing protocols

3 mins

Computer Networks
Try practice test

Medium

SSL Certificate Expiry
SSL/TLS
Network Security

2 mins

Computer Networks
Try practice test
🧐 Question🔧 Skill💪 Difficulty⌛ Time
Database testcase
Regression Testing
Testing
Medium2 mins
Try practice test
Decision Table
Testing
Medium3 mins
Try practice test
Cart Checkout
Incident Report
Testing
Easy2 mins
Try practice test
Cookie Security Analysis
Web Application Security
HTTP Cookies
Cross-Domain Communication
Cyber Security
Medium2 mins
Try practice test
Security Incident
Log Analysis
Cyber Security
Medium2 mins
Try practice test
Network Traffic Anomaly
Network Traffic Analysis
Network Protocols
Cyber Security
Medium2 mins
Try practice test
SQL Log Analysis
SQL Injection
Log Analysis
Cyber Security
Medium2 mins
Try practice test
Misappropriation Post-Migration
DNS Management
Infrastructure Migration
Subdomain Hijacking
Cyber Security
Medium3 mins
Try practice test
Mac address and IP on router hop
Routers
Switches
Computer Networks
Medium2 mins
Try practice test
MX Record, DMARC and Email Authentication
DNS
MX Records
DMARC
SPF
DKIM
Computer Networks
Easy2 mins
Try practice test
Remote network resources
Gateway
Routing protocols
Computer Networks
Medium3 mins
Try practice test
SSL Certificate Expiry
SSL/TLS
Network Security
Computer Networks
Medium2 mins
Try practice test
Reason #4

1200+ customers in 75 countries

customers in 75 countries
Brandon

借助 Adaface,我们能够将初步筛选流程优化高达 75% 以上,为招聘经理和我们的人才招聘团队节省了宝贵的时间!


Brandon Lee, 人事主管, Love, Bonito

Try practice test
Reason #5

Designed for elimination, not selection

The most important thing while implementing the pre-employment Owasp在线测试 in your hiring process is that it is an elimination tool, not a selection tool. In other words: you want to use the test to eliminate the candidates who do poorly on the test, not to select the candidates who come out at the top. While they are super valuable, pre-employment tests do not paint the entire picture of a candidate’s abilities, knowledge, and motivations. Multiple easy questions are more predictive of a candidate's ability than fewer hard questions. Harder questions are often "trick" based questions, which do not provide any meaningful signal about the candidate's skillset.

Science behind Adaface tests
Reason #6

1 click candidate invites

Email invites: You can send candidates an email invite to the Owasp在线测试 from your dashboard by entering their email address.

Public link: You can create a public link for each test that you can share with candidates.

API or integrations: You can invite candidates directly from your ATS by using our pre-built integrations with popular ATS systems or building a custom integration with your in-house ATS.

invite candidates
Reason #7

Detailed scorecards & benchmarks

查看样本记分卡
Try practice test
Reason #8

High completion rate

Adaface tests are conversational, low-stress, and take just 25-40 mins to complete.

This is why Adaface has the highest test-completion rate (86%), which is more than 2x better than traditional assessments.

test completion rate
Reason #9

Advanced Proctoring


Learn more

About the OWASP Assessment Test

Why you should use Pre-employment OWASP Online Test?

The Owasp在线测试 makes use of scenario-based questions to test for on-the-job skills as opposed to theoretical knowledge, ensuring that candidates who do well on this screening test have the relavant skills. The questions are designed to covered following on-the-job aspects:

  • 测试Web应用程序中的注射漏洞
  • 了解和实施安全的身份验证机制
  • 识别和解决与敏感数据暴露有关的问题
  • 检测和缓解XML外部实体(XXE)攻击
  • 设计和实施强大的访问控制措施
  • 解决常见的安全性错误配置以确保应用程序安全
  • 防止对Web应用程序的跨站点脚本(XSS)攻击
  • 处理安全的数据以防止剥削
  • 识别和解决由使用已知安全缺陷的组件引起的漏洞
  • 实施足够的记录和监视以进行有效的事件响应

Once the test is sent to a candidate, the candidate receives a link in email to take the test. For each candidate, you will receive a detailed report with skills breakdown and benchmarks to shortlist the top candidates from your pool.

What topics are covered in the OWASP Online Test?

  • 破坏身份验证</h4> <p <p >损坏的身份验证是指由于身份验证和会话管理机制的实施不佳而引起的漏洞。它可能导致未经授权的访问,身份盗用以及敏感用户信息的暴露。衡量测试中的这一技能有助于评估候选人对安全身份验证实践的理解及其识别和解决身份验证缺陷的能力。</p> <h4>敏感的数据暴露

    敏感的数据暴露是指的情况。敏感信息(例如密码或信用卡详细信息)由于实施的安全控制不佳而暴露出来。在测试中测量了该技能,以评估候选人对安全数据处理实践的了解及其识别和减轻可能导致数据泄露和侵犯隐私的脆弱性的能力。

  • XML外部实体(XXE)< /H4> <p> XML外部实体(XXE)是一个漏洞,当XML解析器配置不安全并允许外部实体进行定义和处理时,会发生。可以利用这来读取敏感文件,执行服务器端请求或启动拒绝服务攻击。在测试中衡量这项技能有助于评估候选人对安全XML处理的理解及其检测和防止XXE漏洞的能力。</p> <h4>损坏的访问控制

    破裂的访问控制指向访问中的弱点允许未经授权用户获得提高特权或访问敏感资源的控制机制。测量测试中的这项技能有助于评估候选人对访问控制原则的理解及其识别和减轻访问控制漏洞的能力,以防止未经授权的措施和数据暴露。

  • 安全性错误构造

    安全性错误配置是指不安全的配置设置和默认设置,这些设置可能会使系统和应用程序容易受到攻击。在测试中测量了该技能,以评估候选人对安全配置实践的了解及其识别和纠正可能导致安全漏洞和未经授权的访问的错误配置的能力。

  • 跨站点脚本(XSS)</ H4> <p>跨站点脚本(XSS)是指将恶意脚本注入其他用户查看的网页时发生的漏洞。这可能会导致网站盗窃敏感信息,会话劫持和污损。测量测试中的这一技能有助于评估候选人对XSS漏洞的理解,识别和减轻XSS攻击的能力以及对安全编码实践的了解。</p> <h4>不安全的要求</h4>是指在未经适当验证和消毒的情况下进行不受信任的数据的漏洞。利用此漏洞可以导致远程代码执行,篡改对象状态或拒绝服务攻击。在测试中衡量这项技能有助于评估候选人对安全的挑选实践的理解及其检测和防止不安全的应有性挑战漏洞。</p> <h4>使用具有已知漏洞的组件</p> <h4>使用具有已知漏洞的组件的组件

    指的是使用过时或易受攻击的第三方库,框架或插件,可以将安全弱点引入应用程序。测量测试中的这一技能有助于评估候选人对使用此类组件相关的风险及其识别和减轻其使用已知漏洞的组件引起的脆弱性的能力。

  • Full list of covered topics

    The actual topics of the questions in the final test will depend on your job description and requirements. However, here's a list of topics you can expect the questions for Owasp在线测试 to be based on.

    注射
    SQL注入
    跨站点脚本(XSS)
    跨站点伪造(CSRF)
    服务器端请求伪造(SSRF)
    XML外部实体(XXE)
    破裂的身份验证
    密码哈希
    多因素身份验证(MFA)
    会话管理
    敏感数据暴露
    加密
    数据掩盖
    访问控制
    基于角色的访问控制(RBAC)
    特权升级
    安全性错误
    安全配置
    错误处理
    安全编码标准
    内容安全策略(CSP)
    内容输送网络(CDN)
    跨原生资源共享(CORS)
    不安全的直接对象参考(idor)
    服务器端验证
    客户端验证
    JSON Web令牌(JWT)
    安全文件上传
    主机注射
    点击劫机
    固定饼干
    HTTP安全标头
    内容欺骗
    不安全的挑战
    使用具有已知漏洞的组件
    打开Web应用程序安全项目(OWASP)
    OWASP前10名
    OWASP测试指南
    OWASP ZAP(ZED攻击代理)
    Web应用程序防火墙(WAF)
    安全软件开发生命周期(SDLC)
    威胁建模
    安全代码审查
    渗透测试
    安全事件响应
    脆弱性扫描
    日志分析
    安全信息和事件管理(SIEM)
    网络流量监视
    入侵检测系统(IDS)
    入侵预防系统(IPS)
    安全意识培训
    安全开发框架
    安全的第三方库
Try practice test

What roles can I use the OWASP Online Test for?

  • 安全分析师
  • 穿透测试仪
  • 系统管理员
  • 网络工程师
  • IT审核员
  • 安全顾问
  • IT经理
  • 风险经理

How is the OWASP Online Test customized for senior candidates?

For intermediate/ experienced candidates, we customize the assessment questions to include advanced topics and increase the difficulty level of the questions. This might include adding questions on topics like

  • 在Web应用程序上执行全面的安全测试
  • 分析和确保网络基础架构以防止网络攻击
  • 了解和实施安全的协议和加密算法
  • 配置和维护防火墙和入侵检测系统
  • 监视和减轻对计算机网络的威胁
  • 实施安全的无线网络协议和访问控件
  • 故障排除网络连接和性能问题
  • 了解和解决网络协议中的漏洞
  • 确保云基础架构和服务免受潜在风险
  • 设计和实施网络基础架构的灾难恢复计划
Singapore government logo

招聘经理认为,通过小组面试中提出的技术问题,他们能够判断哪些候选人得分更高,并与得分较差的候选人区分开来。他们是 非常满意 通过 Adaface 筛选入围的候选人的质量。


85%
减少筛查时间

OWASP Hiring Test 常见问题解答

我可以将多个技能结合在一起,为一个自定义评估吗?

是的,一点没错。自定义评估是根据您的职位描述进行的,并将包括有关您指定的所有必备技能的问题。

您是否有任何反交换或策略功能?

我们具有以下反交易功能:

  • 不可解决的问题
  • IP策略
  • Web Protoring
  • 网络摄像头Proctoring
  • 窃检测
  • 安全浏览器

阅读有关[Proctoring功能](https://www.adaface.com/proctoring)的更多信息。

如何解释考试成绩?

要记住的主要问题是评估是消除工具,而不是选择工具。优化了技能评估,以帮助您消除在技术上没有资格担任该角色的候选人,它没有进行优化以帮助您找到该角色的最佳候选人。因此,使用评估的理想方法是确定阈值分数(通常为55%,我们为您提供基准测试),并邀请所有在下一轮面试中得分高于门槛的候选人。

我可以使用该测试的经验水平?

每个ADAFACE评估都是为您的职位描述/理想候选角色定制的(我们的主题专家将从我们的10000多个问题的图书馆中选择正确的问题)。可以为任何经验级别定制此评估。

每个候选人都会得到同样的问题吗?

是的,这使您比较候选人变得容易得多。 MCQ问题的选项和问题顺序是随机的。我们有[抗欺骗/策略](https://www.adaface.com/proctoring)功能。在我们的企业计划中,我们还可以选择使用类似难度级别的问题创建多个版本的相同评估。

我是候选人。我可以尝试练习测试吗?

不,不幸的是,我们目前不支持实践测试。但是,您可以使用我们的[示例问题](https://www.adaface.com/questions)进行练习。

使用此测试的成本是多少?

您可以查看我们的[定价计划](https://www.adaface.com/pricing/)。

我可以免费试用吗?

我刚刚搬到了一个付费计划。我如何要求自定义评估?

customers across world
Join 1200+ companies in 75+ countries.
立即尝试最候选的友好技能评估工具。
g2 badges
Ready to use the Adaface Owasp在线测试?
Ready to use the Adaface Owasp在线测试?
logo
40 min tests.
No trick questions.
Accurate shortlisting.
术语 隐私 信任指南

🌎选择您的语言

English Norsk Dansk Deutsche Nederlands Svenska Français Español Chinese (简体中文) Italiano Japanese (日本語) Polskie Português Russian (русский)
ada
Ada
● Online
✖️