Skip to content

Instantly share code, notes, and snippets.

@safanetco
safanetco / google-dorks
Created October 31, 2019 21:52 — forked from stevenswafford/google-dorks
Listing of a number of useful Google dorks.
" _ _ "
" _ /|| . . ||\ _ "
" ( } \||D ' ' ' C||/ { % "
" | /\__,=_[_] ' . . ' [_]_=,__/\ |"
" |_\_ |----| |----| _/_|"
" | |/ | | | | \| |"
" | /_ | | | | _\ |"
It is all fun and games until someone gets hacked!
@safanetco
safanetco / ssid-sniffer-scapy-python.py
Created June 1, 2018 19:49 — forked from securitytube/ssid-sniffer-scapy-python.py
WLAN SSID Sniffer in Python using Scapy
#!/usr/bin/env python
from scapy.all import *
ap_list = []
def PacketHandler(pkt) :
if pkt.haslayer(Dot11) :
if pkt.type == 0 and pkt.subtype == 8 :
@safanetco
safanetco / install-gns3-ubuntu-17-10
Created April 25, 2018 06:16 — forked from AJNOURI/install-gns3-ubuntu-17-10
Installing GNS3 on Ubuntu 17.10
sudo add-apt-repository ppa:gns3/unstable
sudo apt-get update
sudo apt-get install gns3-gui
sudo apt install curl
curl -O https://download.docker.com/linux/ubuntu/dists/zesty/pool/stable/amd64/docker-ce_17.09.0~ce-0~ubuntu_amd64.deb
sudo dpkg -i docker-ce_17.09.0~ce-0~ubuntu_amd64.deb
sudo gpasswd -a $USER docker
newgrp docker
sudo apt-get install xtightvncviewer