new file: all_rop/badchars.zip

new file:   all_rop/badchars32.zip
	new file:   all_rop/badchars_armv5.zip
	new file:   all_rop/badchars_mipsel.zip
	new file:   all_rop/callme.zip
	new file:   all_rop/callme32.zip
	new file:   all_rop/callme_armv5.zip
	new file:   all_rop/callme_mipsel.zip
	new file:   all_rop/fluff.zip
	new file:   all_rop/fluff32.zip
	new file:   all_rop/fluff_armv5.zip
	new file:   all_rop/fluff_mipsel.zip
	new file:   all_rop/pivot.zip
	new file:   all_rop/pivot32.zip
	new file:   all_rop/pivot_armv5.zip
	new file:   all_rop/pivot_mipsel.zip
	new file:   all_rop/ret2csu.zip
	new file:   all_rop/ret2csu_armv5.zip
	new file:   all_rop/ret2csu_mipsel.zip
	new file:   all_rop/ret2win.zip
	new file:   all_rop/ret2win32.zip
	new file:   all_rop/ret2win_armv5.zip
	new file:   all_rop/ret2win_mipsel.zip
	new file:   all_rop/split.zip
	new file:   all_rop/split32.zip
	new file:   all_rop/split_armv5.zip
	new file:   all_rop/split_mipsel.zip
	new file:   all_rop/write4.zip
	new file:   all_rop/write432.zip
	new file:   all_rop/write4_armv5.zip
	new file:   all_rop/write4_mipsel.zip
	new file:   extract_64.sh
	new file:   x86_64/badchars/badchars
	new file:   x86_64/badchars/flag.txt
	new file:   x86_64/badchars/libbadchars.so
	new file:   x86_64/callme/callme
	new file:   x86_64/callme/encrypted_flag.dat
	new file:   x86_64/callme/key1.dat
	new file:   x86_64/callme/key2.dat
	new file:   x86_64/callme/libcallme.so
	new file:   x86_64/fluff/flag.txt
	new file:   x86_64/fluff/fluff
	new file:   x86_64/fluff/libfluff.so
	new file:   x86_64/pivot/flag.txt
	new file:   x86_64/pivot/libpivot.so
	new file:   x86_64/pivot/pivot
	new file:   x86_64/ret2csu/encrypted_flag.dat
	new file:   x86_64/ret2csu/key.dat
	new file:   x86_64/ret2csu/libret2csu.so
	new file:   x86_64/ret2csu/ret2csu
	new file:   x86_64/ret2win/flag.txt
        new file:   x86_64/ret2win/ret2win
	new file:   x86_64/split/flag.txt
	new file:   x86_64/split/split
	new file:   x86_64/write4/flag.txt
	new file:   x86_64/write4/libwrite4.so
	new file:   x86_64/write4/write4
This commit is contained in:
Brett Weiland 2020-12-12 15:58:41 -06:00
commit c9f44615e7
57 changed files with 19 additions and 0 deletions

BIN
all_rop/badchars.zip Normal file

Binary file not shown.

BIN
all_rop/badchars32.zip Normal file

Binary file not shown.

BIN
all_rop/badchars_armv5.zip Normal file

Binary file not shown.

BIN
all_rop/badchars_mipsel.zip Normal file

Binary file not shown.

BIN
all_rop/callme.zip Normal file

Binary file not shown.

BIN
all_rop/callme32.zip Normal file

Binary file not shown.

BIN
all_rop/callme_armv5.zip Normal file

Binary file not shown.

BIN
all_rop/callme_mipsel.zip Normal file

Binary file not shown.

BIN
all_rop/fluff.zip Normal file

Binary file not shown.

BIN
all_rop/fluff32.zip Normal file

Binary file not shown.

BIN
all_rop/fluff_armv5.zip Normal file

Binary file not shown.

BIN
all_rop/fluff_mipsel.zip Normal file

Binary file not shown.

BIN
all_rop/pivot.zip Normal file

Binary file not shown.

BIN
all_rop/pivot32.zip Normal file

Binary file not shown.

BIN
all_rop/pivot_armv5.zip Normal file

Binary file not shown.

BIN
all_rop/pivot_mipsel.zip Normal file

Binary file not shown.

BIN
all_rop/ret2csu.zip Normal file

