User Tools

Site Tools


os:linux:debian_pentest

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
os:linux:debian_pentest [2018/04/05 14:15] – created ebaeros:linux:debian_pentest [2021/05/16 13:58] (current) ebaer
Line 1: Line 1:
 ====== Debian Kali ====== ====== Debian Kali ======
  
-<source bash>+===== Apt ===== 
 + 
 +==== Minimal Sources ==== 
 + 
 +<code bash>
 deb http://ftp.de.debian.org/debian/ testing main deb http://ftp.de.debian.org/debian/ testing main
 deb-src http://ftp.de.debian.org/debian/ testing main deb-src http://ftp.de.debian.org/debian/ testing main
Line 10: Line 14:
 deb http://http.kali.org/kali kali-rolling main contrib non-free deb http://http.kali.org/kali kali-rolling main contrib non-free
  
-</source>+</code> 
 + 
 +==== Max Sources ==== 
 + 
 + 
 +<file bash source.list> 
 +#------------------------------------------------------------------------------# 
 +#                   OFFICIAL DEBIAN REPOS                     
 +#------------------------------------------------------------------------------# 
 + 
 +###### Debian Main Repos 
 +deb http://deb.debian.org/debian/ testing main contrib non-free 
 +deb-src http://deb.debian.org/debian/ testing main contrib non-free 
 + 
 +deb http://deb.debian.org/debian/ testing-updates main contrib non-free 
 +deb-src http://deb.debian.org/debian/ testing-updates main contrib non-free 
 + 
 +deb http://deb.debian.org/debian-security testing-security main 
 +deb-src http://deb.debian.org/debian-security testing-security main 
 + 
 +#------------------------------------------------------------------------------# 
 +#                      UNOFFICIAL  REPOS                        
 +#------------------------------------------------------------------------------# 
 + 
 +###### 3rd Party Binary Repos 
 +###Ghostwriter 
 +#deb http://ppa.launchpad.net/wereturtle/ppa/ubuntu bionic main  
 +#deb-src http://ppa.launchpad.net/wereturtle/ppa/ubuntu bionic main 
 + 
 +###muCommander 
 +deb http://apt.mucommander.com stable main non-free contrib 
 + 
 +###Nextcloud Client 
 +deb [arch=amd64,i386] http://download.opensuse.org/repositories/home:/ivaradi/Debian_9.0/
 + 
 +###Sublime Text 
 +deb https://download.sublimetext.com/ apt/stable/ 
 + 
 +###Typora 
 +deb https://typora.io/linux ./ 
 + 
 +###Visual Studio Code 
 +deb [arch=amd64] https://packages.microsoft.com/repos/vscode/ stable main 
 + 
 +###Vivaldi Browser 
 +deb [arch=i386,amd64] http://repo.vivaldi.com/stable/deb/ stable main 
 + 
 +deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian groovy contrib 
 + 
 +deb http://http.kali.org/kali kali-rolling main contrib non-free 
 +deb http://http.kali.org/kali kali-bleeding-edge main contrib non-free 
 + 
 +</file> 
  
 +==== Preferences ====
  
-<source bash>+<code bash>
 nano /etc/apt/preferences.d/debiankali nano /etc/apt/preferences.d/debiankali
 Package: * Package: *
 Pin: release a=testing Pin: release a=testing
 Pin-Priority: 1000 Pin-Priority: 1000
 +
 +#Package: *
 +#Pin: release a=unstable
 +#Pin-Priority: 900
 +
 +Package: *
 +Pin: release n=kali
 +Pin-Priority: 850
  
 Package: * Package: *
-Pin: release n=kali-rolling+Pin: release n=kali-bleeding-edge
 Pin-Priority: 800 Pin-Priority: 800
 +</code>
  
-</source> 
- 
-<source bash> 
- 
-</source> 
  
-<source bash>+<code bash>
 wget -q -O - https://archive.kali.org/archive-key.asc | apt-key add wget -q -O - https://archive.kali.org/archive-key.asc | apt-key add
 apt-get update apt-get update
-</source>+</code>
  
 <code> <code>
-deb http://repo.vivaldi.com/stable/deb/ stable main+ 
 +echo "deb http://repo.vivaldi.com/stable/deb/ stable main" | sudo tee /etc/apt/sources.list.d/vivaldi.list
 wget -O - http://repo.vivaldi.com/stable/linux_signing_key.pub | apt-key add wget -O - http://repo.vivaldi.com/stable/linux_signing_key.pub | apt-key add
 </code> </code>
 +
 +===== Sublime =====
 +<code>
 +wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
 +sudo apt-get install apt-transport-https
 +echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
 +
 +</code>
 +
 +===== Virtualbox =====
 +
 +<code>
 +apt install -y build-essential module-assistant
 +m-a prepare
 +mount /media/cdrom
 +sh /media/cdrom/VBoxLinuxAdditions.run
 +</code>
 +
 +===== Docker =====
 +
 +<code>
 +apt-get install apt-transport-https ca-certificates curl gnupg2 software-properties-common
 +wget -qO - https://download.docker.com/linux/debian/gpg | apt-key add -
 +add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable"
 +apt-get install docker-ce
 +</code>
 +
  
os/linux/debian_pentest.1522930551.txt.gz · Last modified: 2018/04/05 14:15 by ebaer

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki