Get start with BugBounty, Pentest and Security Researcher

I have always been in confusion about how to get started with security or pentest or somehow with a bug bounty. There are tons of resources available on the internet. The Fact The fact is there is no hard and fast rule or there is no standard course by following which you will get the tag of a security expert. There is no defined way to become a security researcher....

June 20, 2021 · 2 min · Ashish Tiwari

[Part 1] Setup LEMP environment with Docker - Setup Nginx and PHP

Hi guys, In this series, we are going to setup LEMP Stack (Linux, Nginx, MySQL, PHP). Mainly it is used by web developers. I am assuming you have a basic idea about Docker & How it works. In this blog, We are going to setup PHP and Nginx. Why Docker? I will not go too much deep, You can find more resources over the internet about the docker. Docker makes the installation process very smooth and it gives your isolated environment as the container....

May 16, 2020 · 3 min · Ashish Tiwari

Install python3.6, pip3.6, pipenv on Ubuntu 14.04 LTS

Prerequisite OS: Ubuntu 14.04 LTS Processor: 64 Bit RAM: 2 GB 1. Install python3.6 From source Step 1.1: Compile $ wget https://www.python.org/ftp/python/3.6.3/Python-3.6.3.tgz $ tar -xvf Python-3.6.3.tgz $ cd Python-3.6.3 $ sudo ./configure --enable-optimizations $ sudo make install Step 1.2: Check $ python3.6 --version 2. Install pip3.6 Step 2.1: Download pip $ wget https://bootstrap.pypa.io/get-pip.py Step 2.2: Execute $ sudo python3.6 get-pip.py Step 2.3: If you Got below error Error zlib not available Traceback (most recent call last): File "get-pip....

April 2, 2020 · 2 min · Ashish Tiwari

Covid19 Data Source for India & Global

Hi Guys, I am trying to listing all data source & endpoints for COVID19 - India as well as Global. It can contains offical or unofficial APIs. Anyone is working on any COVID19 project for India, Can use these sources. APIs 1. Github: amodm/api-covid19-in (India) Repo: https://github.com/amodm/api-covid19-in APIs available: Statewise Data StateWise StateWise History Medica Hospital Stats Bed Stats Contacts HelpLines Contacts Patient Tracing History Sources The source is both types of official & Unofficial....

March 27, 2020 · 2 min · Ashish Tiwari

How to reset 1-Click Installed WordPress on DigitalOcean?

The Requirement Need to install fresh wordpress with same version on wordpress droplet of digitalocean. The Problem My setup (wordpress droplet) was suddenly stop working. I started debugging. Debug Checked apache2 and mysql service: service mysql status service apache2 status Both services was active. Then I checked the apache2 processes with below command: $ ps -ef | grep apache2 | wc -l 151 Lots of apache child process has been forked....

December 3, 2019 · 3 min · Ashish Tiwari