Python Hidden SSID Scraper

Another cool python script here from TJ O’Conner’s work – this comes in handy 🙂 #!/usr/bin/python # -*- coding: utf-8 -*- import sys from scapy.all import * interface = ‘mon0’ hiddenNets = [] unhiddenNets = [] def sniffDot11(p): if p.haslayer(Dot11ProbeResp): addr2 = p.getlayer(Dot11).addr2 if (addr2 Read More …

Python Port Scanner

Looking into some python recently and going through many code books, gonna start keeping up with useful bits here! #!/usr/bin/python import optparse from socket import * from threading import * screenLock = Semaphore(value=1) def connScan(targetHost, targetPort): try: connSkt = socket(AF_INET, SOCK_STREAM) connSkt.connect((targetHost, targetPort)) connSkt.send(‘grab\r\n’) results Read More …

Spring Semester Over, I rejoice!

Finally my Spring semester is over!!! 21 hours of college, mostly on two days a week is not fun at all… I don’t recommend trying it unless your feeling like inflicting a little self punishment. I wrapped up today with 5 exams and finally I’m Read More …

RoundPic is Sweetness

RoundPic. A awesome, minimalistic service that makes a task extremely simple. We all need to round off the corners on some pics every now and then to make them look good for the internets, but before we always to go into Paint.Net, photoshop, or the Read More …