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
| #!/usr/bin/env bash | |
| # devnull@libcrack.so | |
| # 18/08/2016 05:54:35 | |
| # | |
| # | |
| # From man(1) find: | |
| # | |
| # -P Never follow symbolic links. This is the default behaviour. When find | |
| # examines or prints information a file, and the file is a symbolic link, | |
| # the information used shall be taken from the properties of the symbolic |
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
| #!/usr/bin/env bash | |
| # devnull@libcrack.so | |
| # 18/08/2016 05:54:35 | |
| # | |
| # | |
| # From man(1) find: | |
| # | |
| # -P Never follow symbolic links. This is the default behaviour. When find | |
| # examines or prints information a file, and the file is a symbolic link, | |
| # the information used shall be taken from the properties of the symbolic |
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
| /* | |
| * root@libcrack.so | |
| * Sun Jan 29 06:57:23 CET 2017 | |
| * | |
| * gcc -o /tmp/suidshell suidshell.c | |
| * chown root /tmp/shell | |
| * chmod +s /tmp/shell | |
| */ | |
| #define _GNU_SOURCE |
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
| #!/usr/bin/env bash | |
| # root@libcrack.so | |
| # Fri Jan 27 03:46:04 CET 2017 | |
| error(){ printf "\e[0;31m${*}\e[0m\n"; } | |
| success(){ printf "\e[0;32m${*}\e[0m\n"; } | |
| if [ -z "$1" ]; then | |
| error "Usage: $0 host.domain.com" | |
| exit 1 |
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
| #!/usr/bin/env python | |
| # encoding: utf-8 | |
| # devnull@libcrack.so | |
| # Sat Oct 8 13:45:22 CEST 2016 | |
| import struct | |
| filename = "file.zip" | |
| payload = "<script>alert(1)</script>" |
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
| #!/usr/bin/env perl | |
| # devnull@libcrack.so | |
| # Thu Dec 1 16:50:59 CET 2011 | |
| use strict; | |
| use warnings; | |
| # autoflush yeah | |
| $|=1; | |
| my $logfile = ""; |
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
| #!/usr/bin/env bash | |
| # root@libcrack.so | |
| # vie jul 29 00:09:06 CEST 2016 | |
| if [ $# != 2 ]; then | |
| printf "Usage: $0 oldjailname newjailname\n" | |
| exit 1 | |
| fi | |
| if [ ! -d $jailroot/$oldjailname ]; then |
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
| #!/usr/bin/env bash | |
| # Thu Jul 28 17:11:50 CEST 2016 | |
| # | |
| # Parameters when this script is executed from openvpn(4) | |
| # tun0 1500 1544 10.200.200.74 10.200.200.73 init | |
| # $1 $2 $4 $4 $5 $6 | |
| # | |
| iface="${1}" | |
| server="${4}" |
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
| #!/usr/bin/env bash | |
| # libcrack.so | |
| # Tue Jul 26 23:50:46 CEST 2016 | |
| if [[ -z "${1}" ]]; then | |
| printf "\n\tUsage: ${MYSELF##*/} <openvpn_client.conf>\n\n" | |
| exit 1 | |
| fi | |
| MYSELF="$(realpath -e "${0#-*}")" |