Skip to content

Instantly share code, notes, and snippets.

View linuxbiekaisar's full-sized avatar
🏠
Working from home

Mohammad Kaisar Hamid linuxbiekaisar

🏠
Working from home
View GitHub Profile
@linuxbiekaisar
linuxbiekaisar / cypress.sh
Created May 17, 2020 11:43
How to install cypress in ubuntu
#! /bin/sh
# To install cypress in ubuntu run the following commands:
mkdir myproect
cd myproject
npm install cypress --save-dev
node_modules/.bin/cypress open
# then a dialog box appeared and click ok
# Then click run all specifications
@linuxbiekaisar
linuxbiekaisar / OVPN.sh
Created May 17, 2020 10:03
How to install OpenVPN in ubuntu 20.04 LTS
# !/bin/sh
curl -O https://raw.githubusercontent.com/angristan/openvpn-install/master/openvpn-install.sh
chmod +x openvpn-install.sh
./openvpn-install.sh
openvpn --verison
@linuxbiekaisar
linuxbiekaisar / Scrapy.sh
Created May 13, 2020 21:50
How to install scrapy in linux
# youtube: https://www.youtube.com/watch?v=l7YOzZAnLlo
# !/bin/sh
# For installing scrapy in linux run the following commands:
# Install python dependency
# For apt (ubuntu, debian...):
sudo apt-get install python3-dev
@linuxbiekaisar
linuxbiekaisar / setoolkit.sh
Created May 10, 2020 14:21
How to install and use setoolkit for phising
# Youtube:
# !/bin/sh
# To install and use setoolkit for phising run the following commands:
git clone https://github.com/trustedsec/social-engineer-toolkit/ setoolkit/
cd setoolkit
pip3 install -r requirements.txt
python setup.py
@linuxbiekaisar
linuxbiekaisar / Jaeles.sh
Created May 4, 2020 15:00
How to setup Jaeles Project using Ubuntu Web UI
# Youtube: https://www.youtube.com/watch?v=ScOJPq_Jc9Q
# !/bin/sh
# To install Jaeles Project using Ubuntu Web UI run the following commands:
# If you have a Go environment, make sure you have Go >= 1.13 with Go Modules enable and run the following command.
GO111MODULE=on go get github.com/jaeles-project/jaeles
# Initialize Signature and Web UI
@linuxbiekaisar
linuxbiekaisar / Osmedeus.sh
Last active May 3, 2020 13:52
How to install osmedeus in Ubuntu 20.04 LTS
# Youtube: https://www.youtube.com/watch?v=hx1ul3PPk3k&t=4s
# !/bin/sh
# To install Osmedeus run the following command:
git clone https://github.com/j3ssie/Osmedeus
cd Osmedeus
./install.sh
# After installation use the following commands for different scanning system for a website:
@linuxbiekaisar
linuxbiekaisar / trape.sh
Created May 3, 2020 11:42
How to install trape in Ubuntu 20.04 LTS
# !/bin/sh
# To install trape run the following commands:
git clone https://github.com/jofpin/trape.git
cd trape
python2 trape.py -h
# If it does not work, try to install all the libraries that are located in the file requirements.txt
python2 -m pip install -r requirements.txt
@linuxbiekaisar
linuxbiekaisar / VSCode.sh
Created April 29, 2020 10:13
How to install VSCode in Ubuntu 20.04 LTS using terminal
# Youtube:
# !/bin/sh
## To install VSCode in Ubuntu 20.04 LTS use the following codes:
# Enable Package Repository
echo "deb [arch=amd64] http://packages.microsoft.com/repos/vscode stable main" | sudo \
tee /etc/apt/sources.list.d/vs-code.list
# Install Visual Studio Code Editor
@linuxbiekaisar
linuxbiekaisar / Ubuntu20.04LTSthingstodo.sh
Last active May 5, 2020 10:20
Thingstodo After instlalling Ubuntu 20.04 LTS
# !/bin/sh
# Automatically Import All Missing Launchpad PPA GPG Keys
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt update
#Install Gdebi & Wget packages
sudo apt install gdebi-core wget
# Install kazam
@linuxbiekaisar
linuxbiekaisar / ufonet.sh
Last active April 28, 2020 14:47
How to install Ufonet in Ubuntu 20.04 LTS
# Youtube: https://www.youtube.com/watch?v=F3cilMQAwzQ
# !/bin/sh
# To install ufonet on Ubuntu 20.04 LTS run the following commands:
sudo apt install python3
sudo apt-get install python3-pip
sudo apt install git
git clone https://github.com/epsylon/ufonet