View Single Post
Old 10-04-2004   #10 (permalink)
goldfndr
Knight Tooth Puller
 
goldfndr's Avatar
 
Join Date: Aug 2004
Location: Bellevue, WA, USA
Posts: 182
While I have no idea where StumblerX can be retrieved, I can tell you:
  • http://webpages.charter.net/nikolatesla20/ does still exist (although setup.zip is missing)
  • As of 0.4.0, OnScanResult is implemented (I have no idea how well but it does get called a lot). Some other scripts around this forum are using it. You could have it call an external routine, e.g. (untested)
    Code:
    Sub OnScanResult(SSID, BSSID, CapFlags, Signal, Noise, LastSeen)
        CreateObject("WScript.Shell").Run "mycmd.exe " & SSID & " " & BSSID & " " & CapFlags & " " & Signal & " " & Noise & " " & LastSeen
    End Sub
goldfndr is offline   Reply With Quote