Skip to content

Instantly share code, notes, and snippets.

Fuzz Testing Daala

A place where I can keep notes on fuzz testing daala. All tests here were done against commit sha d8daca8e9aadb1f6ba53e089b89824f170d59703 from Fri May 1, 2015.

16:50:05         radens | Do you guys run fuzz testers on daala? I was playing around with afl-fuzz
                        | today and was thinking of the recent android bug.
16:53:38      +TD-Linux | radens, no, and we should
16:54:03      +TD-Linux | tons of fuzzing was done on opus, though.
@iankronquist
iankronquist / notes on lxc.md
Last active August 29, 2015 14:27
notes on lxc

Install lxc:

$ sudo yum install lxc lxc-templates lxc-extras

Build container:

$ sudo lxc-create -n test -t fedora

http://ottomancuisine.com/2012/05/24/icli-kofte/

Ingredients:

  • 3 cups of fine grind bulgur (parboiled cracked wheat, you can find it in the organic food section of your supermarket or at Middle Eastern grocery shops) 500g of lean minced beef or lamb (ask your butcher to double grind it, it’s crucial)

  • 2 onions, finely grated

  • 1 whole egg

@iankronquist
iankronquist / future prs.md
Last active August 29, 2015 14:27
Future prs

This is a collection of issues and features I would like to see added to various open source projects. They may or may not be worthwhile or desired by the project maintainers. Some are easy, some are hard.

@iankronquist
iankronquist / improvments.md
Last active September 2, 2015 21:03
Improvements to strings

Many of these should be bugs. I'm putting them here so I can keep them organized

  • Installing the gem
iankronquist@puppettop:(strings)(pr/54) → bundle exec gem build puppet-strings.gemspec 
WARNING:  no email specified
WARNING:  description and summary are identical
  Successfully built RubyGem
  Name: puppet-strings
  Version: 0.2.0
  File: puppet-strings-0.2.0.gem
@iankronquist
iankronquist / registry_dump.json
Last active September 18, 2015 00:32
Structured data for strings
{
"defined_types": [
{
"docstring": "Docstring",
"file": "manifests/defined_type.pp",
"line": 6,
"name": "bar",
"parameters": {
"barname": null,
"barval": null
@iankronquist
iankronquist / how-to-use-strings.md
Last active September 21, 2015 22:56
An Intro to Strings

Here is a quick intro for how to use strings for those not very familiar with puppet and the command line.

Setup

Do this once to get strings set up:

  1. Installing strings

$ puppet module install puppetlabs-strings

@iankronquist
iankronquist / fib.py
Created September 19, 2015 06:18
An example of testing in python
def fib (a, b, max ):
while (b < max):
tmp = a
a = b
b = a + b
return b
#include <stdio.h>
#include <unistd.h>
int main () {
unsigned long long i;
while (1) {
printf("tick\n");
for (i = 1; i != 0; i++){}
}
}
@iankronquist
iankronquist / wlp3s0-eduroam
Created May 12, 2016 23:29
Eduroam configuration for netctl
Description='eduroam'
Interface=YOUR_INTERFACE
Connection=wireless
ESSID=eduroam
Security=wpa-configsection
IP=dhcp
TimeoutWPA=10
WPAConfigSection=(
'ssid="eduroam"'
'proto=RSN WPA'