Skip to content

Instantly share code, notes, and snippets.

View moloch--'s full-sized avatar
🏠
Working from home

Joe moloch--

🏠
Working from home
View GitHub Profile
@moloch--
moloch-- / gist:ce04f5623ec3161bb1fd
Last active November 17, 2021 22:00
Criagslist Bot/Parser
#!/usr/bin/env python
######################################
#
# Author: Moloch
#
# Required libs:
# pip install requests
# pip install beautifulsoup4
# pip install PyRSS2Gen
# pip install python-dateutil
@moloch--
moloch-- / Twitter Bot.py
Last active January 1, 2022 01:00
Password cracking twitter bot
#!/usr/bin/env python
#
# Password cracking twitter bot
#
import os
import time
import twitter
import json
@moloch--
moloch-- / scan.py
Created June 2, 2014 20:23
Simple multi-threaded port scanner
#!/usr/bin/env python
'''
Simple multi-threaded port scanner
Scans 1,000 most common TCP ports
'''
import sys
import socket
import subprocess
from Queue import Queue
#include <stdio.h>
#include <stdlib.h>
#include <dirent.h>
#include <sys/types.h>
#include <regex.h>
#include <string.h>
#include <sys/ptrace.h>
#include <time.h>
#include <unistd.h>