Skip to content

Instantly share code, notes, and snippets.

C:\Windows\system32\cmd.exe

Keybase proof

I hereby claim:

  • I am chiggins on github.
  • I am chiggins (https://keybase.io/chiggins) on keybase.
  • I have a public key whose fingerprint is 4BE7 48D0 7168 CFB8 B195 4DAD C6C4 02F1 C931 05CA

To claim this, I am signing this object:

@Chiggins
Chiggins / pacaur_install.sh
Created November 15, 2017 06:31 — forked from tadly/pacaur_install.sh
A simple shell script to quickly / easily install "pacaur" on archlinux
#!/bin/sh
# If you are new to arch, I encourage you to at least read and understand what
# this script does befor blindley running it.
# That's why I didn't make a one-liner out of it so you have an easier time
# reading and understanding it :)
#
# This scripts purpose is purly to save you a few seconds on your new installation.
#
# Enjoy your time on an awesome system. Arch FTW!
@Chiggins
Chiggins / parse-c-and-c-feed.py
Created June 8, 2016 16:37
Take a look at the MalwareMustDie C&C feed and create a hosts list that can be parsed by nmap
import bs4, requests, urllib
from urlparse import urlparse
feed = requests.get('https://malwared.malwaremustdie.org/rss.php')
feedsoup = bs4.BeautifulSoup(feed.text, 'html.parser')
urls = []
hosts_file = open('hosts.txt', 'w')
global _start
section .text
_start
MOV ebx,23133
MOV eax,12733
MOV ecx,27798
CMP ebx,eax
JL L1
<?php
// You put your own App ID and Sender IDs
define("GOOGLE_APP_ID", "AIxxxxxxxxx");
define("SENDER_ID", "xxxxxxxxxx");
// Device ID to send the message to
$deviceId = "insertdeviceidhere";
$message = "Message from PHP!";
// Create the POST request
/*
Reads data from /etc/passwd to /tmp/outfile
No null bytes
Author: Chris Higgins <chris@chigs.me>
@ch1gg1ns -- github.com/chiggins
chigstuff.com
Date: 3-27-2014
Size: 118 bytes
Tested: ArchLinux x86_64 3.13.6-1
BITS 64
[SECTION .text]
global _start
_start:
; sys_write
xor rax, rax
mov rax, 1 ; syscall
global _start
section .text
_start:
;print on screen
mov rax, 1
mov rdi, 1
mov rsi, hello_world
mov rdx, length