Menu
TAG

Uncategorized

Snap Application Permissions
Linux Tutorials 3 min read

Snap Application Permissions

We have already written about snaps and its advantages against other packaging application system. If we compare RPM and DEB packages to snaps we can see on snaps automatic background updates allowing up-to-date applications, with bugs fixes more frequently. A snap app is packaged with all dependencies making the application very big in comparison with other packages. We can add to snap disadvantages the old-style cursor on some applications and configuration or data loss on eclipse – Sn

Linux TutorialsUncategorizedhow-to
Decisions | A Way To Make BASH Program Intelligent - Learn BASH | Part 4
Learn Bash 4 min read

Decisions | A Way To Make BASH Program Intelligent - Learn BASH | Part 4

Welcome to the fourth chapter of BASH scripting series in which we will discuss the topic, decisions. Like a human being making decisions throughout the day, computers too need to decide on the best possible route when executing stuff from time to time. It has to consider whether a certain line of statements is necessary to be executed or not, based on a condition. In computer programming, the condition is usually tested on boolean values; either true or false. What is a decision

Learn BashUncategorizedtutorial
Password Hashing And Why We Need It
Linux Tutorials 1 min read

Password Hashing And Why We Need It

As a web developer, you must have come across the term password hashing at least once. Let us quickly understand what is password hashing and why we even need it. What is Password Hashing? Password hashing is the process of encrypting a user’s password before storing it into a database. The encryption is one way and passwords once hashed cannot be decrypted to their original text value. Why do we need to Hash Passwords? Password hashing has become extremely important in

Linux TutorialsUncategorizedtutorial
PHP 5.x Security Support Ends In December 2018 Puts 60%+ Websites On Risk
news 3 min read

PHP 5.x Security Support Ends In December 2018 Puts 60%+ Websites On Risk

Basically, in 10 weeks we will have more than half of the websites exposed to potential security problems if after the new year there is a vulnerability in PHP 5.x.According to statistics from W3Techs, 61.7% of all websites whose server-side programming language we know, currently use PHP 5.x, and PHP 5.6 will no longer have support on December 31, 2018, that is, will stop receiving security updates for your server and for the underlying technologies. This is a big problem because it simply 

newsphpUncategorized
Best Open Source Skype Alternatives For Linux
Reviews 4 min read

Best Open Source Skype Alternatives For Linux

Video calls and conferencing have become almost a regular thing. Interviews, business talks, personal calls are all made on video call software like Skype. However, Skype has always given updates and feature upgrades to Linux users very late. It almost feels like Skype doesn’t care about it’s Linux users. So we actually decided to look at some open-source Skype alternatives for Linux. Ring As per the official description, ‘Ring is a free and universal communication platform which p

ReviewsUncategorizedreview
Tags And Sub-modules - Git Series Part 6
Learn Git 6 min read

Tags And Sub-modules - Git Series Part 6

This is the final guide in the Git series. Here, we will be covering two more major features that Git has to offer: tags and sub-modules. If you have been following the previous guides, and other materials, you should have a clearer understanding of what Git is, what it does, how to use it best, and how to troubleshoot. Here is a list of many of the aspects we have covered in this series: * The basics: cloning a repo, committing changes, pushing to and pulling from a remote repository.

Learn GitUncategorizedtutorial
Rclone - An Rsync Alternative To Sync File With Online Cloud Storage
Linux tools 3 min read

Rclone - An Rsync Alternative To Sync File With Online Cloud Storage

Backup and Sync are have become essential today and this brings tools like rsync. Rsync is an amazing tool to sync files between 2 computers. But wouldn’t it be cooler if we could sync files from a computer to cloud storage. This is where rclone – a mod of rsync comes in. Rclone can sync files from your computer to cloud-based storage services including google drive, one drive, drop-box, amazon drive and many more. Installation The installation is pretty simple just head over

Linux toolsUncategorizedreview
10 Linux Commands For Network Diagnostics
Linux Tutorials 7 min read

10 Linux Commands For Network Diagnostics

It is difficult to find a Linux computer that is not connected to the network, be it server or workstation. From time to time it becomes necessary to diagnose faults, intermittence or slowness in the network. In this article, we will review some of the Linux commands most used for network diagnostics. Diagnose Network In Linux With These Commands 1. ping One of the first commands, if not the first one, when diagnosing a network failure or intermittence. The ping tool will

Linux TutorialsUncategorizedhow-to
Installing Vundle: The Plugin Manager For Vim
Linux Tutorials 3 min read

Installing Vundle: The Plugin Manager For Vim

Today, this guide will present a step-by-step guide of how to install and configure Vundle (Vim Bundle) from GitHub, and what issues you may face when installing Vundle. As many of you may know, vim is a console-based text editor that has numerous advanced features. One such feature is that its functionality can be extended and customized using plugins written by other people. Managing these plugins, however, can be rather tedious. Vundle attempts to assist users in managing these plugin

Linux TutorialsUncategorizedhow-to
How To Install Kali Linux
Linux Distributions 5 min read

How To Install Kali Linux

When it comes to penetration testing, hacking and offensive distros, one of the first to be mentioned is Kali Linux. It is based on Debian and is available in 32-bit and 64-bit editions. Today we take a look at installing Kali Linux. We will look at using the entire disk and installing alongside Windows. Installation Prerequisites * A minimum of 20 GB disk space for the Kali Linux install. * RAM for i386 and amd64 architectures, minimum: 1GB, Recommended: 2GB or more. * CD-DVD D

Linux DistributionsUncategorizedhow-to
BASH Comments [Part 3]
Learn Bash 2 min read

BASH Comments [Part 3]

Welcome to third article of BASH scripting series. Today we’ll dive into a very important topic, BASH comments. Comment, in programming, is different from the online world of the Internet where you read an article or a blog and then post opinions or applaud the author in the comment section. * BASH Comments * Why comment code? * The #!/bin/bash line * Conclusion BASH Comments Comment is one or more sentences written in your preferred language explaining how the

Learn BashUncategorizedtutorial
How To Install Kali Linux Tools In Ubuntu
Linux Tutorials 4 min read

How To Install Kali Linux Tools In Ubuntu

Today I am going to do a quick demonstration of how to easily install a suite of security testing tools from Kali Linux onto a Ubuntu machine. For a bit of background information, Kali Linux is a distribution derived from Debian. Its sole purpose is to provide a suite of tools for penetration testing (pentesting) and forensics. It is provided by Offensive Security, an organization dedicated to providing security training. There is a very long list of tools available for Kali. Such tools

Linux TutorialsUncategorizedhow-to