Skip to content

Instantly share code, notes, and snippets.

View questjay's full-sized avatar
😜
#codeblooded Q J

Kwest J Arcade questjay

😜
#codeblooded Q J
View GitHub Profile
@questjay
questjay / FLASK-SERVER-PROXY
Last active October 20, 2023 02:30
create proxy server on flask and requests python
"""today am gonna show you how to create a http proxy in flask, if your want https ssl proxy please dope a email at info[at]junno[dot]co"""
"""and please make sure to follow me for more proxies server and more server gists"""
""" add the proxy url to firefox,chrome or any other browser eg(http://proxy_flask_address:proxy_flask_port5000)"""
"""remember on replit this works only on locally if you want it to work publically please purchase a server e.g(linode, digitalocean etc..)"""
"""curl -x http://172.18.0.9:5000 -L http://azenv.net -vs >curl-output.txt 2>&1
"""SSL is the old name. It is called TLS these days."""
"""to use ssl add ssl_context='adhoc' to your app.run() call or $ flask run --cert=adhoc and then To use ad hoc certificates with Flask, you need to install an additional dependency in your virtual environment:
$ pip install pyopenssl"""
import re