-
-
Save fuzzamos/aa6523058af6dec8a0125a5d8d660287 to your computer and use it in GitHub Desktop.
Revisions
-
richinseattle revised this gist
Oct 17, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -19,6 +19,6 @@ while (($#)); do sudo apt-get build-dep -y $FUZZ_TARGET && \ apt-get source -y $FUZZ_TARGET && \ cd * && \ dpkg-buildpackage -uc -us -j$(( $CPU_COUNT -1 )) shift done -
richinseattle revised this gist
Jul 15, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -19,6 +19,6 @@ while (($#)); do sudo apt-get build-dep -y $FUZZ_TARGET && \ apt-get source -y $FUZZ_TARGET && \ cd * && \ sudo -E dpkg-buildpackage -uc -us -j$(( $CPU_COUNT -1 )) shift done -
richinseattle revised this gist
Jun 27, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -19,6 +19,6 @@ while (($#)); do sudo apt-get build-dep -y $FUZZ_TARGET && \ apt-get source -y $FUZZ_TARGET && \ cd * && \ sudo dpkg-buildpackage -uc -us -j$(( $CPU_COUNT -1 )) shift done -
richinseattle revised this gist
Jun 8, 2017 . 1 changed file with 4 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,13 +10,15 @@ if [ $# -lt 1 ]; then exit 1 fi CPU_COUNT=$(getconf _NPROCESSORS_ONLN 2>/dev/null || getconf NPROCESSORS_ONLN 2>/dev/null || echo 1) while (($#)); do FUZZ_TARGET=$1 mkdir -p /tmp/$FUZZ_TARGET && \ cd /tmp/$FUZZ_TARGET && \ sudo apt-get build-dep -y $FUZZ_TARGET && \ apt-get source -y $FUZZ_TARGET && \ cd * && \ sudo dpkg-buildpackage -uc -us -j $(( $CPU_COUNT -1 )) shift done -
richinseattle revised this gist
Jun 8, 2017 . 1 changed file with 10 additions and 8 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,20 +1,22 @@ #!/bin/bash # installs dependenies and builds ubuntu package from source # set CC / CXX environment variables as needed USAGE="$0 <apt package> ..." if [ $# -lt 1 ]; then echo "$USAGE" exit 1 fi while (($#)); do FUZZ_TARGET=$1 mkdir -p /tmp/$FUZZ_TARGET && \ cd /tmp/$FUZZ_TARGET && \ apt-get build-dep -y $FUZZ_TARGET && \ apt-get source -y $FUZZ_TARGET && \ cd * && \ dpkg-buildpackage -uc -us -j $(( $(nproc) -1 )) shift done -
richinseattle revised this gist
May 31, 2017 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ #!/bin/bash # builds ubuntu package with afl-gcc # set CC / CXX environment variavles as needed USAGE="$0 <apt package> ..." if [ $# -lt 1 ]; then echo "$USAGE" @@ -15,6 +15,6 @@ while (($#)); do && apt-get build-dep -y $FUZZ_TARGET \ && apt-get source -y $FUZZ_TARGET \ && cd * \ && dpkg-buildpackage -uc -us -j shift done -
richinseattle revised this gist
May 13, 2017 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ #!/bin/bash # builds ubuntu package with afl-gcc @@ -10,7 +10,7 @@ fi while (($#)); do FUZZ_TARGET=$1 mkdir -p /tmp/$FUZZ_TARGET \ && cd /tmp/$FUZZ_TARGET \ && apt-get build-dep -y $FUZZ_TARGET \ && apt-get source -y $FUZZ_TARGET \ -
richinseattle revised this gist
May 13, 2017 . 1 changed file with 16 additions and 12 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,16 +1,20 @@ #!/bin/sh # builds ubuntu package with afl-gcc USAGE="$0 <apt package> ..." if [ $# -lt 1 ]; then echo "$USAGE" exit 1 fi while (($#)); do FUZZ_TARGET=$1 mkdir /tmp/$FUZZ_TARGET \ && cd /tmp/$FUZZ_TARGET \ && apt-get build-dep -y $FUZZ_TARGET \ && apt-get source -y $FUZZ_TARGET \ && cd * \ && CC=afl-gcc CXX=afl-g++ dpkg-buildpackage -uc -us -j shift done -
richinseattle created this gist
May 13, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ #!/bin/sh USAGE="$0 <apt package> if [ "$#" == "0" ]; then echo "$USAGE" exit 1 fi FUZZ_TARGET=$1 mkdir /tmp/$FUZZ_TARGET \ && cd /tmp/$FUZZ_TARGET \ && apt-get build-dep -y $FUZZ_TARGET \ && apt-get source -y $FUZZ_TARGET \ && cd * \ && CC=afl-gcc CXX=afl-g++ dpkg-buildpackage -uc -us -j