How to capture & modify content of emails I sent/receive? [closed] - c#

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I gonna develop a windows app that get content of emails I send/receive; because I need to access their details such as: Title, Text, timestamp, Sender, Receiver & etc. in my application.
Wireshark can capture all kind of packets are passing through a network-interface (including IMAP) but it can't MODIFY their content; And that's what I need.
Any idea of how to capture & modify email packets ?

Finally I found what I need: An application-based TCP/IP proxy
A tcp/ip proxy can capture all tcp/ip traffics (including email packets) and even modify their content.
Like what Tamper-Data (a fireFox add-ons) or FiddlerCore do for HTTP/HTTPS.

Related

can We connect to multiple IP using socket.Connect() with UDP - C# [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 days ago.
Improve this question
That title was describe. I want to know is this code valid ?
socket.Connect(IPEndpoint1);
socket.Connect(IPEndpoint2);
I am using UDP
Also what is solution for a chat program. I want the host be client+server and all other members are client. I try to using TCP but i cannot connect while the IP was dynamic. Must we use UDP ?

Multiple commands to a GSM 3G modem [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I'm using C# to command a GSM/GPRS modem via a serial port.
Can I write the commands to the port one after another without a gap or should I wait for the response form the modem after the last command? Using something like Thread.Sleep.
I use it to send SMS to multiple phone numbers.
=======

How to get URL hit by browser in C# application [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Actually, my requirement is, when a user type a URL in any browser like example.com?q=123 and hit go then my C# application will verify request and fetch the value of q.
any solution for this???
You will have to hook your application to somehow track all outgoing requests over port 80 and 443

How to show and block incoming UDP packets [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
How to show and block ip UDP incoming in c# WinForms.
Show ip and incoming packet in label like Anti DDOS Guardian
I made a similar application some years ago using WinpkFilter. I don't know if there is something better, but this gives you all that need to read all packets passing on network interface. Once you read the packets, you can check protocol type and make all operation you need to prevent DDOS.
You have to install the WinpkFilter driver and link the ndisapi.dll library, I suggest you to give it a try and see if this can help you.

Frequently send object by Socket [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I'm tring to develop the WinForm with C#. This application must capture desktop frequently and send it to remote server via socket. How can I pack on client and unpack in server these Images for compress image size higher speed in transfer?
Is it possible? If yes get me any idea or solution.
Thanks so much...
You Can Use of Background Worker , I Had similar problem and i resolve it by one timer and one Backgrond Worker .
If this idea is not good solution put your code here .

Categories