Social Logins Implementation for Django app
Tue 23 June 2015
by Godson
In this article we will get to know about how to login to your django app by using social logins like Facebook and Google.
Start a simple Django project
$ django-admin.py startproject thirdauth
$ tree thirdauth/
thirdauth/
├── manage.py
└── thirdauth
├── __init__.py
├── settings.py
├── urls.py
└── wsgi.py
Running ./manage.py ...
read moreRestricting tab navigation to overlays(pop-ups)
Mon 22 June 2015
by Godson
About : We all have complex pages with several overlays that appear based on selections from several drop down menus and by on-click functionalitys,
Our goal is to limit the user to only be able to tab through the elements on the overlay (above positioned lightbox div) via the keyboard.
In ...
read moreHow to Port Knocking in Linux
Fri 19 June 2015
by Godson
To allow clients to ssh using port knocking
@server : 192.168.1.181
# download knockd rpm from web and install
# rpm -ivh knockd-5.xx.rpm
# rpm -qip knockd-5.xx.rpm - know about the packge
# rpm -ql knockd - to list what are files have installed for knockd
First need to reject ...
read more