show dbs
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
| ___ ___ ________ ________________ __ | |
| | \/ || ___| \/ | _ | ___ \ \ / / | |
| | . . || |__ | . . | | | | |_/ /\ V / | |
| | |\/| || __|| |\/| | | | | / \ / | |
| | | | || |___| | | \ \_/ / |\ \ | | | |
| ┌\_|──|_/\____/\_|──|_/\___/\_|─\_|─\_/──────────────────────────────────────────────────── | |
| │ │ ► Function Prologue |
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
| # | |
| # Copyright (C) 2013-2020 Vinay Sajip. New BSD License. | |
| # | |
| import os | |
| import os.path | |
| from subprocess import Popen, PIPE | |
| import sys | |
| from threading import Thread | |
| from urllib.parse import urlparse | |
| from urllib.request import urlretrieve |
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
| from impacket.dcerpc.v5 import epm, lsad, rpcrt, transport, lsat, ndr, nrpc | |
| from impacket.uuid import bin_to_uuidtup | |
| from binascii import unhexlify, hexlify | |
| from struct import pack, unpack | |
| from random import randbytes | |
| import sys | |
| # Perform a netrlogonsamlogonwithflags with a server account, it uses netlogon as SSP (see [MS-NRPC] 3.3) | |
| # Pure TCP RPC is used (ncacn_ip_tcp option) | |
| # RC4 is used here because to use AES, impacket must be patched |
- Phase 1 – History
- History of Internet - https://www.youtube.com/watch?v=9hIQjrMHTv4
- Phase 2 – Web and Server Technology
- Basic concepts of web applications, how they work and the HTTP protocol - https://www.youtube.com/watch?v=RsQ1tFLwldY&t=7s
- HTML basics part 1 - https://www.youtube.com/watch?v=p6fRBGI_BY0
- HTML basics part 2 - https://www.youtube.com/watch?v=Zs6lzuBVK2w
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 { | |
| mobile, | |
| backend, | |
| creator, | |
| web, | |
| javascript, | |
| typescript, | |
| html, | |
| css, | |
| reactjs, |
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 python3 | |
| """ | |
| License: MIT License | |
| Copyright (c) 2023 Miel Donkers | |
| Very simple HTTP server in python for logging requests | |
| Usage:: | |
| ./server.py [<port>] | |
| """ | |
| from http.server import BaseHTTPRequestHandler, HTTPServer |
Nuclei Templates
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 <sys/socket.h> | |
| #include <string.h> | |
| #include <fcntl.h> | |
| #include <sys/sendfile.h> | |
| #include <unistd.h> | |
| #include <netinet/in.h> | |
| void main() { | |
| int s = socket(AF_INET, SOCK_STREAM, 0); | |
| struct sockaddr_in addr = { |
NewerOlder