This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Powershell script for installing taurus dependencies on a windows10 machine using conda | |
| # I use it for provisioning a vagrant win10 machine | |
| # Install SSL as a workaround for conda bug https://github.com/conda/conda/issues/6064 | |
| echo "Installing SSL" | |
| wget "https://slproweb.com/download/Win64OpenSSL-1_1_1a.msi" -OutFile "$env:TMP\SSL.msi" | |
| msiexec /quiet /i "$env:TMP\SSL.msi" | |
| echo "Downloading conda" | |
| $condainstallerurl = "https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe" | |
| $condainstaller = "$env:TMP\\Miniconda3-latest-Windows-x86_64.exe" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| setup bios | |
| disable secure boot control | |
| enable csm & disable pxe oprom policy | |
| wifi-menu | |
| ping -c3 www.google.com | |
| lsblk | |
| cfdisk /dev/sda | |
| mkfs.ext4 /dev/sda7 | |
| mkfs.ext4 /dev/sda8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Install ARCH Linux with encrypted file-system and UEFI | |
| # The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description. | |
| # Tutorial: http://gloriouseggroll.tv/arch-linux-efi-install-guide/ | |
| # Download the archiso image from https://www.archlinux.org/ | |
| # Copy to a usb-drive | |
| dd if=archlinux.img of=/dev/sdX bs=16M && sync # on linux | |
| # Boot from the usb. If the usb fails to boot, make sure that secure boot is disabled in the BIOS configuration. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| Author: Casey Smith @subTee | |
| License: BSD3-Clause | |
| .SYNOPSIS | |
| Simple Reverse Shell over HTTP. Execute Commands on Client. | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --!/usr/bin/env lua | |
| local delpattern = KEYS[1] | |
| local count = 0 | |
| local valuelist = redis.call('keys', delpattern) | |
| if valuelist then | |
| for i = 1, #valuelist do | |
| redis.call('del', valuelist[i]) | |
| count = count + 1 | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Created with IntelliJ IDEA. | |
| * User: Alexander <estliberitas> Makarenko | |
| * Date: 04.01.13 | |
| * Time: 3:25 | |
| */ | |
| // http://stackoverflow.com/questions/19498796/how-to-let-tor-change-ip-in-nodejs | |
| // $ nodejs tor-identity.js /home/ubuntu/.tor/control_auth_cookie | |
NewerOlder