Click here to Skip to main content
15,892,697 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i am running key logger program , and once it store all the data in a file , i would like to send that file to another server using c++ coding ,
I need the code to send text file from my laptop to another server using HTTP ,Using C++ programing language, any ideas?
Posted
Updated 11-Oct-10 8:54am
v2

1 solution

You've have to open a socket towards the server HTTP listener (usually the server address on port 80) then implement the PUT or POST method of the HTTP protocol.
(you must have the right to write on the destination URL)

Give a lokk at here: http://www.chilkatsoft.com/http_c++_library.as[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900