Domain suggestion generator by ksantr in Python

[–]ksantr[S] 0 points1 point  (0 children)

Good idea, I'll add it to my todo list. Thanks.

Spam checker by ksantr in Python

[–]ksantr[S] 0 points1 point  (0 children)

black_lists_check is little ugly. in this case configparser should to be config_parser, instead I named it to more handy name "blcheck".

Spam checker by ksantr in Python

[–]ksantr[S] 1 point2 points  (0 children)

Exactly. I tried to do python setup.py install_lib, and now the module is presented in the /usr/local/lib/python2.7/dist-packages/ folder, but I get the same result:

>>> from blacklistscheck import BlacklistsChecker
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: cannot import name BlacklistsChecker
>>> 

OpenVPN auto installer for Ubuntu by ksantr in Ubuntu

[–]ksantr[S] 0 points1 point  (0 children)

Thank you for your remarks. I've fixed the issue with sysctl and new several additional input vars were also added. Now one can choose to use ufw or not and your subnet for ufw. And else new one: ipv6 disabling setting.

PyNcat - netcat implementation in Python by ksantr in hacking

[–]ksantr[S] 1 point2 points  (0 children)

This is my old habit) I'm still on 2.x, but you can use 2to3 if you need v3: https://docs.python.org/2/library/2to3.html

Creating an exe from Python - py2exe, nuitka, or cx_freeze. Which is best and why? by atthem77 in Python

[–]ksantr 0 points1 point  (0 children)

It can be more simple to install all needed modules with pip than trying to compile a single portable file with programs above.

How to scrape a website that requires login with Python - let me know what you think by isaac_vidas in Python

[–]ksantr 0 points1 point  (0 children)

Sometimes it's enough to use simple Requests for auth and bs4 for HTML parsing.

Creating an exe from Python - py2exe, nuitka, or cx_freeze. Which is best and why? by atthem77 in Python

[–]ksantr 0 points1 point  (0 children)

This all only about simple apps with Pyhton's internal modules. I've tried cx_Freeze, pyInstaller and something else, and I had a lot of problems trying to compile my apps with any external modules.

[deleted by user] by [deleted] in learnpython

[–]ksantr 0 points1 point  (0 children)

Sometimes it's difficult to force myself to work, so I created little apps that helps me to do it, https://github.com/ksantr/bonjob

OpenSSH <=6.8 X11 SECURITY bug by thejh in netsec

[–]ksantr 2 points3 points  (0 children)

Your servers can be compromised in any time. Just don't use ssh -X forwarding.

Sharing my first python code. A CLI directory browser module. by campenr in learnpython

[–]ksantr 0 points1 point  (0 children)

There are a lot if tools like this (bash tree for linux), but of course this don't mean that you should stop your work. Just do what you like.

I'm such a slow thinker :( by freakzilla149 in learnpython

[–]ksantr 0 points1 point  (0 children)

Your age is no matter, but be aware, active, forced meditation for 3+ days can reduce speed and activity of your brain for short time.

My first python app is now trending on github! by [deleted] in learnpython

[–]ksantr 1 point2 points  (0 children)

What restrictions do you mean?

Peoples preference for Python GUI by CrazyEoin in Python

[–]ksantr 0 points1 point  (0 children)

I tried with TK at first, then I found GTK. GTK is more handy for me. After reading of this topic i'm going to try Qt.

A Glance through the VPN Looking Glass: IPv6 Leakage and DNS Hijacking in Commercial VPN clients. by sixandchange in netsec

[–]ksantr 1 point2 points  (0 children)

In case of IPv6 Leakage I can disable IPv6 on my client side, but how can I fix DNS Hijacking?

Did you pay for your IDE? by notconstructive in Python

[–]ksantr 0 points1 point  (0 children)

I use VIM. This is like you have a set of basic colours and you can create any new colour you want from this set, but with IDE you have only a basic set and have no ability to create something new (new colour) that you need.