This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""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 |