CEH Vulnerability Analysis and System Hacking • Complete Question Bank
Complete CEH Vulnerability Analysis and System Hacking question bank — all 0 questions with answers and detailed explanations.
Refer to the exhibit. ``` $ nmap -sV -p 22,80,443,8080 192.168.1.10 Starting Nmap 7.80 ( https://nmap.org ) at 2025-01-15 10:00 UTC Nmap scan report for 192.168.1.10 Host is up (0.0010s latency). PORT STATE SERVICE VERSION 22/tcp open ssh OpenSSH 7.2p2 Ubuntu 4ubuntu2.10 80/tcp open http Apache httpd 2.4.18 ((Ubuntu)) 443/tcp open ssl/http Apache httpd 2.4.18 ((Ubuntu)) 8080/tcp open http Apache Tomcat 8.5.5 MAC Address: 00:1A:2B:3C:4D:5E (Unknown) Service detection performed. Please report any incorrect results at https://nmap.org/submit/ Nmap done: 1 IP address (1 host up) scanned in 12.34 seconds ```
Refer to the exhibit. Target: 192.168.1.10 Port scanning results: PORT STATE SERVICE 22/tcp open ssh 80/tcp open http 443/tcp open https 3306/tcp open mysql 8080/tcp open http-proxy Vulnerability scan summary: - SSH: OpenSSH 7.2p2 (CVE-2016-6210 - High) - HTTP: Apache 2.4.7 (CVE-2015-0228 - Medium) - MySQL: MySQL 5.5.52 (CVE-2016-6662 - Critical) - Proxy: Squid 3.5.23 (CVE-2019-12524 - High)
# /etc/shadow (partial) root:$6$xyz$abcdef...:18000:0:99999:7::: admin:$6$abc$12345...:18005:0:99999:7::: user:$1$def$67890...:18000:0:99999:7::: # /etc/login.defs PASS_MAX_DAYS 90 PASS_MIN_DAYS 0 PASS_WARN_AGE 7 ENCRYPT_METHOD SHA512
nmap -sV -p 22,80,443,8080 192.168.1.100 Starting Nmap 7.80 ( https://nmap.org ) Nmap scan report for 192.168.1.100 PORT STATE SERVICE VERSION 22/tcp open ssh OpenSSH 7.2p2 Ubuntu 4ubuntu2.10 80/tcp open http Apache httpd 2.4.18 ((Ubuntu)) 443/tcp open ssl/http Apache httpd 2.4.18 ((Ubuntu)) 8080/tcp open http-proxy Squid http proxy 3.5.12 Service Info: OS: Linux; CPE: cpe:/o:linux:linux_kernel
C:\Users\Admin>net localgroup Administrators Alias name Administrators Comment Administrators have complete and unrestricted access to the computer/user Members ------------------------------------------------------------------------------- Administrator DomainAdmin SupportUser BackupAdmin The command completed successfully.
A security analyst observes the following SSH logs:
sshd[1234]: Failed password for root from 203.0.113.7 port 22 ssh2 sshd[1235]: Failed password for root from 203.0.113.7 port 22 ssh2 sshd[1236]: Failed password for root from 203.0.113.7 port 22 ssh2 sshd[1237]: Failed password for root from 203.0.113.7 port 22 ssh2 sshd[1238]: Failed password for root from 203.0.113.7 port 22 ssh2
Which attack technique is being used?
Aug 15 10:23:45 server sshd[12345]: Failed password for root from 10.0.0.50 port 54321 ssh2 Aug 15 10:23:46 server sshd[12346]: Failed password for root from 10.0.0.50 port 54322 ssh2 Aug 15 10:23:47 server sshd[12347]: Failed password for root from 10.0.0.50 port 54323 ssh2 Aug 15 10:23:48 server sshd[12348]: Failed password for root from 10.0.0.50 port 54324 ssh2 Aug 15 10:23:49 server sshd[12349]: Failed password for root from 10.0.0.50 port 54325 ssh2
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" version="2.4">
<display-name>VulnerableApp</display-name>
<servlet>
<servlet-name>LoginServlet</servlet-name>
<servlet-class>com.example.LoginServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>LoginServlet</servlet-name>
<url-pattern>/login</url-pattern>
</servlet-mapping>
<error-page>
<error-code>500</error-code>
<location>/error.jsp</location>
</error-page>
<session-config>
<session-timeout>60</session-timeout>
</session-config>
</web-app>C:\Users\Admin>systeminfo | findstr /B /C:"OS Name" /C:"OS Version" /C:"System Type"
OS Name: Microsoft Windows 10 Pro
OS Version: 10.0.19041 N/A Build 19041
System Type: x64-based PC
C:\Users\Admin>wmic qfe get HotFixID,InstalledOn | findstr /V "QFE"
HotFixID InstalledOn
KB5000802 3/15/2021
KB5000822 3/22/2021
KB5001330 4/13/2021
C:\Users\Admin>reg query "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v LocalAccountTokenFilterPolicy
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System
LocalAccountTokenFilterPolicy REG_DWORD 0x1Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag a concept onto its matching description — or click a concept then click the description.
Social engineering via deceptive emails
Intercepting communication between two parties
Inserting malicious SQL queries into input fields
Overwhelming a system to make it unavailable
Associating attacker's MAC with victim's IP
netstat -ano | findstr :3389 TCP 0.0.0.0:3389 0.0.0.0:0 LISTENING 1234 TCP 192.168.1.10:3389 10.0.0.5:49152 ESTABLISHED 1234 TCP 192.168.1.10:3389 10.0.0.6:49153 ESTABLISHED 1234 netstat -ano | findstr :445 TCP 0.0.0.0:445 0.0.0.0:0 LISTENING 5678 TCP 192.168.1.10:445 192.168.1.20:49154 ESTABLISHED 5678
c:\) hashcat -m 1000 -a 0 hashes.txt wordlist.txt --show $1$abc$12345:password $5$xyz$67890:qwerty $6$def$11111:letmein $2y$10$abcdefg:hunter2 c:\) hashcat -m 1000 -a 0 hashes.txt wordlist.txt --potfile-disable
C:\Users\Admin> wmic qfe get HotFixID,InstalledOn
HotFixID InstalledOn
KB4569558 9/17/2020
KB4570333 9/17/2020
KB4574727 9/8/2020
KB4577586 9/8/2020
C:\Users\Admin> ver
Microsoft Windows [Version 10.0.19041.508]
C:\Users\Admin> reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v CurrentBuild
CurrentBuild REG_SZ 19041nmap -sV -p 22,80,443,3306 target.com Starting Nmap 7.80 ( https://nmap.org ) at 2023-08-15 14:22 EDT Nmap scan report for target.com (192.168.1.100) Host is up (0.0012s latency). PORT STATE SERVICE VERSION 22/tcp open ssh OpenSSH 7.4 (protocol 2.0) 80/tcp filtered http 443/tcp open ssl/http Apache httpd 2.4.6 ((CentOS) OpenSSL/1.0.2k-fips) 3306/tcp open mysql MySQL 5.6.50 Service detection performed. Please report any incorrect results at https://nmap.org/submit/ . Nmap done: 1 IP address (1 host up) scanned in 15.67 seconds