mirror of https://github.com/pwndbg/pwndbg.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
525 B
Plaintext
19 lines
525 B
Plaintext
# venv
|
|
.venv/
|
|
|
|
# ignore binaries that are potentially tainted by the host system
|
|
# E.g. the binary could reference source code on the host system
|
|
# this is a problem because inside docker we won't have access to
|
|
# the host system
|
|
tests/binaries/**/*.o
|
|
tests/binaries/**/*.out
|
|
tests/binaries/**/gosample.x*
|
|
tests/binaries/**/div_zero_binary/core
|
|
tests/binaries/**/div_zero_binary/binary
|
|
!tests/binaries/**/*.go
|
|
|
|
# ignore QEMU test images (could also be tainted)
|
|
tests/library/qemu_system/kimages
|
|
|
|
# ignore .git directory
|
|
.git/ |