Richie B2B
Richie B2B
I have the same issue: `no_proxy` is ignored in a simple `requests.get()` call: ``` import requests proxies = { 'http': 'proxy.example.com', 'no_proxy': 'google.com' } requests.get('http://google.com/', proxies=proxies) ``` With 2.28.0 this...
From the [2.14.0 release history](https://github.com/psf/requests/blob/main/HISTORY.md#2140-2017-05-09) "Improvements" section: ``` - It is now possible to pass ``no_proxy`` as a key to the ``proxies`` dictionary to provide handling similar to the ``NO_PROXY``...
It all comes down to feature request https://github.com/psf/requests/issues/2817 and the implementation https://github.com/psf/requests/commit/85400d8d6751071ef78f042d1efa72bdcf76cc0e not actually working. If you think this is not a bug I'd happily create a documentation PR instead.
I did some more testing and was able to make an exception using the per-host proxy settings: ``` proxies = { 'http': 'http://proxy.example.com', 'http://google.com': '', } ``` This is more...
This patched fixed #5731 for me. I was very surprised this patch has not gotten any attention yet. Is there anything missing before it can be considered?
I see the same thing with my MacBookPro18,2 running macOS 12.4 running AlDente Pro 1.17.1: 1. Sailing Mode is enabled 2. Stop Charging when Sleeping is disabled 3. Disable sleep...
Possibly a duplicate of #640 ?
Excellent! Please add this to the main code. Works great on my QNAP NAS.
If anyone needs to test this, simply create 2 events. Add an attribute of type `ip-dst` with value `10.1.2.3` to one event and type `domain|ip` with value `example.com|10.1.2.3` to the...
You can set the SMTP server in the php.ini It is not MISP specific.