Luigi Auriemma

aluigi.org (ARCHIVE-ONLY FORUM!)
It is currently 19 Jul 2012 14:44

All times are UTC [ DST ]





Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 19 posts ] 
Author Message
 Post subject: silent windows popup
PostPosted: 25 Sep 2008 14:17 

Joined: 25 Sep 2008 14:13
Posts: 6
I want to build a executable , that after run it , it will silent wait that the user of computer visit
let's say www.mysite.com , and after they visit the site , to popup a window with few field : like your email and your name , and , a button to send these to an email.
Where I can find a example or some help to finish this project .

Thank you for help.


Top
 Profile  
 
 
 Post subject: Re: silent windows popup
PostPosted: 26 Sep 2008 01:04 

Joined: 24 Sep 2007 02:12
Posts: 1114
Location: http://sethioz.co.uk
to make things clear..you wanna scam somebody to get his/her username and password right ?
if i would have to make it in my own computer..i would use commview to monitor network for "www.mysite.com" and once this site is accessed the program is executed.
as about program .. dont have much ideas. using an html page with formmail built in it would do the job, but not sure how to run it inside some standalone program.

also quite hard part is to monitor the network, because you would need a special monitoring driver for that. commview uses its own, but theres also "WinPcap". lot of network programs that can monitor for traffic use this.


Top
 Profile  
 
 Post subject: Re: silent windows popup
PostPosted: 27 Sep 2008 03:45 

Joined: 01 Sep 2008 07:40
Posts: 31
Sethioz wrote:
also quite hard part is to monitor the network, because you would need a special monitoring driver for that. commview uses its own, but theres also "WinPcap". lot of network programs that can monitor for traffic use this.

no, you can just use raw sockets to monitor
edit:

luigi has a good example of using raw sockets to sniff here:

http://aluigi.altervista.org/papers/hldec.zip

although it is for linux, sockets in windows are not that much different in C


Top
 Profile  
 
 Post subject: Re: silent windows popup
PostPosted: 27 Sep 2008 05:34 

Joined: 16 Aug 2007 06:25
Posts: 367
Don't think it would work for Windows since raw socket use is disabled within the Windows OS. Might have to go with the Winpcap approach for capturing the packets.


Top
 Profile  
 
 Post subject: Re: silent windows popup
PostPosted: 27 Sep 2008 12:38 

Joined: 13 Aug 2007 21:44
Posts: 4068
Location: http://aluigi.org
hldec (hldecw.c is the one for Windows) uses winpcap/libpcap to capture the UDP packets.
A TCP stream is a bit more longer to parse if you want to handle also the various errors (like the requests for resending one or more packets and so on)


Top
 Profile  
 
 Post subject: Re: silent windows popup
PostPosted: 27 Sep 2008 23:27 

Joined: 01 Sep 2008 07:40
Posts: 31
SomaFM wrote:
Don't think it would work for Windows since raw socket use is disabled within the Windows OS. Might have to go with the Winpcap approach for capturing the packets.

Raw sockets work just fine in XP (limited, but work). Check out raw sockets using Winsock.

http://www.codeproject.com/KB/IP/sniffer.aspx

http://www.codeproject.com/KB/IP/rawsocket.aspx

http://en.wikipedia.org/wiki/Raw_socket

Edit: found the official Microsoft MSDN article concerning raw socket capability, will probably be most helpful to the OP,

http://msdn.microsoft.com/en-us/library/ms740548.aspx


Top
 Profile  
 
 Post subject: Re: silent windows popup
PostPosted: 28 Sep 2008 15:36 

Joined: 24 Sep 2007 02:12
Posts: 1114
Location: http://sethioz.co.uk
still not sure what is his/her goal, but if its about getting pass for some account, it is easier to build a keylogger and use some encryption to make it more invisible for anti-viruses and then plant it into a program. so the program will work fine, but it also silent-installs a keylogger which uploads keylstrokes into your e-mail or some FTP account.

-ive done it and it works just fine if done right. i didnt wrote whole code myself, i used some tools. like to encrypt it..etc. cant remember exactly what i did, but instead of monitoring it logs ALL keystrokes and uploads them after every x second or minute.


Top
 Profile  
 
 Post subject: Re: silent windows popup
PostPosted: 28 Sep 2008 19:06 

