180 | SYSCALL_CLASS_UNIX equ 2
181 | SYSCALL_CLASS_SHIFT equ 24
182 | SYSCALL_CLASS_MASK equ (0FFh << SYSCALL_CLASS_SHIFT)
183 | SYSCALL_NUMBER_MASK equ (~SYSCALL_CLASS_MASK)
184 |
--------------------------------------------------------------------------------
/binary/macho101/macho.sha:
--------------------------------------------------------------------------------
1 | 5933595c6d709c51c1c102f3e51f4e5cb79d4151 *simple
2 | df6780634af9e4590f6c575ad006d2e88b61e6f9 *simple64
3 |
--------------------------------------------------------------------------------
/binary/macho101/macho101-64.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/macho101/macho101-64.pdf
--------------------------------------------------------------------------------
/binary/macho101/macho101.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/macho101/macho101.pdf
--------------------------------------------------------------------------------
/binary/macho101/makefile:
--------------------------------------------------------------------------------
1 | all: simple simple64
2 |
3 | simple: simple.asm
4 | yasm -o simple simple.asm
5 |
6 | simple64: simple64.asm
7 | yasm -o simple64 simple64.asm
8 |
--------------------------------------------------------------------------------
/binary/macho101/simple:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/macho101/simple
--------------------------------------------------------------------------------
/binary/macho101/simple.asm:
--------------------------------------------------------------------------------
1 | ; a simple Hello-World Mach-O
2 |
3 | ; Ange Albertini, BSD Licence 2013
4 |
5 | BITS 32
6 |
7 | %include 'macho.inc'
8 |
9 | istruc mach_header
10 | at mach_header.magic, dd MH_MAGIC
11 | at mach_header.cputype, dd CPU_TYPE_I386
12 | at mach_header.cpusubtype, dd CPU_SUBTYPE_I386_ALL
13 | at mach_header.filetype, dd MH_EXECUTE
14 | at mach_header.ncmds, dd 2 ; segment, thread
15 | at mach_header.sizeofcmds, dd CMD_SIZE
16 | at mach_header.flags, dd MH_NOUNDEFS
17 | iend
18 |
19 | commands:
20 |
21 | textsc:
22 | istruc segment_command
23 | at segment_command.cmd, dd LC_SEGMENT
24 | at segment_command.cmdsize, dd TEXTSC_SIZE
25 | at segment_command.segname, db "__TEXT"
26 | at segment_command.vmaddr, dd 0
27 | at segment_command.vmsize, dd FILESIZE
28 | at segment_command.fileoff, dd 0
29 | at segment_command.filesize, dd FILESIZE
30 | at segment_command.maxprot, dd VM_PROT_READ + VM_PROT_WRITE + VM_PROT_EXECUTE
31 | at segment_command.initprot, dd VM_PROT_READ + VM_PROT_EXECUTE
32 | at segment_command.nsects, dd 2 ; text, cstring
33 | iend
34 |
35 | istruc section_
36 | at section_.sectname, db "__text"
37 | at section_.segname, db "__TEXT"
38 | at section_.addr, dd text
39 | at section_.size, dd TEXT_SIZE
40 | at section_.offset, dd text
41 | at section_.align, dd 4
42 | iend
43 | istruc section_
44 | at section_.sectname, db "__cstring"
45 | at section_.segname, db "__TEXT"
46 | at section_.addr, dd data
47 | at section_.size, dd DATA_SIZE
48 | at section_.offset, dd data
49 | at section_.align, dd 4
50 | iend
51 | TEXTSC_SIZE equ $ - textsc
52 |
53 | tc:
54 | istruc thread_command
55 | at thread_command.cmd, dd LC_UNIXTHREAD
56 | at thread_command.cmdsize, dd TC_SIZE
57 | at thread_command.flavor, dd x86_THREAD_STATE_32
58 | at thread_command.count, dd i386_thread_state_size >> 2
59 | iend
60 |
61 | istruc i386_thread_state
62 | at i386_thread_state.eip, dd text
63 | iend
64 |
65 | TC_SIZE equ $ - tc
66 |
67 | CMD_SIZE equ $ - commands
68 |
69 | align 16, db 0
70 |
71 | ;******************************************************************************
72 |
73 | text:
74 | push MSG_LEN
75 | push msg
76 | push STDOUT_FILENO
77 | mov eax, SC_WRITE
78 | sub esp, 4
79 | int 80h
80 |
81 | add esp, 4 * 4 ; clearing arguments
82 |
83 | push 0 ; exit value
84 | mov eax, SC_EXIT
85 | sub esp, 4
86 | int 80h
87 |
88 | TEXT_SIZE equ $ - text
89 |
90 | align 16, db 0
91 |
92 | ;******************************************************************************
93 |
94 | data:
95 |
96 | msg db 'Hello World!', 0ah
97 | MSG_LEN equ $ - msg
98 |
99 | DATA_SIZE equ $ - data
100 |
101 | FILESIZE equ $
102 |
--------------------------------------------------------------------------------
/binary/macho101/simple64:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/macho101/simple64
--------------------------------------------------------------------------------
/binary/macho101/simple64.asm:
--------------------------------------------------------------------------------
1 | ; a simple Hello-World Mach-O
2 | ; 64 bits and Mountain Lion (LC_MAIN) format
3 |
4 | ; Ange Albertini, BSD Licence 2013
5 |
6 | BITS 64
7 |
8 | %include 'macho.inc'
9 |
10 | ;###############################################################################
11 |
12 | istruc mach_header64
13 | at mach_header64.magic, dd MH_MAGIC_64
14 | at mach_header64.cputype, dd CPU_TYPE_X86_64
15 | at mach_header64.cpusubtype, dd CPU_SUBTYPE_I386_ALL | CPU_SUBTYPE_LIB64
16 | at mach_header64.filetype, dd MH_EXECUTE
17 | at mach_header64.ncmds, dd 4 ; segment, entry_point, dylinker, dylib
18 | at mach_header64.sizeofcmds, dd CMD_SIZE
19 | at mach_header64.flags, dd MH_NOUNDEFS
20 | iend
21 |
22 |
23 | load_commands:
24 | istruc segment_command64
25 | at segment_command64.cmd, dd LC_SEGMENT_64
26 | at segment_command64.cmdsize, dd segment_command64_size
27 | at segment_command64.vmsize, dq 0x1000 ; rounded up
28 | at segment_command64.filesize, dq FILE_SIZE
29 | at segment_command64.maxprot, dd VM_PROT_READ | VM_PROT_WRITE | VM_PROT_EXECUTE
30 | at segment_command64.initprot, dd VM_PROT_READ | VM_PROT_WRITE | VM_PROT_EXECUTE
31 | iend
32 |
33 |
34 | istruc entry_point_command
35 | at entry_point_command.cmd, dd LC_MAIN
36 | at entry_point_command.cmdsize, dd entry_point_command_size
37 | at entry_point_command.entryoff, dd start
38 | iend
39 |
40 |
41 | dylinker
42 | istruc dylinker_command
43 | at dylinker_command.cmd, dd LC_LOAD_DYLINKER
44 | at dylinker_command.cmdsize, dd DYLINKER_SIZE
45 | at dylinker_command.name, dd dylinker_name - dylinker
46 | iend
47 | dylinker_name db '/usr/lib/dyld'
48 | align 4, db 0
49 | DYLINKER_SIZE equ $ - dylinker
50 |
51 |
52 | dylib:
53 | istruc dylib_command
54 | at dylib_command.cmd, dd LC_LOAD_DYLIB
55 | at dylib_command.cmdsize, dd DYLIB_SIZE
56 | at dylib_command.name, dd dylib_name - dylib
57 | iend
58 | dylib_name db '/usr/lib/libSystem.B.dylib'
59 | align 4, db 0
60 | DYLIB_SIZE equ $ - dylib
61 |
62 |
63 | CMD_SIZE equ $ - load_commands
64 |
65 | align 16, db 0
66 |
67 | ;###############################################################################
68 |
69 | start:
70 | mov rdx, MSG_LEN
71 | mov rsi, msg
72 | mov rdi, STDOUT_FILENO
73 | mov rax, ((SYSCALL_CLASS_UNIX << SYSCALL_CLASS_SHIFT) | (SYSCALL_NUMBER_MASK & (SC_WRITE)))
74 | syscall
75 |
76 | mov rdi, 0
77 | mov rax, ((SYSCALL_CLASS_UNIX << SYSCALL_CLASS_SHIFT) | (SYSCALL_NUMBER_MASK & (SC_EXIT)))
78 | syscall
79 |
80 | align 16, db 0
81 |
82 | ;###############################################################################
83 |
84 | msg db 'Hello World!', 0ah
85 | MSG_LEN EQU $ - msg
86 |
87 | ;###############################################################################
88 |
89 | FILE_SIZE EQU $ - $$
90 |
--------------------------------------------------------------------------------
/binary/macho64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/macho64.png
--------------------------------------------------------------------------------
/binary/machoppc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/machoppc.png
--------------------------------------------------------------------------------
/binary/machoppc64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/machoppc64.png
--------------------------------------------------------------------------------
/binary/mbr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/mbr.png
--------------------------------------------------------------------------------
/binary/midi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/midi.png
--------------------------------------------------------------------------------
/binary/mkv.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/mkv.png
--------------------------------------------------------------------------------
/binary/mp4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/mp4.png
--------------------------------------------------------------------------------
/binary/mscompress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/mscompress.png
--------------------------------------------------------------------------------
/binary/ne.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/ne.png
--------------------------------------------------------------------------------
/binary/nro.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/nro.png
--------------------------------------------------------------------------------
/binary/off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/off.png
--------------------------------------------------------------------------------
/binary/one.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/one.png
--------------------------------------------------------------------------------
/binary/opcodes_tables_compact.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/opcodes_tables_compact.pdf
--------------------------------------------------------------------------------
/binary/opcodes_tables_complete.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/opcodes_tables_complete.pdf
--------------------------------------------------------------------------------
/binary/otf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/otf.png
--------------------------------------------------------------------------------
/binary/pcx16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pcx16.png
--------------------------------------------------------------------------------
/binary/pcx256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pcx256.png
--------------------------------------------------------------------------------
/binary/pdf101/pdf101.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pdf101/pdf101.pdf
--------------------------------------------------------------------------------
/binary/pdf101/simple.pdf:
--------------------------------------------------------------------------------
1 | %PDF-1.1
2 |
3 | 1 0 obj
4 | <<
5 | /Pages 2 0 R
6 | >>
7 | endobj
8 |
9 | 2 0 obj
10 | <<
11 | /Type /Pages
12 | /Count 1
13 | /Kids [3 0 R]
14 | >>
15 | endobj
16 |
17 | 3 0 obj
18 | <<
19 | /Type /Page
20 | /Contents 4 0 R
21 | /Parent 2 0 R
22 | /Resources <<
23 | /Font <<
24 | /F1 <<
25 | /Type /Font
26 | /Subtype /Type1
27 | /BaseFont /Arial
28 | >>
29 | >>
30 | >>
31 | >>
32 | endobj
33 |
34 | 4 0 obj
35 | << /Length 47>>
36 | stream
37 | BT
38 | /F1 110
39 | Tf
40 | 10 400 Td
41 | (Hello World!) Tj
42 | ET
43 | endstream
44 | endobj
45 |
46 | xref
47 | 0 5
48 | 0000000000 65535 f
49 | 0000000010 00000 n
50 | 0000000047 00000 n
51 | 0000000111 00000 n
52 | 0000000313 00000 n
53 |
54 | trailer
55 | <<
56 | /Root 1 0 R
57 | >>
58 |
59 | startxref
60 | 416
61 | %%EOF
62 |
63 | %a simple 'Hello World!' PDF
64 | %Ange Albertini BSD Licence 2013
--------------------------------------------------------------------------------
/binary/pdf101/simplePDF.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pdf101/simplePDF.png
--------------------------------------------------------------------------------
/binary/pe101/README.md:
--------------------------------------------------------------------------------
1 | # PE 101 - a windows executable walkthrough
2 |
3 | A walkthrough of a simple Portable Executable.
4 |
5 | My first poster ever and my first artwork with Inkscape.
6 |
7 | Started in April 2012.
8 |
9 |
10 |
11 | # Alternate versions
12 |
13 | ## light version
14 |
15 | [PNG](pe101l.png) [PDF](pe101l.pdf) [SVG](pe101l.svg)
16 |
17 |
18 |
19 | ## 64 bit version
20 |
21 | [PNG](pe101-64.png) [PDF](pe101-64.pdf) [SVG](pe101-64.svg)
22 |
23 |
24 |
25 | # Translations
26 |
27 | ## Arabic: العربية
28 |
29 | تجول خلال ملف ويندوز تنفيذي - وليد عصر
30 | [PNG](pe101ar.png) [PDF](pe101ar.pdf) [SVG](pe101ar.svg)
31 |
32 |
33 |
34 | ## German: Deutsch
35 |
36 | Ein Überblick über Windows Executables - Daniel Plohmann
37 | [PNG](pe101de.png) [PDF](pe101de.pdf) [SVG](pe101de.svg)
38 |
39 |
40 |
41 | ## Spanish: Español
42 |
43 | un recorrido por los ejecutables de windows - Gorka Ramírez
44 | [PNG](pe101es.png) [PDF](pe101es.pdf) [SVG](pe101es.svg)
45 |
46 |
47 |
48 | ## French: Français
49 |
50 | visite guidée d'un exécutable Windows
51 | [PNG](pe101fr.png) [PDF](pe101fr.pdf) [SVG](pe101fr.svg)
52 |
53 |
54 |
55 |
56 | ## Japanese: 日本語
57 |
58 | Windows実行可能形式 - 板橋一正
59 | [PNG](pe101ja.png) [PDF](pe101ja.pdf) [SVG](pe101ja.svg)
60 |
61 |
62 |
63 | ## Korean: 잉글리시
64 |
65 | 윈도우 실행 정보 - 번역
66 | [PNG](pe101ko.png) [PDF](pe101ko.pdf) [SVG](pe101ko.svg)
67 |
68 |
69 |
70 | ## Polish: Polski
71 |
72 | Plik PE krok po kroku v1.1 - Adam Błaszczyk & Gynvael Coldwind
73 | [PNG](pe1011pl.png) [PDF](pe1011pl.pdf) [SVG v1.0](pe101pl.svg)
74 |
75 |
76 |
77 | ## Russian: Русский
78 |
79 | пошаговое руководство к исполняемым файлам (EXE) Windows - Lyr1k
80 | [PNG](pe101ru.png) [PDF](pe101ru.pdf) [SVG](pe101ru.svg)
81 |
82 |
83 |
84 | ## Chinese: 中文
85 |
86 | Windows可执行文件详解 - 译者 童进
87 | [PNG](pe101zh.png) [PDF](pe101zh.pdf) [SVG](pe101zh.svg)
88 |
89 |
90 |
--------------------------------------------------------------------------------
/binary/pe101/jpg.txt:
--------------------------------------------------------------------------------
1 | PE 101 - a windows executable walkthrough
2 | version 1, 3rd May 2012
3 | Introduction to the Portable Executable file format
4 | Ange Albertini - http://corkami.com
5 |
6 | portable executable, coff, introduction, walkthrough, windows, binary, executable, file format
7 |
--------------------------------------------------------------------------------
/binary/pe101/metadata.txt:
--------------------------------------------------------------------------------
1 | InfoKey: Title
2 | InfoValue: PE 101 - a windows executable walkthrough (version 1)
3 | InfoKey: Subject
4 | InfoValue: Introduction to the Portable Executable file format
5 | InfoKey: Author
6 | InfoValue: Ange Albertini - http://corkami.com
7 | InfoKey: Keywords
8 | InfoValue: portable executable, coff, introduction, walkthrough, windows, binary, executable, file format
9 | InfoKey: Creator
10 | InfoValue: Inkscape
11 | InfoKey: Producer
12 | InfoValue: Cairo
13 | InfoKey: CreationDate
14 | InfoValue: D:20120408235921Z
15 |
16 | InfoKey: ModDate
17 | InfoValue: D:20120503031415Z
18 |
--------------------------------------------------------------------------------
/binary/pe101/pdf-AR.txt:
--------------------------------------------------------------------------------
1 | InfoKey: Title
2 | InfoValue: PE 101 - a windows executable walkthrough (version 1 AR)
3 | InfoKey: Subject
4 | InfoValue: Portable Executable
5 | InfoKey: Author
6 | InfoValue: Ange Albertini - http://corkami.com, Translation by Walied Assar
7 | InfoKey: Keywords
8 | InfoValue: portable executable, coff, introduction, walkthrough, windows, binary, executable, file format
9 | InfoKey: Creator
10 | InfoValue: Inkscape
11 | InfoKey: Producer
12 | InfoValue: Cairo
13 | InfoKey: CreationDate
14 | InfoValue: D:20120408235921Z
15 |
16 | InfoKey: ModDate
17 | InfoValue: D:20120917031415Z
18 |
--------------------------------------------------------------------------------
/binary/pe101/pdf-DE.txt:
--------------------------------------------------------------------------------
1 | InfoKey: Title
2 | InfoValue: PE 101 - Ein Ueberblick ueber Windows Executables (version 1 DE)
3 | InfoKey: Subject
4 | InfoValue: Portable Executable
5 | InfoKey: Author
6 | InfoValue: Ange Albertini - http://corkami.com, translation by Daniel Plohmann
7 | InfoKey: Keywords
8 | InfoValue: portable executable, coff, Ueberblick
9 | InfoKey: Creator
10 | InfoValue: Inkscape
11 | InfoKey: Producer
12 | InfoValue: Cairo
13 | InfoKey: CreationDate
14 | InfoValue: D:20120408235921Z
15 |
16 | InfoKey: ModDate
17 | InfoValue: D:20120523031415Z
18 |
--------------------------------------------------------------------------------
/binary/pe101/pdf-FR.txt:
--------------------------------------------------------------------------------
1 | InfoKey: Title
2 | InfoValue: PE 101 - visite guidee d'un executable Windows (version 1 FR)
3 | InfoKey: Subject
4 | InfoValue: Introduction au format de fichier Portable Executable
5 | InfoKey: Author
6 | InfoValue: Ange Albertini - http://corkami.com
7 | InfoKey: Keywords
8 | InfoValue: portable executable, coff, introduction, visite guidee, windows, binaire, executable, format de fichier
9 | InfoKey: Creator
10 | InfoValue: Inkscape
11 | InfoKey: Producer
12 | InfoValue: Cairo
13 | InfoKey: CreationDate
14 | InfoValue: D:20120408235921Z
15 |
16 | InfoKey: ModDate
17 | InfoValue: D:20120520031415Z
18 |
--------------------------------------------------------------------------------
/binary/pe101/pdf-KO.txt:
--------------------------------------------------------------------------------
1 | InfoKey: Title
2 | InfoValue: PE 101 - a windows executable walkthrough (version 1 KO)
3 | InfoKey: Subject
4 | InfoValue: Portable Executable
5 | InfoKey: Author
6 | InfoValue: Ange Albertini - http://corkami.com, Translation by Daniel Choi
7 | InfoKey: Keywords
8 | InfoValue: portable executable, coff, introduction, walkthrough, windows, binary, executable, file format
9 | InfoKey: Creator
10 | InfoValue: Inkscape
11 | InfoKey: Producer
12 | InfoValue: Cairo
13 | InfoKey: CreationDate
14 | InfoValue: D:20120408235921Z
15 |
16 | InfoKey: ModDate
17 | InfoValue: D:20120815031415Z
18 |
--------------------------------------------------------------------------------
/binary/pe101/pdf-PL.txt:
--------------------------------------------------------------------------------
1 | InfoKey: Title
2 | InfoValue: PE 101 - Plik PE krok po kroku (version 1.1 PL)
3 | InfoKey: Subject
4 | InfoValue: Portable Executable
5 | InfoKey: Author
6 | InfoValue: Ange Albertini - http://corkami.com, Translation by Adam Blaszczyk and Gynvael Coldwind
7 | InfoKey: Keywords
8 | InfoValue: portable executable, coff, introduction, visite guidee, windows, binaire, executable, format de fichier
9 | InfoKey: Creator
10 | InfoValue: Inkscape
11 | InfoKey: Producer
12 | InfoValue: Cairo
13 | InfoKey: CreationDate
14 | InfoValue: D:20120408235921Z
15 |
16 | InfoKey: ModDate
17 | InfoValue: D:20120702031415Z
18 |
--------------------------------------------------------------------------------
/binary/pe101/pdf-RU.txt:
--------------------------------------------------------------------------------
1 | InfoKey: Title
2 | InfoValue: PE 101 - a windows executable walkthrough (version 1 RU)
3 | InfoKey: Subject
4 | InfoValue: Portable Executable
5 | InfoKey: Author
6 | InfoValue: Ange Albertini - http://corkami.com, Translation by Lyr1k
7 | InfoKey: Keywords
8 | InfoValue: portable executable, coff, introduction, walkthrough, windows, binary, executable, file format
9 | InfoKey: Creator
10 | InfoValue: Inkscape
11 | InfoKey: Producer
12 | InfoValue: Cairo
13 | InfoKey: CreationDate
14 | InfoValue: D:20120408235921Z
15 |
16 | InfoKey: ModDate
17 | InfoValue: D:20120703031415Z
18 |
--------------------------------------------------------------------------------
/binary/pe101/pdf-ZH.txt:
--------------------------------------------------------------------------------
1 | InfoKey: Title
2 | InfoValue: PE 101 - a windows executable walkthrough (version 1 ZH)
3 | InfoKey: Subject
4 | InfoValue: Portable Executable
5 | InfoKey: Author
6 | InfoValue: Ange Albertini - http://corkami.com, Translation by Jin Tong, Robert Xiang Wang
7 | InfoKey: Keywords
8 | InfoValue: portable executable, coff, introduction, walkthrough, windows, binary, executable, file format
9 | InfoKey: Creator
10 | InfoValue: Inkscape
11 | InfoKey: Producer
12 | InfoValue: Cairo
13 | InfoKey: CreationDate
14 | InfoValue: D:20120408235921Z
15 |
16 | InfoKey: ModDate
17 | InfoValue: D:20130628031415Z
18 |
--------------------------------------------------------------------------------
/binary/pe101/pe101-64.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101-64.pdf
--------------------------------------------------------------------------------
/binary/pe101/pe101-64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101-64.png
--------------------------------------------------------------------------------
/binary/pe101/pe101.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101.pdf
--------------------------------------------------------------------------------
/binary/pe101/pe101.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101.png
--------------------------------------------------------------------------------
/binary/pe101/pe1011pl.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe1011pl.pdf
--------------------------------------------------------------------------------
/binary/pe101/pe1011pl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe1011pl.png
--------------------------------------------------------------------------------
/binary/pe101/pe101ar.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101ar.pdf
--------------------------------------------------------------------------------
/binary/pe101/pe101ar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101ar.png
--------------------------------------------------------------------------------
/binary/pe101/pe101de.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101de.pdf
--------------------------------------------------------------------------------
/binary/pe101/pe101de.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101de.png
--------------------------------------------------------------------------------
/binary/pe101/pe101es.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101es.pdf
--------------------------------------------------------------------------------
/binary/pe101/pe101es.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101es.png
--------------------------------------------------------------------------------
/binary/pe101/pe101fr.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101fr.pdf
--------------------------------------------------------------------------------
/binary/pe101/pe101fr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101fr.png
--------------------------------------------------------------------------------
/binary/pe101/pe101ja.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101ja.pdf
--------------------------------------------------------------------------------
/binary/pe101/pe101ja.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101ja.png
--------------------------------------------------------------------------------
/binary/pe101/pe101ko.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101ko.pdf
--------------------------------------------------------------------------------
/binary/pe101/pe101ko.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101ko.png
--------------------------------------------------------------------------------
/binary/pe101/pe101l.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101l.pdf
--------------------------------------------------------------------------------
/binary/pe101/pe101l.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101l.png
--------------------------------------------------------------------------------
/binary/pe101/pe101pl.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101pl.pdf
--------------------------------------------------------------------------------
/binary/pe101/pe101ru.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101ru.pdf
--------------------------------------------------------------------------------
/binary/pe101/pe101ru.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101ru.png
--------------------------------------------------------------------------------
/binary/pe101/pe101zh.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101zh.pdf
--------------------------------------------------------------------------------
/binary/pe101/pe101zh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe101/pe101zh.png
--------------------------------------------------------------------------------
/binary/pe102/pe102.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pe102/pe102.pdf
--------------------------------------------------------------------------------
/binary/pe102/pe102.txt:
--------------------------------------------------------------------------------
1 | InfoKey: Title
2 | InfoValue: PE 102 - a Windows executable format overview (version 1.01)
3 | InfoKey: Subject
4 | InfoValue: the Portable Executable file format structure
5 | InfoKey: Author
6 | InfoValue: Ange Albertini - http://corkami.com
7 | InfoKey: Keywords
8 | InfoValue: portable executable, coff, structure, overview, windows, binary, executable, file format
9 | InfoKey: Creator
10 | InfoValue: Inkscape
11 | InfoKey: Producer
12 | InfoValue: Cairo
13 | InfoKey: CreationDate
14 | InfoValue: D:20100125235921Z
15 |
16 | InfoKey: ModDate
17 | InfoValue: D:20130827031415Z
18 |
--------------------------------------------------------------------------------
/binary/pef.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pef.png
--------------------------------------------------------------------------------
/binary/pifdos.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pifdos.png
--------------------------------------------------------------------------------
/binary/pifimg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pifimg.png
--------------------------------------------------------------------------------
/binary/pngplus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pngplus.png
--------------------------------------------------------------------------------
/binary/protobuf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/protobuf.png
--------------------------------------------------------------------------------
/binary/psd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/psd.png
--------------------------------------------------------------------------------
/binary/psd_iptc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/psd_iptc.png
--------------------------------------------------------------------------------
/binary/pyc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/pyc.png
--------------------------------------------------------------------------------
/binary/qoi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/qoi.png
--------------------------------------------------------------------------------
/binary/rar14.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/rar14.png
--------------------------------------------------------------------------------
/binary/rar4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/rar4.png
--------------------------------------------------------------------------------
/binary/rar5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/rar5.png
--------------------------------------------------------------------------------
/binary/rfrk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/rfrk.png
--------------------------------------------------------------------------------
/binary/rmi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/rmi.png
--------------------------------------------------------------------------------
/binary/rpm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/rpm.png
--------------------------------------------------------------------------------
/binary/rtf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/rtf.png
--------------------------------------------------------------------------------
/binary/sylk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/sylk.png
--------------------------------------------------------------------------------
/binary/te.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/te.png
--------------------------------------------------------------------------------
/binary/tga.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/tga.png
--------------------------------------------------------------------------------
/binary/tiff_exif.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/tiff_exif.png
--------------------------------------------------------------------------------
/binary/tos.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/tos.png
--------------------------------------------------------------------------------
/binary/ttf-loca1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/ttf-loca1.png
--------------------------------------------------------------------------------
/binary/ttf-loca2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/ttf-loca2.png
--------------------------------------------------------------------------------
/binary/ttf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/ttf.png
--------------------------------------------------------------------------------
/binary/uf2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/uf2.png
--------------------------------------------------------------------------------
/binary/wad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/wad.png
--------------------------------------------------------------------------------
/binary/wad_structure.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/wad_structure.png
--------------------------------------------------------------------------------
/binary/wasm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/wasm.png
--------------------------------------------------------------------------------
/binary/wav101/makefile:
--------------------------------------------------------------------------------
1 | all: simple.wav
2 |
3 | simple.wav: wav.asm
4 | yasm -o simple.wav wav.asm
5 |
--------------------------------------------------------------------------------
/binary/wav101/morse.inc:
--------------------------------------------------------------------------------
1 | ;let's encode 'Hello World' in Morse
2 |
3 | ;morse durations:
4 | ; one dot is the smallest duration, d
5 | ; one dash = 3 d
6 | ; after one dash or one dot, one d of silence
7 | ; between 2 words, 7d of silence.
8 |
9 | ; text H E L L O W O R L D
10 | ; letter codes .... . .-.. .-.. --- / .-- --- .-. .-.. -..
11 | ; actual encoding: =_=_=_=___=___=_===_=_=___=_===_=_=___===_===_===_______=_===_===___===_===_===___=_===_=___=_===_=_=___===_=_=___
12 |
13 |
14 | DURATION equ 80
15 |
16 | %macro _beep 0
17 | ; a complete SINUS waveform, over 8 samples (range = [1;255])
18 | ; [1 + int(127 * (1 + math.sin (i * math.pi / 4))) for i in range(8)]
19 | times DURATION db 128, 217, 255, 217, 128, 38, 1, 38
20 | %endmacro
21 |
22 | %macro _silence 0
23 | times DURATION * 8 db 128 ; 8 samples of silence
24 | %endmacro
25 |
26 | %macro _dot 0
27 | _beep
28 | _silence
29 | %endmacro
30 |
31 | %macro _dash 0
32 | _beep
33 | _beep
34 | _beep
35 | _silence
36 | %endmacro
37 |
38 | ;************************
39 |
40 | %macro _e 0 ; .
41 | _dot
42 | _letterbreak
43 | %endmacro
44 |
45 | %macro _w 0 ; .--
46 | _dot
47 | _dash
48 | _dash
49 | _letterbreak
50 | %endmacro
51 |
52 | %macro _r 0 ; .-.
53 | _dot
54 | _dash
55 | _dot
56 | _letterbreak
57 | %endmacro
58 |
59 | %macro _d 0 ; -..
60 | _dash
61 | _dot
62 | _dot
63 | _letterbreak
64 | %endmacro
65 |
66 | %macro _o 0 ; ---
67 | _dash
68 | _dash
69 | _dash
70 | _letterbreak
71 | %endmacro
72 |
73 | %macro _h 0 ; ....
74 | _dot
75 | _dot
76 | _dot
77 | _dot
78 | _letterbreak
79 | %endmacro
80 |
81 | %macro _l 0 ; .-..
82 | _dot
83 | _dash
84 | _dot
85 | _dot
86 | _letterbreak
87 | %endmacro
88 |
89 | ;************************
90 |
91 | %macro _letterbreak 0
92 | ; one silence already present after the previous dot/dash
93 | ; _silence
94 | _silence
95 | _silence
96 | %endmacro
97 |
98 | %macro _wordbreak 0 ; /
99 | ; 3 silences already present as a letter break
100 | ; _silence
101 | ; _silence
102 | ; _silence
103 | _silence
104 | _silence
105 | _silence
106 | _silence
107 | %endmacro
108 |
--------------------------------------------------------------------------------
/binary/wav101/parse.py:
--------------------------------------------------------------------------------
1 | #stupid reverse parser to check validity
2 | TONE = "\x80\xD9\xFF\xD9\x80\x26\x01\x26" * 80
3 | SILENCE = "\x80\x80\x80\x80\x80\x80\x80\x80" * 80
4 |
5 | fn = 'simple.wav'
6 | with open(fn, 'rb') as f:
7 | r = f.read()
8 | s = r[0x2c:]
9 |
10 | #print tone sequences
11 | s = s.replace(TONE, "\xdb")
12 | s = s.replace(SILENCE, " ")
13 | print s
14 |
15 |
16 | #print hex data
17 | l = []
18 | for c in s:
19 | if c == " ":
20 | l += [" ".join([" ".join("%02X" % ord(i) for i in list(SILENCE)), "".join([80 * "........"])])]
21 | else:
22 | l += [" ".join([" ".join("%02X" % ord(i) for i in list(TONE)), "".join([80 * ".....&.&"])])]
23 | print "\n".join(l)
24 |
25 |
--------------------------------------------------------------------------------
/binary/wav101/simple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/wav101/simple.png
--------------------------------------------------------------------------------
/binary/wav101/simple.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/wav101/simple.wav
--------------------------------------------------------------------------------
/binary/wav101/table.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/wav101/table.png
--------------------------------------------------------------------------------
/binary/wav101/wav.asm:
--------------------------------------------------------------------------------
1 | ; a 'Hello World' .WAV file in ASM
2 |
3 | ; Ange Albertini, BSD Licence 2014
4 |
5 | ;TODO: check the sizes' adjustments
6 |
7 | %include 'wav.inc'
8 |
9 | %include 'morse.inc'
10 |
11 | ;*******************************************************************************
12 |
13 | istruc CK ; generic RIFF chunk
14 | at CK.ckID, db 'RIFF'
15 | at CK.ckSize, dd _END - 9 ; TODO: why ?
16 | iend
17 |
18 | db 'WAVE' ; this is an audio file (Waveform Audio File Format), as RIFF (Resource Interchange File Format) is a generic container format
19 |
20 | istruc CK ; WAVE-specific format chunk
21 | at CK.ckID, db 'fmt '
22 | at CK.ckSize, dd FMT_SIZE
23 | iend
24 | fmt_start
25 | istruc fmtck ; WAVE format chunk
26 | at fmtck.wFormatTag, dw WAVE_FORMAT_PCM ; Pulse Code Modulation
27 | at fmtck.wChannels, dw 1
28 | at fmtck.dwSamplesPerSec, dd 8000
29 | at fmtck.dwAvgBytesPerSec, dd 8000
30 | at fmtck.wBlockAlign, dw 1
31 | iend
32 | istruc PCM_format_specific
33 | at PCM_format_specific.wBitsPerSample, dw 8
34 | iend
35 | ; cbSize dw 0 ; no extension
36 | FMT_SIZE equ $ - fmt_start
37 |
38 | istruc CK ; data chunk
39 | at CK.ckID, db 'data'
40 | at CK.ckSize, dd _END - 1 - data ; TODO: why ?
41 | iend
42 |
43 | data:
44 | _h
45 | _e
46 | _l
47 | _l
48 | _o
49 | _wordbreak
50 | _w
51 | _o
52 | _r
53 | _l
54 | _d
55 | _END
--------------------------------------------------------------------------------
/binary/wav101/wav.inc:
--------------------------------------------------------------------------------
1 | struc CK ; chunk
2 | .ckID resd 1 ; chunk type identifier
3 | .ckSize resd 1 ; chunk size field
4 | ; .ckData resb ckSize ; chunk data
5 | endstruc
6 |
7 | struc fmtck ; WAVE format chunk
8 | .wFormatTag resw 1
9 | .wChannels resw 1
10 | .dwSamplesPerSec resd 1
11 | .dwAvgBytesPerSec resd 1 ; to estimate the buffer size
12 | .wBlockAlign resw 1
13 | endstruc
14 |
15 | struc PCM_format_specific
16 | .wBitsPerSample resw 1
17 | endstruc
18 |
19 | WAVE_FORMAT_PCM equ 1
20 |
--------------------------------------------------------------------------------
/binary/wav101/wav.sha:
--------------------------------------------------------------------------------
1 | 7fc9b7b3aeadb9bb5e9e907b483359cc195a7387 *simple.wav
2 |
--------------------------------------------------------------------------------
/binary/wav101/wav101.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/wav101/wav101.pdf
--------------------------------------------------------------------------------
/binary/wav2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/wav2.png
--------------------------------------------------------------------------------
/binary/weird/README.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | README
8 |
14 |
17 |
18 |
19 | Weird files
20 |
27 |
28 | by xcellerator: a 512 bytes COM/MBR/PRG/Multiboot/Rar/ZIP/ELF polyglot .
29 | Illustrations for the PoC||GTFO 0x22:11 article.
30 |
34 | Detailed file types:
35 |
42 |
43 |
44 |
45 |
--------------------------------------------------------------------------------
/binary/weird/README.md:
--------------------------------------------------------------------------------
1 | # Weird files
2 |
3 | - [Shattered](https://shattered.io/): reusable 🖼️[PDF(JPG)](shattered.pdf) identical prefix SHA1 collision.
4 | - [Pile-Up](https://github.com/angea/pocorgtfo#0x19): reusable 🖼️[PE/PNG/PDF/MP4](pileup.pdf) chosen prefix MD5 multi-collision.
5 | - [Universal Doom](https://github.com/nneonneo/universal-doom) by Robert Xiao: 🖼️a functional DOS Executable (Dos4/GW) and Portable Executable polyglot.
6 | - 🖼️A polymock header: a file with many mock formats signatures.
7 | - [PNG Zip twist](https://github.com/gynvael/random-stuff/tree/master/png-zip-twist) by Gynvael Coldwind: 🖼️A ZIP/PNG polyglot (sharing the deflate data).
8 |
9 | ## [Janus](https://github.com/xcellerator/janus)
10 |
11 | by xcellerator: a 512 bytes COM/MBR/PRG/Multiboot/Rar/ZIP/ELF polyglot .
12 |
13 | Illustrations for the PoC||GTFO [0x22:11 article](https://github.com/angea/pocorgtfo#0x22).
14 |
15 | - 🖼️[Overview map](janus-map.png)
16 | - 🖼️[Complete dissection](janus-complete.pdf)
17 |
18 | Detailed file types:
19 | - 🖼️[GNU Multiboot2](janus-gmb.pdf)
20 | - 🖼️[Rar/Zip](janus-archives.pdf)
21 | - 🖼️[Commodore 64 program (C64 PRG)](janus-prg.pdf)
22 | - 🖼️[Dos Command (Com) / Master Boot record (mbr)](janus-commbr.pdf)
23 | - 🖼️[Executable and Linkable Format (Elf)](janus-elf.pdf)
24 |
25 |
26 |
--------------------------------------------------------------------------------
/binary/weird/janus-archives.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/weird/janus-archives.pdf
--------------------------------------------------------------------------------
/binary/weird/janus-commbr.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/weird/janus-commbr.pdf
--------------------------------------------------------------------------------
/binary/weird/janus-complete.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/weird/janus-complete.pdf
--------------------------------------------------------------------------------
/binary/weird/janus-elf.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/weird/janus-elf.pdf
--------------------------------------------------------------------------------
/binary/weird/janus-gmb.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/weird/janus-gmb.pdf
--------------------------------------------------------------------------------
/binary/weird/janus-map.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/weird/janus-map.png
--------------------------------------------------------------------------------
/binary/weird/janus-prg.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/weird/janus-prg.pdf
--------------------------------------------------------------------------------
/binary/weird/pileup.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/weird/pileup.pdf
--------------------------------------------------------------------------------
/binary/weird/polymock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/weird/polymock.png
--------------------------------------------------------------------------------
/binary/weird/shattered.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/weird/shattered.pdf
--------------------------------------------------------------------------------
/binary/weird/unidoom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/weird/unidoom.png
--------------------------------------------------------------------------------
/binary/weird/zippng.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/weird/zippng.png
--------------------------------------------------------------------------------
/binary/winhelp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/winhelp.png
--------------------------------------------------------------------------------
/binary/wmf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/wmf.png
--------------------------------------------------------------------------------
/binary/wmf2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/wmf2.png
--------------------------------------------------------------------------------
/binary/woff.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/woff.png
--------------------------------------------------------------------------------
/binary/woff2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/woff2.png
--------------------------------------------------------------------------------
/binary/wordml.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/wordml.png
--------------------------------------------------------------------------------
/binary/x64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/x64.png
--------------------------------------------------------------------------------
/binary/x86.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/x86.png
--------------------------------------------------------------------------------
/binary/xar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/xar.png
--------------------------------------------------------------------------------
/binary/xmp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/xmp.png
--------------------------------------------------------------------------------
/binary/xz.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/xz.png
--------------------------------------------------------------------------------
/binary/y4m_mono.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/y4m_mono.png
--------------------------------------------------------------------------------
/binary/y4m_yuv.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/y4m_yuv.png
--------------------------------------------------------------------------------
/binary/zip101/makefile:
--------------------------------------------------------------------------------
1 | all: simple.zip
2 |
3 | simple.zip: simple_zip.asm
4 | yasm -o simple.zip simple_zip.asm
--------------------------------------------------------------------------------
/binary/zip101/simple.sha:
--------------------------------------------------------------------------------
1 | a1fde85dda0b6ef6b27bd66846a88c5520834cad *simple.zip
2 |
--------------------------------------------------------------------------------
/binary/zip101/simple.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/zip101/simple.zip
--------------------------------------------------------------------------------
/binary/zip101/simple_zip.asm:
--------------------------------------------------------------------------------
1 | BITS 32
2 | %include "zip.inc"
3 |
4 | %macro _filename 0
5 | db 'hello.txt'
6 | %endmacro
7 |
8 | DATA_CRC32 equ 07d14ddddh
9 |
10 | file:
11 | istruc filerecord
12 | at filerecord.frSignature, db "PK", 3, 4
13 | at filerecord.frVersion, dw 0ah
14 | at filerecord.frCompression, dw COMP_STORED
15 | at filerecord.frCrc, dd DATA_CRC32
16 | at filerecord.frCompressedSize, dd DATA_SIZE
17 | at filerecord.frUncompressedSize, dd DATA_SIZE
18 | ; at filerecord.frFileNameLength, dw FILENAME_LEN
19 | iend
20 | ;_filename
21 | data db 'Hello World!', 0ah
22 | DATA_SIZE equ $ - data
23 |
24 |
25 | central_directory:
26 | istruc direntry
27 | at direntry.deSignature, db "PK", 1, 2
28 | at direntry.deVersionToExtract, dw 0ah
29 | at direntry.deCrc, dd DATA_CRC32
30 | at direntry.deCompressedSize, dd DATA_SIZE
31 | at direntry.deUncompressedSize, dd DATA_SIZE
32 | at direntry.deFileNameLength, dw FILENAME_LEN
33 | at direntry.deHeaderOffset, dd file
34 | iend
35 | filename _filename
36 | FILENAME_LEN equ $ - filename
37 |
38 | CENTRAL_DIRECTORY_SIZE equ $ - central_directory
39 |
40 | istruc endlocator
41 | at endlocator.elSignature, db "PK", 5, 6
42 | at endlocator.elEntriesInDirectory, db 1
43 | at endlocator.elDirectorySize, dd CENTRAL_DIRECTORY_SIZE
44 | at endlocator.elDirectoryOffset, dd central_directory
45 | iend
46 |
--------------------------------------------------------------------------------
/binary/zip101/zip.inc:
--------------------------------------------------------------------------------
1 | COMP_STORED equ 0
2 |
3 | struc filerecord
4 | .frSignature resb 4 ; db "PK", 3, 4
5 | .frVersion resw 1
6 | .frFlags resw 1
7 | .frCompression resw 1
8 | .frFileTime resw 1
9 | .frFileDate resw 1
10 | .frCrc resd 1
11 | .frCompressedSize resd 1
12 | .frUncompressedSize resd 1
13 | .frFileNameLength resw 1
14 | .frExtraFieldLength resw 1
15 | ;.frFileName resb frFileNameLength
16 | ;.frExtraField resb frExtraFieldLength
17 | ;.frData resb frCompressedSize
18 | endstruc
19 |
20 | struc direntry
21 | .deSignature resb 4 ; db "PK", 1, 2
22 | .deVersionMadeBy resw 1
23 | .deVersionToExtract resw 1
24 | .deFlags resw 1
25 | .deCompression resw 1
26 | .deFileTime resw 1
27 | .deFileDate resw 1
28 | .deCrc resd 1
29 | .deCompressedSize resd 1
30 | .deUncompressedSize resd 1
31 | .deFileNameLength resw 1
32 | .deExtraFieldLength resw 1
33 | .deFileCommentLength resw 1
34 | .deDiskNumberStart resw 1
35 | .deInternalAttributes resw 1
36 | .deExternalAttributes resd 1
37 | .deHeaderOffset resd 1
38 | ;.deFileName resb deFileNameLength
39 | ;.deExtraField resb deExtraFieldLength
40 | ;.deData resb deCompressedSize
41 | endstruc
42 |
43 | struc endlocator
44 | .elSignature resb 4 ;db "PK", 5, 6
45 | .elDiskNumber resw 1
46 | .elStartDiskNumber resw 1
47 | .elEntriesOnDisk resw 1
48 | .elEntriesInDirectory resw 1
49 | .elDirectorySize resd 1
50 | .elDirectoryOffset resd 1
51 | .elCommentLength resw 1
52 | ;.elComment resb elCommentLength
53 | endstruc
54 |
--------------------------------------------------------------------------------
/binary/zip101/zip101.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/zip101/zip101.pdf
--------------------------------------------------------------------------------
/binary/zstd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/zstd.png
--------------------------------------------------------------------------------
/binary/zstd_skip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/binary/zstd_skip.png
--------------------------------------------------------------------------------
/outline/Atari400.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/outline/Atari400.pdf
--------------------------------------------------------------------------------
/outline/Atari400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/outline/Atari400.png
--------------------------------------------------------------------------------
/outline/Atari800.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/outline/Atari800.pdf
--------------------------------------------------------------------------------
/outline/Atari800.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/outline/Atari800.png
--------------------------------------------------------------------------------
/outline/AtariCX30.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/outline/AtariCX30.pdf
--------------------------------------------------------------------------------
/outline/AtariCX30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/outline/AtariCX30.png
--------------------------------------------------------------------------------
/outline/AtariCX40.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/outline/AtariCX40.pdf
--------------------------------------------------------------------------------
/outline/AtariCX40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/outline/AtariCX40.png
--------------------------------------------------------------------------------
/outline/NesPad.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/outline/NesPad.pdf
--------------------------------------------------------------------------------
/outline/NesPad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/outline/NesPad.png
--------------------------------------------------------------------------------
/outline/PowerGlove.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/outline/PowerGlove.pdf
--------------------------------------------------------------------------------
/outline/PowerGlove.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/outline/PowerGlove.png
--------------------------------------------------------------------------------
/outline/README.md:
--------------------------------------------------------------------------------
1 | # Outlines
2 |
3 | ---
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/outline/SnesPad.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/outline/SnesPad.pdf
--------------------------------------------------------------------------------
/outline/SnesPad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/outline/SnesPad.png
--------------------------------------------------------------------------------
/outline/SuperGameBoy.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/outline/SuperGameBoy.pdf
--------------------------------------------------------------------------------
/outline/SuperGameBoy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/outline/SuperGameBoy.png
--------------------------------------------------------------------------------
/outline/rob.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/outline/rob.pdf
--------------------------------------------------------------------------------
/outline/rob.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/outline/rob.png
--------------------------------------------------------------------------------
/posters/CPSx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/CPSx.png
--------------------------------------------------------------------------------
/posters/Comics/Expectations and Reality.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/Comics/Expectations and Reality.pdf
--------------------------------------------------------------------------------
/posters/Comics/Expectations and Reality.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/Comics/Expectations and Reality.png
--------------------------------------------------------------------------------
/posters/Cyprus.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/Cyprus.pdf
--------------------------------------------------------------------------------
/posters/Cyprus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/Cyprus.png
--------------------------------------------------------------------------------
/posters/MS067OldVuln.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/MS067OldVuln.pdf
--------------------------------------------------------------------------------
/posters/MS067OldVuln.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/MS067OldVuln.png
--------------------------------------------------------------------------------
/posters/NeoGeo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/NeoGeo.png
--------------------------------------------------------------------------------
/posters/PPaP.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/PPaP.pdf
--------------------------------------------------------------------------------
/posters/PPaP.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/PPaP.png
--------------------------------------------------------------------------------
/posters/PeaceFlag/arabic.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/PeaceFlag/arabic.pdf
--------------------------------------------------------------------------------
/posters/PeaceFlag/arabic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/PeaceFlag/arabic.png
--------------------------------------------------------------------------------
/posters/PeaceFlag/english.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/PeaceFlag/english.pdf
--------------------------------------------------------------------------------
/posters/PeaceFlag/english.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/PeaceFlag/english.png
--------------------------------------------------------------------------------
/posters/PeaceFlag/farsi.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/PeaceFlag/farsi.pdf
--------------------------------------------------------------------------------
/posters/PeaceFlag/farsi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/PeaceFlag/farsi.png
--------------------------------------------------------------------------------
/posters/PeaceFlag/french.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/PeaceFlag/french.pdf
--------------------------------------------------------------------------------
/posters/PeaceFlag/french.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/PeaceFlag/french.png
--------------------------------------------------------------------------------
/posters/PeaceFlag/german.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/PeaceFlag/german.pdf
--------------------------------------------------------------------------------
/posters/PeaceFlag/german.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/PeaceFlag/german.png
--------------------------------------------------------------------------------
/posters/README.md:
--------------------------------------------------------------------------------
1 | # Posters
2 |
3 | ---
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | ---
22 |
23 |
24 |
25 |
26 | ---
27 | # Threat Scenarios
28 |
29 |
30 |
31 |
32 | ---
33 | # Peace Flag
34 |
35 |
36 |
37 |
38 |
39 |
40 | ---
41 | # Comics
42 |
43 |
--------------------------------------------------------------------------------
/posters/RosettaFlash.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/RosettaFlash.pdf
--------------------------------------------------------------------------------
/posters/RosettaFlash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/RosettaFlash.png
--------------------------------------------------------------------------------
/posters/STM32F40xxx.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/STM32F40xxx.pdf
--------------------------------------------------------------------------------
/posters/STM32F40xxx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/STM32F40xxx.png
--------------------------------------------------------------------------------
/posters/StarRaiders.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/StarRaiders.pdf
--------------------------------------------------------------------------------
/posters/StarRaiders.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/StarRaiders.png
--------------------------------------------------------------------------------
/posters/StarRaidersCover.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/StarRaidersCover.pdf
--------------------------------------------------------------------------------
/posters/StarRaidersCover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/StarRaidersCover.png
--------------------------------------------------------------------------------
/posters/ThreatScenarios/bio.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/ThreatScenarios/bio.pdf
--------------------------------------------------------------------------------
/posters/ThreatScenarios/bio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/ThreatScenarios/bio.png
--------------------------------------------------------------------------------
/posters/ThreatScenarios/classic.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/ThreatScenarios/classic.pdf
--------------------------------------------------------------------------------
/posters/ThreatScenarios/classic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/ThreatScenarios/classic.png
--------------------------------------------------------------------------------
/posters/ThreatScenarios/cyber.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/ThreatScenarios/cyber.pdf
--------------------------------------------------------------------------------
/posters/ThreatScenarios/cyber.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/ThreatScenarios/cyber.png
--------------------------------------------------------------------------------
/posters/facepalm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/facepalm.png
--------------------------------------------------------------------------------
/posters/hashtimeline.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/hashtimeline.pdf
--------------------------------------------------------------------------------
/posters/hashtimeline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/hashtimeline.png
--------------------------------------------------------------------------------
/posters/ioccc.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/ioccc.pdf
--------------------------------------------------------------------------------
/posters/ioccc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/ioccc.png
--------------------------------------------------------------------------------
/posters/megadrivemap.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/megadrivemap.pdf
--------------------------------------------------------------------------------
/posters/megadrivemap.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/megadrivemap.png
--------------------------------------------------------------------------------
/posters/norx.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/norx.pdf
--------------------------------------------------------------------------------
/posters/norx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/norx.png
--------------------------------------------------------------------------------
/posters/phyriodic.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/phyriodic.pdf
--------------------------------------------------------------------------------
/posters/phyriodic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/phyriodic.png
--------------------------------------------------------------------------------
/posters/sugihara.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/sugihara.pdf
--------------------------------------------------------------------------------
/posters/sugihara.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/posters/sugihara.png
--------------------------------------------------------------------------------
/tracing/AlienMind.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/AlienMind.pdf
--------------------------------------------------------------------------------
/tracing/AlienMind.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/AlienMind.png
--------------------------------------------------------------------------------
/tracing/Batman.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/Batman.pdf
--------------------------------------------------------------------------------
/tracing/Batman.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/Batman.png
--------------------------------------------------------------------------------
/tracing/BeerRun.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/BeerRun.pdf
--------------------------------------------------------------------------------
/tracing/BeerRun.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/BeerRun.png
--------------------------------------------------------------------------------
/tracing/DeReAtari.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/DeReAtari.pdf
--------------------------------------------------------------------------------
/tracing/DeReAtari.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/DeReAtari.png
--------------------------------------------------------------------------------
/tracing/Department.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/Department.pdf
--------------------------------------------------------------------------------
/tracing/Department.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/Department.png
--------------------------------------------------------------------------------
/tracing/Department.svg:
--------------------------------------------------------------------------------
1 |
2 |
30 |
--------------------------------------------------------------------------------
/tracing/Digdug.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/Digdug.pdf
--------------------------------------------------------------------------------
/tracing/Digdug.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/Digdug.png
--------------------------------------------------------------------------------
/tracing/EmployeesMust.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/EmployeesMust.pdf
--------------------------------------------------------------------------------
/tracing/EmployeesMust.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/EmployeesMust.png
--------------------------------------------------------------------------------
/tracing/EmployeesMust.svg:
--------------------------------------------------------------------------------
1 |
2 |
30 |
--------------------------------------------------------------------------------
/tracing/GameGenie.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/GameGenie.pdf
--------------------------------------------------------------------------------
/tracing/GameGenie.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/GameGenie.png
--------------------------------------------------------------------------------
/tracing/HardDrivin.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/HardDrivin.pdf
--------------------------------------------------------------------------------
/tracing/HardDrivin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/HardDrivin.png
--------------------------------------------------------------------------------
/tracing/HardHatMack.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/HardHatMack.pdf
--------------------------------------------------------------------------------
/tracing/HardHatMack.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/HardHatMack.png
--------------------------------------------------------------------------------
/tracing/Karateka.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/Karateka.pdf
--------------------------------------------------------------------------------
/tracing/Karateka.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/Karateka.png
--------------------------------------------------------------------------------
/tracing/LaughingMan.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/LaughingMan.pdf
--------------------------------------------------------------------------------
/tracing/LaughingMan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/LaughingMan.png
--------------------------------------------------------------------------------
/tracing/LaughingMan.svg:
--------------------------------------------------------------------------------
1 |
2 |
20 |
--------------------------------------------------------------------------------
/tracing/LightCycle.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/LightCycle.pdf
--------------------------------------------------------------------------------
/tracing/LightCycle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/LightCycle.png
--------------------------------------------------------------------------------
/tracing/LodeRunner.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/LodeRunner.pdf
--------------------------------------------------------------------------------
/tracing/LodeRunner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/LodeRunner.png
--------------------------------------------------------------------------------
/tracing/MegaMan.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/MegaMan.pdf
--------------------------------------------------------------------------------
/tracing/MegaMan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/MegaMan.png
--------------------------------------------------------------------------------
/tracing/MegaManSlide.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/MegaManSlide.pdf
--------------------------------------------------------------------------------
/tracing/MegaManSlide.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/MegaManSlide.png
--------------------------------------------------------------------------------
/tracing/OldManYellsAt.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/OldManYellsAt.pdf
--------------------------------------------------------------------------------
/tracing/OldManYellsAt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/OldManYellsAt.png
--------------------------------------------------------------------------------
/tracing/Paperboy.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/Paperboy.pdf
--------------------------------------------------------------------------------
/tracing/Paperboy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/Paperboy.png
--------------------------------------------------------------------------------
/tracing/PrinceOfPersia.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/PrinceOfPersia.pdf
--------------------------------------------------------------------------------
/tracing/PrinceOfPersia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/PrinceOfPersia.png
--------------------------------------------------------------------------------
/tracing/README.md:
--------------------------------------------------------------------------------
1 | # Tracings
2 |
3 | ---
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 | ---
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 | ---
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 | ---
63 | # Memes
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 | ---
72 | # Floppy disks warnings
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 | Beagle Bros & Polarware
87 |
88 | ---
89 | # LaTeX
90 |
91 |
92 |
--------------------------------------------------------------------------------
/tracing/RMH.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/RMH.pdf
--------------------------------------------------------------------------------
/tracing/RMH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/RMH.png
--------------------------------------------------------------------------------
/tracing/RadWarrior.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/RadWarrior.pdf
--------------------------------------------------------------------------------
/tracing/RadWarrior.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/RadWarrior.png
--------------------------------------------------------------------------------
/tracing/Randamn.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/Randamn.pdf
--------------------------------------------------------------------------------
/tracing/Randamn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/Randamn.png
--------------------------------------------------------------------------------
/tracing/ReverseEngineer.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/ReverseEngineer.pdf
--------------------------------------------------------------------------------
/tracing/ReverseEngineer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/ReverseEngineer.png
--------------------------------------------------------------------------------
/tracing/ReverseEngineer.svg:
--------------------------------------------------------------------------------
1 |
2 |
10 |
--------------------------------------------------------------------------------
/tracing/STIC.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/STIC.pdf
--------------------------------------------------------------------------------
/tracing/STIC.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/STIC.png
--------------------------------------------------------------------------------
/tracing/SkateOrDie.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/SkateOrDie.pdf
--------------------------------------------------------------------------------
/tracing/SkateOrDie.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/SkateOrDie.png
--------------------------------------------------------------------------------
/tracing/WavyNavy.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/WavyNavy.pdf
--------------------------------------------------------------------------------
/tracing/WavyNavy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/WavyNavy.png
--------------------------------------------------------------------------------
/tracing/WingsOfFury.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/WingsOfFury.pdf
--------------------------------------------------------------------------------
/tracing/WingsOfFury.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/WingsOfFury.png
--------------------------------------------------------------------------------
/tracing/Xevious.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/Xevious.pdf
--------------------------------------------------------------------------------
/tracing/Xevious.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/Xevious.png
--------------------------------------------------------------------------------
/tracing/aclu.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/aclu.pdf
--------------------------------------------------------------------------------
/tracing/aclu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/aclu.png
--------------------------------------------------------------------------------
/tracing/agony.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/agony.pdf
--------------------------------------------------------------------------------
/tracing/agony.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/agony.png
--------------------------------------------------------------------------------
/tracing/clippy.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/clippy.pdf
--------------------------------------------------------------------------------
/tracing/clippy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/clippy.png
--------------------------------------------------------------------------------
/tracing/floppy/back.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/floppy/back.pdf
--------------------------------------------------------------------------------
/tracing/floppy/back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/floppy/back.png
--------------------------------------------------------------------------------
/tracing/floppy/beagle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/floppy/beagle.png
--------------------------------------------------------------------------------
/tracing/floppy/bird.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/floppy/bird.pdf
--------------------------------------------------------------------------------
/tracing/floppy/bird.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/floppy/bird.png
--------------------------------------------------------------------------------
/tracing/floppy/bottle.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/floppy/bottle.pdf
--------------------------------------------------------------------------------
/tracing/floppy/bottle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/floppy/bottle.png
--------------------------------------------------------------------------------
/tracing/floppy/croc.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/floppy/croc.pdf
--------------------------------------------------------------------------------
/tracing/floppy/croc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/floppy/croc.png
--------------------------------------------------------------------------------
/tracing/floppy/fire.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/floppy/fire.pdf
--------------------------------------------------------------------------------
/tracing/floppy/fire.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/floppy/fire.png
--------------------------------------------------------------------------------
/tracing/floppy/kite.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/floppy/kite.pdf
--------------------------------------------------------------------------------
/tracing/floppy/kite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/floppy/kite.png
--------------------------------------------------------------------------------
/tracing/floppy/kite.svg:
--------------------------------------------------------------------------------
1 |
2 |
99 |
--------------------------------------------------------------------------------
/tracing/floppy/plane.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/floppy/plane.pdf
--------------------------------------------------------------------------------
/tracing/floppy/plane.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/floppy/plane.png
--------------------------------------------------------------------------------
/tracing/floppy/plane.svg:
--------------------------------------------------------------------------------
1 |
2 |
99 |
--------------------------------------------------------------------------------
/tracing/floppy/toilet.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/floppy/toilet.pdf
--------------------------------------------------------------------------------
/tracing/floppy/toilet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/floppy/toilet.png
--------------------------------------------------------------------------------
/tracing/floppy/toilet.svg:
--------------------------------------------------------------------------------
1 |
2 |
114 |
--------------------------------------------------------------------------------
/tracing/floppy/turntable.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/floppy/turntable.pdf
--------------------------------------------------------------------------------
/tracing/floppy/turntable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/floppy/turntable.png
--------------------------------------------------------------------------------
/tracing/gracie.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/gracie.pdf
--------------------------------------------------------------------------------
/tracing/gracie.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/gracie.png
--------------------------------------------------------------------------------
/tracing/gumball-game.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/gumball-game.pdf
--------------------------------------------------------------------------------
/tracing/gumball-game.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/gumball-game.png
--------------------------------------------------------------------------------
/tracing/gumball.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/gumball.pdf
--------------------------------------------------------------------------------
/tracing/gumball.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/gumball.png
--------------------------------------------------------------------------------
/tracing/higan.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/higan.pdf
--------------------------------------------------------------------------------
/tracing/higan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/higan.png
--------------------------------------------------------------------------------
/tracing/hometaping.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/hometaping.pdf
--------------------------------------------------------------------------------
/tracing/hometaping.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/hometaping.png
--------------------------------------------------------------------------------
/tracing/hometaping.svg:
--------------------------------------------------------------------------------
1 |
2 |
69 |
--------------------------------------------------------------------------------
/tracing/mcga.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/mcga.pdf
--------------------------------------------------------------------------------
/tracing/mcga.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/mcga.png
--------------------------------------------------------------------------------
/tracing/meme/KeepBroken.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/meme/KeepBroken.pdf
--------------------------------------------------------------------------------
/tracing/meme/KeepBroken.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/meme/KeepBroken.png
--------------------------------------------------------------------------------
/tracing/meme/KeepCalc.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/meme/KeepCalc.pdf
--------------------------------------------------------------------------------
/tracing/meme/KeepCalc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/meme/KeepCalc.png
--------------------------------------------------------------------------------
/tracing/meme/KeepSegfault.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/meme/KeepSegfault.pdf
--------------------------------------------------------------------------------
/tracing/meme/KeepSegfault.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/meme/KeepSegfault.png
--------------------------------------------------------------------------------
/tracing/meme/sudo_boo.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/meme/sudo_boo.pdf
--------------------------------------------------------------------------------
/tracing/meme/sudo_boo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/meme/sudo_boo.png
--------------------------------------------------------------------------------
/tracing/mk8.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/mk8.pdf
--------------------------------------------------------------------------------
/tracing/mk8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/mk8.png
--------------------------------------------------------------------------------
/tracing/ocean.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/ocean.pdf
--------------------------------------------------------------------------------
/tracing/ocean.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/ocean.png
--------------------------------------------------------------------------------
/tracing/piersolar.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/piersolar.pdf
--------------------------------------------------------------------------------
/tracing/piersolar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/piersolar.png
--------------------------------------------------------------------------------
/tracing/remember.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/remember.pdf
--------------------------------------------------------------------------------
/tracing/remember.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/remember.png
--------------------------------------------------------------------------------
/tracing/rfc791.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/rfc791.pdf
--------------------------------------------------------------------------------
/tracing/rfc791.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/rfc791.png
--------------------------------------------------------------------------------
/tracing/sneakers.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/sneakers.pdf
--------------------------------------------------------------------------------
/tracing/sneakers.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/sneakers.png
--------------------------------------------------------------------------------
/tracing/sonic.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/sonic.pdf
--------------------------------------------------------------------------------
/tracing/sonic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/sonic.png
--------------------------------------------------------------------------------
/tracing/superturbo.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/superturbo.pdf
--------------------------------------------------------------------------------
/tracing/superturbo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/superturbo.png
--------------------------------------------------------------------------------
/tracing/toilets.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/toilets.pdf
--------------------------------------------------------------------------------
/tracing/toilets.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/corkami/pics/669facbb0b6a977f959ae6473b8346e98cf23f53/tracing/toilets.png
--------------------------------------------------------------------------------