`modules/special-scan.js` 中缺少 `firefox` 导入,在执行特殊扫描时会抛出 `ReferenceError: firefox 未定义`

作者: codeCraft-Ritik创建于 2026年9月3日更新于 2026年9月3日

Description

When running special scans using the FindUserProfilesSpecial mode (which performs deep checks for Facebook, Gmail, and Google accounts), the execution crashes with an unhandled ReferenceError: firefox is not defined.

This occurs because firefox.Options() is instantiated across multiple functions in modules/special-scan.js, but the firefox object is never imported from selenium-webdriver/firefox.js. Furthermore, because new firefox.Options() is called before entering the try { ... } block, the exception results in an unhandled promise rejection.

内容来源: qeeqbox/social-analyzer