Results 15 comments of Mikhail

If your network device name is not eth0 (default) you have to set yours by `-i` option.

If it's possible to hardcode specific MAC for AP in sources instead of random MAC creation? Where? Tried this hack: ``` # Custom dirty hack to allow to set Cell...

@newearthmartin, I guess trailing `s` in request.body is a typo? At least I cannot see any encoding (ascii vs windows-1251 vs unicode) issue for provided example, while windows-1251 usage for...

Can be PayPal issue. It's also better to encode/decode using `windows-1252` instead of `ascii` (see `charset=windows-1252` in request), but it's not the case for failed requests we're talking about.

For catch FileNotFoundError exception you may change BaseDownloadView get() method to ``` python class BaseDownloadView(DownloadMixin, View): """A base :class:`DownloadMixin` that implements :meth:`get`.""" def get(self, request, *args, **kwargs): """Handle GET requests:...

As for quoting unicode issue temporary solution can be modifying XAccelRedirectResponse class this way: ``` python from django.utils.encoding import uri_to_iri class XAccelRedirectResponse(ProxiedDownloadResponse): ... # self['X-Accel-Redirect'] = redirect_url self['X-Accel-Redirect'] = bytes(uri_to_iri(redirect_url),...

Dragging axis limit can be emulated by ghostClass attribute with appropriate css + removing draggable image/dom_element/clone (see rude example in [this comment](https://github.com/RubaXa/Sortable/issues/146#issuecomment-128086631)) ![sortable_axis_limit_emulation](https://cloud.githubusercontent.com/assets/7644358/9095007/775a1488-3bce-11e5-8a5d-e9ac133c1579.gif)

See libnss_ato.c: ``` /* for security reasons */ #define MIN_UID_NUMBER 500 #define MIN_GID_NUMBER 500 ``` So if you want to use it with root, you have to decrease that values...

This issue is already referred in #11. For APT it can be better to create file `/etc/apt/apt.conf.d/00libnss-ato` with the content like ``` DPkg::Pre-Invoke {"/bin/ln -sf /etc/nsswitch.conf.noato /etc/nsswitch.conf";}; DPkg::Post-Invoke {"/bin/ln -sf...

As I understand this tool relies on p0f v2 syntax and DB, while witch.valdikss.org.ru based on p0f v3. Third version is more advanced, so this tool is unable to spoof...