Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env python
#
# Forward Shell using Named Pipes
# -- https://www.youtube.com/watch?v=uMwcJQcUnmY
# -- Authors: ippsec, 0xdf -- Updates for 2023: Cashiuus
# -- Online copy: https://gist.github.com/Cashiuus/e3c31721b8e59ab827a44e18d9784d87
## =======[ IMPORTS ]========= ##
import argparse
import base64
# This script provides support for Transport Layer Security (TLS) 1.1 and TLS 1.2
# in Windows Server 2012, Windows 7 Service Pack 1 (SP1), and Windows Server 2008 R2 SP1.
# Reference Doc: https://support.microsoft.com/en-us/topic/update-to-enable-tls-1-1-and-tls-1-2-as-default-secure-protocols-in-winhttp-in-windows-c4bd73d2-31d7-761e-0178-11268bb10392
# for the Cipher Suites Support documentation go to
# https://docs.microsoft.com/en-us/windows/desktop/SecAuthN/cipher-suites-in-schannel

Keybase proof

I hereby claim:

  • I am Cashiuus on github.
  • I am cashiuus (https://keybase.io/cashiuus) on keybase.
  • I have a public key whose fingerprint is 9CEA B142 4CA2 B9A4 58EB D137 58C3 F3C7 88A6 DE24

To claim this, I am signing this object:

@Cashiuus
Cashiuus / kali-python.sh
Last active July 19, 2016 08:51
Setup Python 2 & 3 in Kali 2 as core dependencies and used to create 2 virtual environments: env-2.7 and env-3.4, keeping it as close to Debian style as possible.
#!/bin/bash
#-Metadata----------------------------------------------------#
# Filename: setup-python.sh (Update: 09-11-2015 #
#-Author(s)---------------------------------------------------#
# cashiuus - cashiuus@gmail.com #
#-Licence-----------------------------------------------------#
# MIT License ~ http://opensource.org/licenses/MIT #
#-Notes-------------------------------------------------------#
# This will setup Kali to have both Python 2 & 3 using
# apt-get for the core dependencies, staying as pure as able.
@Cashiuus
Cashiuus / Install-PythonPip.ps1
Created September 8, 2015 18:59
PowerShell v2 script for installing/updating Python Pip & Setuptools for an existing Python 2.7.x installation. Works on Windows 7 (PowerShell v2.0) and Windows 10 (PowerShell v5.0). I wrote this for some PowerShell practice.
##############################################################################
##
## Install-PythonPip
##
## by Cashiuus on 9/8/2015
##
## *NOTE: To run PS scripts, first type: Set-ExecutionPolicy Unrestricted
## This is designed to work with Win7, which runs PowerShell v2
## Where v3+ methods exist, they are commented out and prefixed with "v3-"
##############################################################################
@Cashiuus
Cashiuus / kali-install-vmtools.sh
Last active September 25, 2015 22:43
Script to install VMware Tools in Kali 2.0 since, by default, the header files are not where VMware expects them to be, wreaking all havoc.
#!/bin/bash
#-Metadata----------------------------------------------------#
# Filename: kali-vmwaretools.sh (Update: 09-25-2015 #
#-Author------------------------------------------------------#
# cashiuus - cashiuus@gmail.com #
#-License-----------------------------------------------------#
# MIT License ~ http://opensource.org/licenses/MIT #
# Credit: https://github.com/g0tmi1k/os-scripts/ #
#-Notes-------------------------------------------------------#
# #
#!/bin/bash
# Install the Arachni Web App Scanner on Kali
# ------------------------------
# Dependencies
apt-get install -y build-essential curl libcurl3 libcurl4-openssl-dev ruby ruby-dev
# PhantomJS
apt-get install -y build-essential chrpath git-core libssl-dev libfontconfig1-dev libxft-dev
cd ~/git