Skip to content

Instantly share code, notes, and snippets.

View badhonhitech's full-sized avatar
💭
I may be slow to respond.

khaleda ferdous badhonhitech

💭
I may be slow to respond.
View GitHub Profile
@badhonhitech
badhonhitech / keybase.md
Created October 16, 2019 17:52
my keybase signature

Keybase proof

I hereby claim:

  • I am badhonhitech on github.
  • I am badhonhitech (https://keybase.io/badhonhitech) on keybase.
  • I have a public key whose fingerprint is E4E2 3558 2A21 5869 4C48 96A5 E5FA CDB3 BC38 2997

To claim this, I am signing this object:

@badhonhitech
badhonhitech / vtiger.sh
Created October 29, 2019 20:15
Install vTiger CRM on Ubuntu 18.04 LTS
sudo apt-get update -y
sudo apt-get upgrade -y
sudo apt-get install apache2 mariadb-server libapache2-mod-php7.2 php7.2 php7.2-cli php7.2-mysql php7.2-common php7.2-zip php7.2-mbstring php7.2-xmlrpc php7.2-curl php7.2-soap php7.2-gd php7.2-xml php7.2-intl php7.2-ldap php7.2-imap unzip wget -y
sudo nano /etc/php/7.2/apache2/php.ini
# insert those text & replace
file_uploads = On
allow_url_fopen = On
memory_limit = 1024M
upload_max_filesize = 1024M
@badhonhitech
badhonhitech / rocket.sh
Created October 31, 2019 18:40
Rocket.Chat in Ubuntu 18.04 LTS
##Step 1: Install MongoDB
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 9DA31620334BD75D9DCB49F368818C72E52529D4
echo "deb [ arch=amd64 ] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.0.list
sudo apt update
sudo apt install -y mongodb-org
sudo systemctl stop mongod.service
@badhonhitech
badhonhitech / powershell.sh
Created November 7, 2019 19:52 — forked from DevSecOpsGuy/powershell.sh
Microsoft PowerShell on Ubuntu 18.04 LTS
Microsoft PowerShell on Ubuntu 18.04 LTS
Microsoft PowerShell is a shell framework used to execute commands, but primarily it is developed to perform administrative tasks such as
Automation of repetitive jobs
Configuration management
PowerShell is an open-source and cross-platform project; it can be installed on Windows, macOS, and Linux. It includes an interactive command-line shell and a scripting environment.
##Installation via Package Repository - Ubuntu 18.04
@badhonhitech
badhonhitech / ntopng.sh
Created November 7, 2019 19:53 — forked from DevSecOpsGuy/ntopng.sh
Ntopng on Ubuntu 18.04 LTS
sudo apt-get update -y
sudo apt-get upgrade -y
sudo apt-get install ntopng
sudo systemctl restart ntopng
sudo ntopng -h
sudo ufw enable
sudo ufw allow 3000
firefox http://localhost:3000/
@badhonhitech
badhonhitech / netdata.sh
Created November 9, 2019 18:16
NetData Install Linux
#!/bin/bash
# This script will install NetData Install Linux for YouTube: https://youtu.be/bcl6SZ4PlsE
sudo apt-get install netdata -y
sudo apt update -y
sudo nano /etc/netdata/netdata.conf
# input and save via nano
[global]
run as user = netdata
@badhonhitech
badhonhitech / OpenVas.sh
Created November 23, 2019 19:06 — forked from DevSecOpsGuy/OpenVas.sh
OpenVAS 9 Vulnerability Scanner on Ubuntu 18.04 LTS
https://youtu.be/O3y4GfwGX_E
#add the ppa repo, update your system
sudo add-apt-repository ppa:mrazavi/openvas
sudo apt-get update
#install the required packages
sudo apt install sqlite3
sudo apt install openvas9
sudo apt install texlive-latex-extra --no-install-recommends
@badhonhitech
badhonhitech / OpenVas.sh
Created November 23, 2019 19:06 — forked from DevSecOpsGuy/OpenVas.sh
OpenVAS 9 Vulnerability Scanner on Ubuntu 18.04 LTS
https://youtu.be/O3y4GfwGX_E
#add the ppa repo, update your system
sudo add-apt-repository ppa:mrazavi/openvas
sudo apt-get update
#install the required packages
sudo apt install sqlite3
sudo apt install openvas9
sudo apt install texlive-latex-extra --no-install-recommends
@badhonhitech
badhonhitech / radis.sh
Created November 26, 2019 18:49
radis install ubuntu 18
sudo wget http://download.redis.io/redis-stable.tar.gz
sudo tar xvzf redis-stable.tar.gz
cd redis-stable
sudo make
sudo redis-server
sudo redis-cli ping
@badhonhitech
badhonhitech / rabbitmq.sh
Created November 29, 2019 15:59
Install RabbitMQ on Ubuntu 18.04
sudo apt-get update
sudo apt-get install rabbitmq-server
sudo update-rc.d rabbitmq-server defaults
sudo service rabbitmq-server start
sudo rabbitmq-plugins enable rabbitmq_management
sudo rabbitmqctl add_user admin password
sudo rabbitmqctl set_user_tags admin administrator
sudo rabbitmqctl set_permissions -p / admin ".*" ".*" ".*"