Ontosy Posted April 13, 2020 Posted April 13, 2020 Simulating a HTTPS POST with TCPSend i not have error and receive the number of bytes sent and not see other result. But the connection is encrypted?
argumentum Posted April 13, 2020 Posted April 13, 2020 HTTPS is SSL, so, yes, encrypted. ...where is the question @Ontosy ?. Post your code. Follow the link to my code contribution ( and other things too ). FAQ - Please Read Before Posting.
Ontosy Posted April 13, 2020 Author Posted April 13, 2020 Opt("TCPTimeout", 1000) TCPStartup() $ip = TCPConnect(TCPNameToIP("www.google.com"), 443) $p = TCPSend($ip, "test") MsgBox(0,@Error,$p) Sleep(100) TCPCloseSocket($ip) TCPShutdown()
argumentum Posted April 13, 2020 Posted April 13, 2020 (edited) ok, use these functions from https://www.autoitscript.com/forum/topic/84133-winhttp-functions/ . TCP on SSL will give you garbage otherwise. Or try https://www.autoitscript.com/forum/topic/201896-apache-autoit-https-api-on-autoit/ , so Apache will translate all the SSL stuff and you can then code the TCP Edited April 13, 2020 by argumentum Follow the link to my code contribution ( and other things too ). FAQ - Please Read Before Posting.
Ontosy Posted April 13, 2020 Author Posted April 13, 2020 I know this. I ask for another specific thing.
argumentum Posted April 13, 2020 Posted April 13, 2020 sorry, I don't know how to help you. Follow the link to my code contribution ( and other things too ). FAQ - Please Read Before Posting.
Developers Jos Posted April 14, 2020 Developers Posted April 14, 2020 6 hours ago, Ontosy said: I ask for another specific thing. Which is what now exactly? Connecting to port 443 doesn't make it an ssl encrypted connection and you will have to the SSL encrypt/decrypt. Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Ontosy Posted April 14, 2020 Author Posted April 14, 2020 I was looking for this confirmation, thanks.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now