Enabling Password Based Authentication on AWS EC2

By regular security professional prefers key based authentication, By the way most of the people also go with password based authentication. In this article we will look how to do this. Login to your ec2 instance and setup the unix password for your instance there after enable the password authentication on your sshd_config that’s all, as last restart the ssh service Continue reading Enabling Password Based Authentication on AWS EC2

Enabling Console Code in phpStrom with Symfony

In this lesson you will learn about How to setting up the phpStrom for Symfony code based First of all we need to set up the Symfony support plugin to phpStrom. In your file menu go to setting and find plugins tab on the left side bar of the setting window, If you are not find here, press the Browse repositories button and install the … Continue reading Enabling Console Code in phpStrom with Symfony

Getting Start with Symfony with composer

In this session you will learn: How to install symfony on the Linux environment using composer Symfony is php based framework with easy to code in secure manner. In this session we are going not deeper on symfony we just looking the way how to install in Linux based environment. Here, I’m demonstrating you on Ubuntu 16.04 LTS I assumed you already installed composer on … Continue reading Getting Start with Symfony with composer

Make available to autocomplete suggestions in your terminal

Again and again typing the same things in the terminal is the worst things. After a long search, I found a simple solution to enable autocomplete options on the terminal. Normally, Linux bash use readline for its auto-completions, add the following line to enable auto-completions on your terminal. **** Caution **** The following change file contains most important configuration. Be careful on work with this. … Continue reading Make available to autocomplete suggestions in your terminal

Create Your First Rails Application

Creating all rails applications in the same way. To create an rails application create a directory and inside the directory run your rails  command     mkdir rails_application_directory cd rails_application_directory rails new my_first_app As seen on the above animation a skeleton is created. In this skeleton. Directory Purpose app/ This is the core part of the application. This is the place contains models, views, containers app/assets … Continue reading Create Your First Rails Application

Debug your WSO2 ESB Connector

The way of debugging the WSO2 product and WSO2 ESB connectors have slight differences. When you want to debug a WSO2 ESB Connector just follow these steps. I assume you are using IntelliJ IDEA for your development IDE. Clone any one of the connector from this wso2 extensions git repository Then import the connector into IntelliJ IDEA IDE. Then add Current ESB product into repository directory … Continue reading Debug your WSO2 ESB Connector

Deployment​ of RSA Authentication Manager

RSA Authentication Manager deployment means we are setting up a primary instance, replica instance and authentication agents. Primary Instance is the place all administration tasks( user management, token management, token assigning to a user, agent registration and etc.) take place. And It is the responsible to handling the authentication requests. Replica Instance provides redundancy of primary instance and authenticates the users. RSA recommends on deployment you should … Continue reading Deployment​ of RSA Authentication Manager

RSA SecurID​ 2FA

RSA SecurID is the most popular and widely used 2-factor authentication mechanism. It has given more convenient access for any user from anywhere.It gives strong and secure access to the enterprise’s infrastructure. RSA SecurID is based on token-based authentication. Tokens are two types. – hardware and software tokens. The tokens are generated using a built-in clock and embedded factory-encoded-random key ( so-called seeds ). The … Continue reading RSA SecurID​ 2FA

Maven: includes external library into your project.

Maven dependency management environtment is the most relevant part in Maven Build Tools. Every developer who user maven as their build tool they should know about the maven depency management. In this post I assume you know what is maven dependency management and I introuduce you about how in add external libray which you want to really reside in your project and how to include … Continue reading Maven: includes external library into your project.