Page 1 of 1

Network Monitor?

PostPosted: Wed Jul 15, 2015 7:23 pm
by bschollnick2
Folks,

I am considering starting work on a plugin, which would add:

* Indigo Web - display of devices on the LAN, Open ports on the said devices (see image)
* And possibly the integration of Network device detection to Indigo

I have a basic demo, see the attached image.

Image

Is there interest in this? If so, I am willing to work on it, but I certainly wouldn't mind help on it...

This plugin would require a copy of FING on the system, the main data source is from FING, but I getting the data from the session files that FING creates.

Additional possibilities here could be BlueTooth Device detection, and/or the incorporation of Find My iDevice support...

- Benjamin

Re: Network Monitor?

PostPosted: Wed Jul 15, 2015 8:15 pm
by kw123
That's what fingscan is doing

it produces also:

Re: Network Monitor?

PostPosted: Wed Jul 15, 2015 11:20 pm
by kw123
Also if you use FINGs output from port scans you need to reformat the output with:

f.open(xxx,"r")
fingOut = f.read()
jObject= json.loads( fingOut.replace(",},","},").replace("},]","}]").replace("':",'":').replace(":'",':"').replace("','",'","').replace("{'",'{"').replace("'}",'"}') )

FING uses ' instead of " and it has "," after the last element in {} and [] and it also uses single ' in texts. So a simple replace ' with " does not do the trick.

Karl