# ubsec **Repository Path**: actanble/ubsec ## Basic Information - **Project Name**: ubsec - **Description**: ub1604 中装载kali2工具 - **Primary Language**: Shell - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: https://github.com/xx-scan/ubsec - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-05-30 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Ubuntu-Security - [Security引导](https://github.com/the-champions-of-capua/awesome-security) ## ub1604安装 ```bash cat > /etc/apt/sources.list << EOF # deb cdrom:[Ubuntu 16.04 LTS _Xenial Xerus_ - Release amd64 (20160420.1)]/ xenial main restricted deb-src http://archive.ubuntu.com/ubuntu xenial main restricted #Added by software-properties deb http://mirrors.aliyun.com/ubuntu/ xenial main restricted deb-src http://mirrors.aliyun.com/ubuntu/ xenial main restricted multiverse universe #Added by software-properties deb http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted deb-src http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted multiverse universe #Added by software-properties deb http://mirrors.aliyun.com/ubuntu/ xenial universe deb http://mirrors.aliyun.com/ubuntu/ xenial-updates universe deb http://mirrors.aliyun.com/ubuntu/ xenial multiverse deb http://mirrors.aliyun.com/ubuntu/ xenial-updates multiverse deb http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse #Added by software-properties deb http://archive.canonical.com/ubuntu xenial partner deb-src http://archive.canonical.com/ubuntu xenial partner deb http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted deb-src http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted multiverse universe #Added by software-properties deb http://mirrors.aliyun.com/ubuntu/ xenial-security universe deb http://mirrors.aliyun.com/ubuntu/ xenial-security multiverse EOF ## 准备安装kali apt-get install -y gcc make curl wget # apt-key adv --keyserver pool.sks-keyservers.net --recv-keys ED444FF07D8D0BF6 wget https://archive.kali.org/archive-key.asc && apt-key add archive-key.asc echo "deb http://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib" >> /etc/apt/sources.list echo "deb-src http://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib" >> /etc/apt/sources.list apt-get -y update && apt-get install -y wget curl make gcc git apt-get install -y python python-dev python-pip # http://mirrors.neusoft.edu.cn/ git clone apt-get install -y software-properties-common && add-apt-repository ppa:jonathonf/python-3.6 &&\ apt-get update -y && apt-get install python3.6 -y ```