#Resources -
#Cool Tutorials & Demos-
#Resources -
#Cool Tutorials & Demos-
// Crosshair(big light green crosshair) | |
cl_crosshairstyle "4" | |
cl_crosshairsize "5" | |
cl_crosshairthickness "1" | |
cl_crosshairgap "1" | |
cl_crosshair_drawoutline "1" | |
cl_crosshaircolor "4" | |
cl_crosshairdot "1" | |
// Viewmodel(Counter Stike Source Style for couch mode) and Movement Shifting |
#!/bin/sh | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Set the colours you can use | |
black='\033[0;30m' | |
white='\033[0;37m' | |
red='\033[0;31m' |
#!/bin/bash | |
# | |
# DROPKICK.SH | |
# | |
# Detect and Disconnect the DropCam and Withings devices some people are using to | |
# spy on guests in their home, especially in AirBnB rentals. Based on Glasshole.sh: | |
# | |
# http://julianoliver.com/output/log_2014-05-30_20-52 | |
# | |
# This script was named by Adam Harvey (http://ahprojects.com), who also |
#!/bin/bash | |
INTERFACE=Wi-Fi | |
networksetup -setsocksfirewallproxy $INTERFACE 127.0.0.1 9050 off | |
networksetup -setsocksfirewallproxystate $INTERFACE on | |
tor | |
networksetup -setsocksfirewallproxystate $INTERFACE off |
2016-01-25 12:53:38 -0800 | |
./build.py | |
--confirm | |
--jobs | |
8 | |
This is the Qt Open Source Edition. |
<# | |
Author: Casey Smith @subTee | |
License: BSD3-Clause | |
.SYNOPSIS | |
Simple Reverse Shell over HTTP. Execute Commands on Client. | |
javascript:void( (function(){ var current_location=location.href.replace(/^http\:\/\/(.*)$/,"$1"); var current_location=current_location.split("?")[0]; location.href="http://www.google.com/search?q=c..."+escape(current_location); })()) |
defmodule TwilioToken do | |
import Joken | |
@app Application.get_env(:speaker, :twilio_app) | |
@sid Application.get_env(:ex_twilio, :account_sid) | |
@token Application.get_env(:ex_twilio, :auth_token) | |
def generate do | |
%{scope: "scope:client:outgoing?appSid=#{@app}"} | |
|> token |