Skip to content

Instantly share code, notes, and snippets.

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

Kote KoteGhost

💭
I may be slow to respond.
  • @home
  • worlwide
View GitHub Profile
#!/bin/bash
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root"
exit 1
else
#Update and Upgrade
echo "Updating and Upgrading"
apt-get update && sudo apt-get upgrade -y
@KoteGhost
KoteGhost / gist:b357fb3d7b085dced072bcd27f7e6a46
Created December 10, 2016 19:22
How to fix “ImportError: No module named setuptools” on Linux
#To install setuptools on Debian, Ubuntu or Mint:
$ sudo apt-get install python-setuptools
#For Python 3.X applications, install python3-setuptools instead.
$ sudo apt-get install python3-setuptools
#On Red Hat based systems, setuptools comes pre-installed. For whatever reason if you want to install it, use the yum command.
$ sudo yum python-setuptools
@KoteGhost
KoteGhost / By Tanguy Andreani
Created December 8, 2016 12:25
websites_list_about_hacking(+1200).txt
By Tanguy Andreani
Twitter: @andreani_tanguy
Website: https://globalnewsys.wordpress.com/
Date: 1 July 2014
More than 1200 websites !
Blogs on Computer Security:
https://antelox.blogspot.com/
#Install All libb:
sudo apt-get install xterm sslstrip isc-dhcp-server lighttpd ettercap-graphical dsniff hostapd build-essential libpcap-dev libssl-dev sqlite3 libsqlite3-dev libpcre3-dev libnl-3-dev libnl-genl-3-dev duma libgcrypt20-dev
#Создаём каталог для программ из KaliLinux
mkdir .kali
#Install Pixiewps
sudo apt-get install build-essential
@KoteGhost
KoteGhost / Hashcat Kali Linux
Created December 3, 2016 22:53
Installing Hashcat on Linux Mint 18
https://kali.tools/?p=578
https://github.com/hashcat/hashcat/blob/master/BUILD.md
Building hashcat for Linux and OSX
Get a copy of the hashcat repository
$ git clone https://github.com/hashcat/hashcat.git
$ cd hashcat
@KoteGhost
KoteGhost / Installing Airgeddon
Created December 2, 2016 18:51
Airgeddon Kali Linux
sudo apt-get install iw gawk curl git
# создайте специальный каталог для сторонних программ и войдите в него
mkdir bin
cd bin
# удаление aircrack-ng, если она была установлена из репозитория (т.к. очень старая), установка зависимостей, скачивание исходников, компилирование у установка aircrack-ng
sudo apt-get remove aircrack-ng
sudo apt-get install libpcre3-dev libnl-3-dev libsqlite3-dev libssl-dev ethtool build-essential g++ libnl-genl-3-dev duma libgcrypt20-dev
git clone https://github.com/aircrack-ng/aircrack-ng.git
cd aircrack-ng/
make sqlite=true pcre=true experimental=true ext_scripts=true libnl=true duma=true