Binary file not shown.

BIN
all_rop/ret2csu_armv5.zip Normal file

Binary file not shown.

BIN
all_rop/ret2csu_mipsel.zip Normal file

Binary file not shown.

BIN
all_rop/ret2win.zip Normal file

Binary file not shown.

BIN
all_rop/ret2win32.zip Normal file

Binary file not shown.

BIN
all_rop/ret2win_armv5.zip Normal file

Binary file not shown.

BIN
all_rop/ret2win_mipsel.zip Normal file

Binary file not shown.

BIN
all_rop/split.zip Normal file

Binary file not shown.

BIN
all_rop/split32.zip Normal file

Binary file not shown.

BIN
all_rop/split_armv5.zip Normal file

Binary file not shown.

BIN
all_rop/split_mipsel.zip Normal file

Binary file not shown.

BIN
all_rop/write4.zip Normal file

Binary file not shown.

BIN
all_rop/write432.zip Normal file

Binary file not shown.

BIN
all_rop/write4_armv5.zip Normal file

Binary file not shown.

BIN
all_rop/write4_mipsel.zip Normal file

Binary file not shown.

7
extract_64.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
mkdir x86_64
for file in $(find all_rop -type f -name "*zip" -printf "%f\n" | grep --invert -E "^\w*(32|_armv5|mipsel)"); do
short_file=$(echo $file | sed -E 's/.zip//g')
mkdir x86_64/$short_file
unzip all_rop/$file -d x86_64/$short_file
done

BIN
x86_64/badchars/badchars Executable file

Binary file not shown.

1
x86_64/badchars/flag.txt Normal file
View File

@ -0,0 +1 @@
ROPE{a_placeholder_32byte_flag!}

BIN
x86_64/badchars/libbadchars.so Executable file

Binary file not shown.

BIN
x86_64/callme/callme Executable file

Binary file not shown.

View File

@ -0,0 +1 @@
SMSAÙõ¦ŠÕÅ·ÛÛ<EFBFBD>¾ÊÚ²í*„c¼qµp |y>]

2
x86_64/callme/key1.dat Normal file
View File

@ -0,0 +1,2 @@



1
x86_64/callme/key2.dat Normal file
View File

@ -0,0 +1 @@


BIN
x86_64/callme/libcallme.so Executable file

Binary file not shown.

1
x86_64/fluff/flag.txt Normal file
View File

@ -0,0 +1 @@
ROPE{a_placeholder_32byte_flag!}

BIN
x86_64/fluff/fluff Executable file

Binary file not shown.

BIN
x86_64/fluff/libfluff.so Executable file

Binary file not shown.

1
x86_64/pivot/flag.txt Normal file
View File

@ -0,0 +1 @@
ROPE{a_placeholder_32byte_flag!}

BIN
x86_64/pivot/libpivot.so Executable file

Binary file not shown.

BIN
x86_64/pivot/pivot Executable file

Binary file not shown.

View File

@ -0,0 +1 @@
@k<>c<><63>&(cn<1B><><EFBFBD>9<EFBFBD>m<EFBFBD>* bV<62>`<60><><EFBFBD><EFBFBD>|

1
x86_64/ret2csu/key.dat Normal file
View File

@ -0,0 +1 @@
$™A÷g3ˆ«¼ÙÕÍV:âÌ@ŒÆ>' <20>á´

BIN
x86_64/ret2csu/libret2csu.so Executable file

Binary file not shown.

BIN
x86_64/ret2csu/ret2csu Executable file

Binary file not shown.

1
x86_64/ret2win/flag.txt Normal file
View File

@ -0,0 +1 @@
ROPE{a_placeholder_32byte_flag!}

BIN
x86_64/ret2win/ret2win Executable file

Binary file not shown.

1
x86_64/split/flag.txt Normal file
View File

@ -0,0 +1 @@
ROPE{a_placeholder_32byte_flag!}

BIN
x86_64/split/split Executable file

Binary file not shown.

1
x86_64/write4/flag.txt Normal file
View File

@ -0,0 +1 @@
ROPE{a_placeholder_32byte_flag!}

BIN
x86_64/write4/libwrite4.so Executable file

Binary file not shown.

BIN
x86_64/write4/write4 Executable file

Binary file not shown.