Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 1006 Bytes

task-12-searching-for-scripts.md

File metadata and controls

33 lines (20 loc) · 1006 Bytes

Task 12 - Searching for Scripts

Task 12 NSE Scripts Searching for Scripts

Search for "smb" scripts in the /usr/share/nmap/scripts/ directory using either of the demonstrated methods. What is the filename of the script which determines the underlying OS of the SMB server?

Reveal Flag 🚩

🚩smb-os-discovery.nse

Read through this script. What does it depend on?

{% code title="smb-os-discovery.nse line:81" %}

dependencies = {"smb-brute"}

{% endcode %}

{% hint style="warning" %} HINT: Look for dependencies = {} in the Lua script. {% endhint %}

Reveal Flag 🚩

🚩smb-brute