Joined: 13 Aug 2007 21:44
Posts: 4068
Location: http://aluigi.org
uhmmm I don't like the way that this thread is taking...


Top
 Profile  
 
 Post subject: Re: silent windows popup
PostPosted: 29 Sep 2008 00:26 

Joined: 24 Sep 2007 02:12
Posts: 1114
Location: http://sethioz.co.uk
Quote:
to popup a window with few field : like your email and your name , and , a button to send these to an email.

Isnt this what he originally wanted? he just approached to it from wrong angle. anyways thats all i'm going to say about it in public.


Top
 Profile  
 
 Post subject: Re: silent windows popup
PostPosted: 02 Oct 2008 10:47 

Joined: 25 Sep 2008 14:13
Posts: 6
It is not keylogger or kind of this.
My idea is when he visit www.123.com ( for example )
to start an popup with 3 fields let's say where he can enter : his email : and : how or where he hear
about that site : and after he click on some radio button : to come his oppinnion to my email so i can see or make a idea how the visitor reach my website .

I say again it is not keylogg or spy .


Top
 Profile  
 
 Post subject: Re: silent windows popup
PostPosted: 02 Oct 2008 15:03 

Joined: 13 Aug 2007 21:44
Posts: 4068
Location: http://aluigi.org
isn't more simple to create a javascript running on that www.123.com website instead of creating an executable which runs without a real good reason (except if you want to monitor various websites not owned by you but even in this case it's a useless program)?


Top
 Profile  
 
 Post subject: Re: silent windows popup
PostPosted: 03 Oct 2008 11:15 

Joined: 25 Sep 2008 14:13
Posts: 6
i wanna do this by an EXE.
Thats why i start this topic . to get help for creating this.
thank you .


Top
 Profile  
 
 Post subject: Re: silent windows popup
PostPosted: 03 Oct 2008 13:34 

Joined: 24 Sep 2007 02:12
Posts: 1114
Location: http://sethioz.co.uk
uhm...lil bit confused here. is it your website you talk about or somebody elses ?
if it yours, then yes you can use any code to make a popup there, but if not...then making an exe is really hard way to go.


Top
 Profile  
 
 Post subject: Re: silent windows popup
PostPosted: 06 Oct 2008 06:23 

Joined: 25 Sep 2008 14:13
Posts: 6
so. it is more simple to create a exe that can popup and www.123.com when a user visit a specific website ? thanks for reply


Top
 Profile  
 
 Post subject: Re: silent windows popup
PostPosted: 06 Oct 2008 12:05 

Joined: 24 Sep 2007 02:12
Posts: 1114
Location: http://sethioz.co.uk
no, because then it needs to monitor your whole internet and for that it would need a special driver.

and still .. is it your site or not ?!


Top
 Profile  
 
 Post subject: Re: silent windows popup
PostPosted: 06 Oct 2008 15:18 

Joined: 25 Sep 2008 14:13
Posts: 6
it only need to grab window name IE , if it detect site www.123.com so it start popup.
it can be done with win32 api /?


Top
 Profile  
 
 Post subject: Re: silent windows popup
PostPosted: 06 Oct 2008 23:02 

Joined: 01 Sep 2008 07:40
Posts: 31
it does not need a special driver to monitor simple http traffic, the win32 api has much to offer in doing this without going into naitve programming.

@mx123 yes its possible but i don't think luigi wants the discussion to go on gurther in the direction it seems to be taking.


Top
 Profile  
 
 Post subject: Re: silent windows popup
PostPosted: 07 Oct 2008 13:10 

Joined: 24 Sep 2007 02:12
Posts: 1114
Location: http://sethioz.co.uk
i still don't get the point of it..
IF you would just say it out. say what is it what you want. what is the GOAL ?
you want just a popup ? you want somebody's password ? you simply want to spy on somebody and know when he/she enter site ? you want only his/her username ? and is it YOUR site ????

just say it out ..it is very hard to even understand your goal here. if it includes phising or stealing pass, then yes, Luigi is not into this and does not support this kind of activity. you can discuss it on my forum if you wanna steal somebody's info.


Top
 Profile  
 
 Post subject: Re: silent windows popup
PostPosted: 07 Oct 2008 14:33 

Joined: 25 Sep 2008 14:13
Posts: 6
i will stop here. i dont wanna spy or something like that.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 19 posts ] 

All times are UTC [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for: