I hereby claim:
- I am yaci on github.
- I am jacek (https://keybase.io/jacek) on keybase.
- I have a public key whose fingerprint is D26D 9B72 96C6 1E13 110A 9EE5 27D6 E602 9B79 EDEB
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/python3 | |
""" | |
!! IMPORTANT !! | |
!! READ THIS !! | |
In order to run this script you need python3 and pip3 installed. | |
You also need some additional python modules. Please run | |
sudo pip3 install httplib2 oauth2client | |
sudo pip3 install --upgrade google-api-python-client | |
#! /bin/bash | |
###### | |
# TO DOWNLOAD THIS SCRIPT SIMPLY TYPE: | |
# wget bit.ly/kali-arachni | |
###### | |
#arachni will be installed in $targetInstallationDirectory/$targetDirectoryName | |
targetInstallationDirectory="$HOME/soft" | |
targetDirectoryName=arachni |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
arachniDownloadUrl = 'https://github.com/Arachni/arachni/releases/download/v1.5.1/arachni-1.5.1-0.5.12-linux-x86_64.tar.gz' | |
Vagrant.configure("2") do |config| | |
config.vm.box = "ubuntu/precise64" | |
config.vm.box_check_update = false | |
config.vm.network :forwarded_port, guest: 9292, host_ip: "127.0.0.1", host: 9292, id: "arachni", auto_correct: true | |
config.vm.provision :shell, privileged: false, :args => [arachniDownloadUrl], inline: <<-SHELL |
//WARNING! May not work with some SVG images | |
//For some SVGs the naturalWidth/naturalHeight attributes will equal 0 | |
//even if image is properly loaded | |
var allLoaded=true; | |
var images = document.images; | |
// or: var images = document.getElementsByTagName('img'); | |
for (i=0; (i<images.length) && allLoaded; i++) { | |
result = images[i].complete && (typeof images[i].naturalWidth!="undefined" && images[i].naturalWidth>0); | |
allLoaded=allLoaded && result; |
7za a -t7z -m0=lzma2 -mx=9 -mfb=273 -md=256m -ms=on archiveName.7z inputFilesOrDir | |
# -md - dictionary size (256m dictionary requires 5gb+ RAM) | |
# -ms=on - solid archive | |
# to install 7z on ubuntu: apt-get install p7zip-full |
sudo apt-get update | |
sudo apt-get -y upgrade | |
sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common openssh-server | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | |
sudo apt-get update | |
sudo apt-get -y install docker-ce htop zsh | |
sudo docker info | |
sudo usermod -aG docker ubuntu |