This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ LD_LIBRARY_PATH=/test ../glibc-2.19/build-tree/amd64-libc/elf/ld.so ./test-dlopen-LD_LIBRARY_PATH | |
| $ LD_LIBRARY_PATH=test ../glibc-2.19/build-tree/amd64-libc/elf/ld.so ./test-dlopen-LD_LIBRARY_PATH | |
| 19635: not fully qualified, marking insecure=test/ | |
| 19635: not fully qualified, marking insecure=test/ | |
| 19635: not fully qualified, marking insecure=test/ | |
| 19635: not fully qualified, marking insecure=test/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ sudo ./biscuit.py | |
| [@] biscuit> scan | |
| ['/dev/ttyUSB0'] | |
| [@] biscuit> select /dev/ttyUSB0 | |
| [@/dev/ttyUSB0] biscuit> open | |
| [@/dev/ttyUSB0 *] biscuit> available | |
| ['modules/local/ATTRACE.py', 'modules/local/BaudRate.py', 'modules/local/RunScript.py', 'modules/local/Terminal.py'] | |
| [@/dev/ttyUSB0 *] biscuit> use modules/local/ATTRACE.py | |
| ATTRACE | |
| [ATTRACE@/dev/ttyUSB0 *] biscuit> show |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # socat unix-connect:/var/run/avahi-daemon/socket stdin | |
| FUCK | |
| + FUCK: Go fuck yourself! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Get-Sigs($directorypath = $pwd, [string[]]$patternstring = "*.exe") { | |
| foreach ($fileitem in Get-ChildItem $directorypath)) { | |
| if ($patternstring | Where { $fileitem -Like $_ }) { | |
| Get-AuthenticodeSignature $fileitem.FullName | |
| } | |
| if (Test-Path $fileitem.FullName -PathType Container) { | |
| Get-Sigs $fileitem.FullName $patternstring | |
| } | |
| } | |
| } |
NewerOlder