Questions tagged [https]
Hypertext Transfer Protocol Secure (HTTPS) is a combination of the Hypertext Transfer Protocol with the SSL/TLS protocol to provide encrypted communication and secure identification of a network web server.
28 questions
2
votes
1
answer
66
views
3
votes
1
answer
64
views
HTTP scraper for Python Package
I'm trying to make my first Python package as a learning experience. There's a lot of things that I suspect I am doing poorly, but this post is specifically about my HttpRequest class. I made this ...
2
votes
3
answers
4k
views
0
votes
1
answer
94
views
Understanding htaccess redirect to HTTPS and WWW [closed]
I have some questions about a code I found on stackoverflow. The code does what I want to do. Redirects to HTTPS and WWW when doesn't exist in URL. But, I want now to understand what I'm doing.
So, ...
5
votes
1
answer
795
views
HSTS Recommendations in .htaccess
Please see my previous post in the below hyperlink
I've updated my .htaccess file to account for an HSTS, along with many of the recommended changes. See the ...
4
votes
1
answer
1k
views
URL parser in C
Title should be self-explenatory. This is a simple URL parser I wrote in C. The function takes a URL from the user and produces a struct that contains the information that can be used to request the ...
4
votes
1
answer
257
views
.htaccess Recommendations
I have a personal website that's used primarily for fun. I upload images, videos and text that I want to share. An HTML submission form accepts questions and string submissions from users, which uses ...
7
votes
2
answers
5k
views
Decided to update HttpWebRequest to HttpClient
I updated my Instagram API and I read that HttpClient is now the preferred way in .NET Core 3.1. I would like to get a code review, because there are too many ...
3
votes
1
answer
183
views
Speeding up HTTPS API Call helper method
I am having severe problems with performance on a WEB API helper method, the performance is simply dreadful, 1-2 connections / second, I am trying to make 40k API calls and 5 hours later it is still ...
1
vote
1
answer
95
views
Simple function to Http GET some data
This is within a base class of a library, where several other classes inherit this one.
This seems like the simplest way of just getting some data, for now without timeout/errorhandling. This is ...
2
votes
1
answer
84
views
HTTP scraper efficiency with multiprocessing
I built this scraper for work that will take a csv list of firewalls from our network management system and scan a given list of HTTPS ports to see if the firewalls are accepting web requests on the ...
2
votes
1
answer
56
views
Handling HTTP status messages and multiple returns
I am new to Python and have written a function which calls an API and does some processing. Please review the code and explain what is the right and pythonic way.
...
2
votes
2
answers
207
views
Unlist all NuGet packages but the last version
I like to unlist my old NuGet packages to keep my catalog clean. However, after a couple of uploads it's always a pain to remove each single package manually so I thought I write a utility for it in ...
3
votes
1
answer
164
views
Userscript to redirect insecure pages to HTTPS
I am developing a userscript that redirects insecure pages (HTTP) to the https: version.
...
1
vote
3
answers
105
views
Always keep https in url
I wrote this recently, I thought I'd check if it was the best way to keep my url as an https at all times, any advice would be appreciated
...