It is also important that you can make these features portable. For example, 
the OpenMonitor mobile agent would greatly benefit from a trace route feature. 
So if the trace route in the network scanner is decoupled from the rest of the 
application, we can just directly use it there without making any major changes.

Best,
Zubair



On 25 Mar 2012, at 22:51, Luis A. Bastiao Silva wrote:

> There are features like improve the scan methods (non-root) and traceroute.
> 
> How can you do it (optimized) for mobile devices?
> 
> On Thu, Mar 22, 2012 at 4:07 PM, rohit bhatnagar <[email protected]> 
> wrote:
> Hi Adriano, Hi Angad,
> 
> Apologies for creating the confusion. well I am interested in "Network 
> Scanner" project because I have developed GUI for Android before (demo). But 
> I wanted to know if the project includes the GUI improvements or we there can 
> be some feature requests as well?
> 
> 
> Thank you & Regards,
> Rohit
> [email protected]
> https://sites.google.com/site/​nusrohitbhatnagar/
>  
> 
> On Thu, Mar 22, 2012 at 11:23 PM, Adriano Marques <[email protected]> 
> wrote:
> Hi Rohit,
> 
> The Mobile Agent for Open Monitor has nothing to do with Network Scanner for 
> Mobile (the project Angad worked with last gsoc). We're not looking for an 
> iOS version for the Network Scanner at the moment, but for the mobile agent 
> we're definitely interested if we can find the right guy to work on it.
> 
> Windows mobile is not in our roadmap for the moment, because its future is 
> still too shady and adoption has being almost as catastrophic as zune's.
> 
> Are you interested on Open Monitor or Network Scanner?
> 
> 
> On Thu, Mar 22, 2012 at 12:42 AM, rohit bhatnagar 
> <[email protected]> wrote:
> Dear Angad,
> 
> Thank you for your prompt reply. to start with I have few questions regarding 
> the ideas mentioned here:
> for the Mobile Agent project do we need an iPhone Application or Android App? 
> because it says IOS Agent and below in technologies used it mentions Android 
> (so little confused here)
> If I am not wrong you had worked on "Mobile Sniffer for Android" project last 
> year. 
> I have installed the app on my phone I will play with it for some time and 
> come back :)
> I was wondering if it is possible for us to provide some patch or enhancement 
> for the same?
> 
> 
> Regards,
> Rohit
> [email protected]
> https://sites.google.com/site/​nusrohitbhatnagar/
> 
> 
> On Thu, Mar 22, 2012 at 11:15 AM, Angad Singh <[email protected]> wrote:
> Hi Rohit,
> 
> Well for open-source projects the starter point is - clone the repo and build 
> the app.
> Then propose what do you think you can improve or what features do you think 
> will be good for the app.
> 
> Angad
> 
> 
> 
> On Wed, Mar 21, 2012 at 8:04 PM, rohit bhatnagar <[email protected]> 
> wrote:
> Hello Angad,
> 
> I am quite familiar with Android app development and have developed couple of 
> apps earlier. Can you point me to correct starter point for me?
> 
> Thank you & Regards,
> Rohit
> [email protected]
> https://sites.google.com/site/​nusrohitbhatnagar/
> 
> 
> 
> On Thu, Mar 22, 2012 at 7:20 AM, <umit-devel-request@lists.​sourceforge.net> 
> wrote:
> Send Umit-devel mailing list submissions to
>        [email protected].​net
> 
> To subscribe or unsubscribe via the World Wide Web, visit
>        https://lists.sourceforge.​net/lists/listinfo/umit-devel
> or, via email, send a message with subject or body 'help' to
>        umit-devel-request@lists.​sourceforge.net
> 
> You can reach the person managing the list at
>        umit-devel-owner@lists.​sourceforge.net
> 
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Umit-devel digest..."
> 
> 
> Today's Topics:
> 
>   1. Re: BUG Fixed 460 and 469 (Luis A. Bastiao Silva)
>   2. Re: [GSOC ] ideas for Network Administrator (Adriano Marques)
>   3. GSoc 2012 (Vlad Bogolin)
>   4. Google TV- GSoC Project (Rajat Jain)
>   5. Re: GSoC 2012 Android (Angad Singh)
> 
> 
> ------------------------------​------------------------------​----------
> 
> Message: 1
> Date: Wed, 21 Mar 2012 14:07:49 +0000
> From: "Luis A. Bastiao Silva" <[email protected]>
> Subject: Re: [umit-devel] BUG Fixed 460 and 469
> To: niteesh kumar <[email protected]>
> Cc: [email protected].​net
> Message-ID:
>        <CAKG1N-UdYMw+D0+​t3HmhVJKsP8omi=m0y=NGZnuBogwbr​[email protected]>
> Content-Type: text/plain; charset="iso-8859-1"
> 
> Can you add the patch in the respective issues?
> 
> http://dev.umitproject.org/​projects/uns
> 
> On Wed, Mar 21, 2012 at 2:05 PM, niteesh kumar <[email protected]> wrote:
> 
> > BUG Fixed 460 and 469 resolved
> >
> > --- a/umit/gui/MainWindow.py
> > +++ b/umit/gui/MainWindow.py
> > @@ -596,14 +596,14 @@ class MainWindow(UmitMainWindow):
> >
> >          xml_scanfile = mktemp()
> >          f = open(xml_scanfile, "w")
> > -        current_page.parsed.write_​xml(f)
> > +        current_page.get_parser().​write_xml(f)
> >          f.close()
> >
> >          log.debug("Adding scan to inventory database..")
> >
> >          xmlstore = XMLStore(Path.umitdb_ng, False)
> >          try:
> > -            xmlstore.store(xml_scanfile, current_page.parsed,
> > inventory_title)
> > +            xmlstore.store(xml_scanfile, current_page.get_parser(),
> > inventory_title)
> >          finally:
> >              # close connection to the inventory's database
> >              xmlstore.close()
> > @@ -1315,7 +1315,7 @@ Start a scan an then try again'))
> >          log.info('Exporting ..')
> >
> >          import umit.export.html.Parse
> > -        a = umit.export.html.Parse.​ExportHTML(saving_page.parsed, \
> > +        a = umit.export.html.Parse.​ExportHTML(saving_page.get_​parser(), \
> >                                               filename)
> >          a.generate_html()
> >          a.save()
> >
> >
> >
> > ------------------------------​------------------------------​------------------
> > This SF email is sponsosred by:
> > Try Windows Azure free for 90 days Click Here
> > http://p.sf.net/sfu/sfd2d-​msazure
> > ______________________________​_________________
> > Umit-devel mailing list
> > [email protected].​net
> > https://lists.sourceforge.net/​lists/listinfo/umit-devel
> >
> >
> 
> 
> --
> Lu?s A. Basti?o Silva
> Skype: koplabs
> http://www.bastiao.org
> -------------- next part --------------
> An HTML attachment was scrubbed...
> 
> ------------------------------
> 
> Message: 2
> Date: Wed, 21 Mar 2012 12:00:02 -0300
> From: Adriano Marques <[email protected]>
> Subject: Re: [umit-devel] [GSOC ] ideas for Network Administrator
> To: Amit Pal <[email protected]>
> Cc: umit-devel <[email protected].​net>
> Message-ID:
>        <CAMHiwZfYn-xAXSu1W_​QgzsmHV6SO0rykK8ZbTT4OGu9_​[email protected]>
> Content-Type: text/plain; charset="utf-8"
> 
> Hi Amit!
> 
> I just reviewed your proposal, and it seems promising!
> 
> Keep working on it, with mockups and more details so you can use it when it
> comes the time to propose :)
> 
> Let us know if you need any help.
> 
> On Wed, Mar 21, 2012 at 4:21 AM, Amit Pal <[email protected]> wrote:
> 
> > Hello all,
> >
> >  I wanted to discuss some ideas with all of  you (short description) which
> > i am thinking of proposing for NA.
> >
> > Thanks to piotrek for developing this awesome app. I am dividing this
> > proposal, into three categories:  Events, Plugins and Host - networks.
> > There are also some feature which are new and best for NA future purpose :)
> >
> > link of google docs :
> > https://docs.google.com/​document/d/1_​lsqVazSPj65DbtA0CEj92TO4dxlW_​3vL4mMKl9neqE/edit
> >
> > Include (ipv6 ideas)
> >
> > piotrek, have already provide every basic functionality to NA. What we
> > have to do is to make more usable, provide best visualization tools, and
> > something different ;)
> >
> >  I am thinking for more idea's but want to know that whether i am going in
> > right direction or not. Waiting for your reviews and what should be more
> > done with these ideas
> >
> >
> >
> > Thank You
> > Amit Pal
> >
> >
> >
> >
> >
> > ------------------------------​------------------------------​------------------
> > This SF email is sponsosred by:
> > Try Windows Azure free for 90 days Click Here
> > http://p.sf.net/sfu/sfd2d-​msazure
> > ______________________________​_________________
> > Umit-devel mailing list
> > [email protected].​net
> > https://lists.sourceforge.net/​lists/listinfo/umit-devel
> >
> >
> 
> 
> --
> Adriano Monteiro Marques
> 
> http://www.openmonitor.org
> http://www.umitproject.org
> http://www.thoughtspad.com
> 
> "Don't stay in bed, unless you can make money in bed." - George Burns
> -------------- next part --------------
> An HTML attachment was scrubbed...
> 
> ------------------------------
> 
> Message: 3
> Date: Wed, 21 Mar 2012 20:22:11 +0200
> From: Vlad Bogolin <[email protected]>
> Subject: [umit-devel] GSoc 2012
> To: [email protected].​net
> Message-ID:
>        <CA+5rdc++​GemzFurhf0BDwt3NCCJu-S+1FE=fxj​[email protected]>
> Content-Type: text/plain; charset="iso-8859-1"
> 
> Hi,
> I am Vlad Bogolin, a 2nd year student at Polytechnic University of
> Bucharest, Computer Science Department. I would like to participate at GSoC
> 2012 this being my first attempt at GSoC.
> I would be interested to create a Java/ Android application for Umit. After
> looking on the idea page I think the most suitable application for me would
> be Mobile Agent.
> I can say that I am quite familiar with Java. I have developed some small
> projects and now I am developing a team project based on the Ants game from
> AIChallange for school purpose. I cannot say that I am really familiar with
> Android but as I researched I think that learning it would not be a big
> problem.
> I would really appreciate if I could be given/pointed to some resources or
> some small tasks in order to make a proper idea about the project.
> Thank you,
> Vlad Bogolin
> -------------- next part --------------
> An HTML attachment was scrubbed...
> 
> ------------------------------
> 
> Message: 4
> Date: Thu, 22 Mar 2012 01:03:05 +0530
> From: Rajat Jain <[email protected]>
> Subject: [umit-devel] Google TV- GSoC Project
> To: [email protected].​net
> Message-ID:
>        <CAOVGuGnAgYK42oFz0jWhzzKEey+​H+B6=1Rgmv-0SXC0zRMZ+HQ@mail.​gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
> 
> Hi there,
> I have been going through the project ideas of the *Umit*, and I
> came across the idea of *Google TV. *I wanted the details of this project.
> Can anybody help please.
> 
> Regards
> Rajat Jain
> -------------- next part --------------
> An HTML attachment was scrubbed...
> 
> ------------------------------
> 
> Message: 5
> Date: Wed, 21 Mar 2012 16:20:28 -0700
> From: Angad Singh <[email protected]>
> Subject: Re: [umit-devel] GSoC 2012 Android
> To: Atul jangra <[email protected]>
> Cc: umit devel <[email protected].​net>
> Message-ID:
>        <CAFg62zArmypR0MMG=w7EB0e49Qk​y3O4Uwo8hqxybJGyf2k77LA@mail.​gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
> 
> Hi Atul,
> 
> You should start working on the proposal. Working on the UI and improving
> the usability (hint texts, handling user input) is a small part and can be
> done towards the end when we are ready for the next release.
> 
> - Currently it implements SYN and FIN methods for port-scanning (raw socket
> methods). Do you have any other ideas for implementing other forms of port
> scanning or improving on the existing ones?
> - OS Finger printing is another important task.
> - Porting the linux version of traceroute. Currently it uses busybox
> traceroute.
> 
> Go over the existing code base. This project was done in 3 months -
> improvements to existing feature is as important as adding newer and
> advanced features.
> 
> Some of the features (native port scanning, running nmap etc) require root.
> It would be great if you can come up with some ideas for features that do
> not require root access.
> 
> Regards,
> Angad
> 
> 
> On Tue, Mar 20, 2012 at 11:48 AM, Atul jangra <[email protected]>wrote:
> 
> > I am really sorry for flooding the mail , but can't control my excitement
> > about this project. I have implemented the above two things in the code of
> > Network Scanner -Mobile Version. Currently I am checking out Desktop
> > version so that we can think of more features that can be added.
> > What should I do next ? Should I submit more patches so that I can prove
> > my skills . Or should I start working on the Proposal ?
> > Warm Regards
> > --
> > Atul jangra
> > Computer Science and Engineering
> > Indian Institute of Technology ,Delhi
> >
> >
> -------------- next part --------------
> An HTML attachment was scrubbed...
> 
> ------------------------------
> 
> ------------------------------​------------------------------​------------------
> This SF email is sponsosred by:
> Try Windows Azure free for 90 days Click Here
> http://p.sf.net/sfu/sfd2d-​msazure
> 
> ------------------------------
> 
> ______________________________​_________________
> Umit-devel mailing list
> [email protected].​net
> https://lists.sourceforge.net/​lists/listinfo/umit-devel
> 
> 
> 
> End of Umit-devel Digest, Vol 38, Issue 15
> ******************************​************
> 
> 
> ------------------------------​------------------------------​------------------
> 
> This SF email is sponsosred by:
> Try Windows Azure free for 90 days Click Here
> http://p.sf.net/sfu/sfd2d-​msazure
> ______________________________​_________________
> Umit-devel mailing list
> [email protected].​net
> https://lists.sourceforge.net/​lists/listinfo/umit-devel
> 
> 
> 
> 
> ------------------------------------------------------------------------------
> This SF email is sponsosred by:
> Try Windows Azure free for 90 days Click Here
> http://p.sf.net/sfu/sfd2d-msazure
> _______________________________________________
> Umit-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/umit-devel
> 
> 
> 
> 
> -- 
> Adriano Monteiro Marques
> 
> http://www.openmonitor.org
> http://www.umitproject.org
> http://www.thoughtspad.com
> 
> "Don't stay in bed, unless you can make money in bed." - George Burns
> 
> 
> 
> ------------------------------------------------------------------------------
> This SF email is sponsosred by:
> Try Windows Azure free for 90 days Click Here
> http://p.sf.net/sfu/sfd2d-msazure
> _______________________________________________
> Umit-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/umit-devel
> 
> 
> 
> 
> -- 
> Luís A. Bastião Silva
> Skype: koplabs
> http://www.bastiao.org
> 
> ------------------------------------------------------------------------------
> This SF email is sponsosred by:
> Try Windows Azure free for 90 days Click Here 
> http://p.sf.net/sfu/sfd2d-msazure_______________________________________________
> Umit-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/umit-devel

------------------------------------------------------------------------------
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
_______________________________________________
Umit-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/umit-devel

Reply via email to