Skip to content

Instantly share code, notes, and snippets.

### Keybase proof
I hereby claim:
* I am khast3x on github.
* I am ktx (https://keybase.io/ktx) on keybase.
* I have a public key ASDFvZF54NgymPtT-yiVRPLomTsEqRK7tAeLn1gfz9Yaego
To claim this, I am signing this object:
@khast3x
khast3x / SourceCodeSearchEngines.md
Created May 30, 2018 05:48 — forked from phillipalexander/SourceCodeSearchEngines.md
Source Code Search Engines You Can Use For Programming Projects

Source Code Search Engines

NOTE: This list is almost entirely copy/pasted from THIS awesome article. I've made my own personal edits (adding some additional content) which is why I keep it here.

Every day meanpath crawls over 200 million websites capturing the visible text, HTML source code, CSS and Javascript. This information is used by many companies to monitor the growth of web facing technology.

@khast3x
khast3x / scaleway_dockermachine.sh
Last active August 18, 2017 13:11
Lazy scaleway docker machine depoyement
#!/bin/bash
export SCALEWAY_ORGANIZATION="xx"
export SCALEWAY_TOKEN="xxx"
case "$1" in
vsmall)
docker-machine create -d scaleway --scaleway-commercial-type="VC1S" --scaleway-name="$2" $2
;;
@khast3x
khast3x / gui.sh
Created August 18, 2017 13:03
start | stop | status for lightdm GUI (Kali) 
#!/bin/bash
case "$1" in
start)
systemctl set-default graphical.target
;;
stop)
systemctl set-default multi-user.target
;;
@khast3x
khast3x / gui_manager.sh
Created August 9, 2017 19:54
[Kali VM] start gui or not on boot. Can also set ssh on startup
#/bin/bash
echo "== START OR STOP GUI FOR KALI VM =="
echo ""
echo "ssh $USER@$HOSTNAME"
echo ""
echo ""
if [[ $1 = "start" ]];
then systemctl set-default graphical.target;echo "Starting GUI at reboot"
elif [[ $1 = "stop" ]];
@khast3x
khast3x / bash-cheatsheet.sh
Created August 9, 2017 19:17 — forked from LeCoupa/bash-cheatsheet.sh
Bash CheatSheet for UNIX Systems
#!/bin/bash
#####################################################
# Name: Bash CheatSheet for Mac OSX
#
# A little overlook of the Bash basics
#
# Usage:
#
# Author: J. Le Coupanec
# Date: 2014/11/04