Skip to content

Instantly share code, notes, and snippets.

View Evanito's full-sized avatar
💭
Crunching the numbers

Evan G Evanito

💭
Crunching the numbers
View GitHub Profile
@DirkyJerky
DirkyJerky / ScrapTF-Raffles.js
Last active February 13, 2024 13:53
Enter all the raffles on http://scrap.tf/raffles
ScrapTF.Raffles.Pagination.LoadNext();
ScrapTF.Raffles.Pagination.LoadNext();
ScrapTF.Raffles.Pagination.LoadNext();
var i = 0;
var list;
setTimeout(function() {
list = document.getElementById("raffles-list").children;
list = [].filter.call(list, function(j) {
if (j.getAttribute("style") == "") {
@securitytube
securitytube / wlan-ssid-sniffer-python-raw-sockets.py
Created April 2, 2013 14:56
WLAN SSID Sniffer in Python using Raw Sockets
#!/usr/bin/env python
import socket
rawSocket = socket.socket(socket.AF_PACKET, socket.SOCK_RAW, socket.htons(0x0003))
rawSocket.bind(("mon0", 0x0003))
ap_list = set()
while True :
pkt = rawSocket.recvfrom(2048)[0]
if pkt[26] == "\x80" :
if pkt[36:42] not in ap_list and ord(pkt[63]) > 0:
ap_list.add(pkt[36:42])