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
| section .data | |
| hello db "Hello, World!", 0xa | |
| len equ $ - hello | |
| section .code | |
| global _start | |
| _start: | |
| mov dl, len | |
| mov ecx, hello |
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
| # -*- coding: utf-8 -*- | |
| from requests import Session | |
| from enum import IntEnum, unique | |
| from functools import wraps, lru_cache | |
| class Basic: | |
| def __init__(self, proxy=None): | |
| self.session = Session() |
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 <WS2tcpip.h> | |
| #include <PathCch.h> | |
| #pragma comment(lib, "Ws2_32.lib") | |
| class Shell | |
| { | |
| public: | |
| Shell(LPCSTR addr) noexcept | |
| : m_addr{} |
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
| #define NOMINMAX | |
| #include <mutex> | |
| #include <string_view> | |
| #include <windows.h> | |
| #include "minhook.h" | |
| #pragma comment(lib, "libminhook-x86") |
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/python3 | |
| # -*- coding: utf-8 -*- | |
| from io import BytesIO | |
| from pwn import * | |
| from typing import Union, BinaryIO | |
| from itertools import chain, islice | |
| def create_rop_chain(stack_cookie: int, stager: BinaryIO) -> bytes: |
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
| # -*- coding: utf-8 -*- | |
| __author__ = "aidnzz" | |
| import pygame | |
| import logging | |
| import numpy as np | |
| from io import StringIO | |
| from abc import ABC, abstractmethod |