Search results

  1. Tr0jan_Horse

    Telegram bot for converting voice messages to text

    Hello! In this article I will tell you how, not being a coder, I wrote a bot for Telegram. First, a little background. Actually, it is quite short. My position is the following: You need to write letters in messengers! Personally, I really don't like voice messages and people who constantly...
  2. Tr0jan_Horse

    ASM. Secrets of exploitation of PEB structure

    The abbreviation PEB stands for "Process Environment Block", or the environment block of the executable process. It has long attracted the attention of code researchers, because it stores the kernel part of our program, inaccessible from the user level. The size of this block on 64-bit systems...
  3. Tr0jan_Horse

    Hacker extensions for Firefox browser

    Hello everyone, dear friends! In today's article, I have collected for you 12 best extensions for the FireFox browser, which will be useful for both beginners and experienced hackers. Let's move on to the TOP! KNOXSS KNOXSS is a popular tool developed by Brazilian security researcher...
  4. Tr0jan_Horse

    The Disk Is Lava: Exploring Methods for Executing Payloads in Memory

    During pentests, you often have to fight with antiviruses. Unfortunately, this can take a lot of time, which negatively affects the results of the project. However, there are a couple of cool tricks that will allow you to forget about the antivirus on the host for a while, and one of them is...
  5. Tr0jan_Horse

    Clean code is beautiful architecture. Does it work?

    You are not writing code for the compiler — it will eat any nonsense if the syntax is correct. You are writing for people, for that guy from the next department who will analyze your code in six months. For yourself, when you forget what you were thinking about when you wrote it. For the team...
  6. Tr0jan_Horse

    Как работают нейросетевые трансформеры?

    How Neural Network Transformers Work? Introduction Neural network transformers have revolutionized the field of artificial intelligence, particularly in natural language processing (NLP) and computer vision. Their ability to process and generate human-like text has made them a cornerstone of...
  7. Tr0jan_Horse

    Как автоматизировать серверное администрирование?

    Automating Server Administration: From Theory to Practice Introduction Automating server administration is a crucial aspect of modern IT management. It allows system administrators to streamline repetitive tasks, reduce human error, and improve overall efficiency. In this article, we will...
  8. Tr0jan_Horse

    Разбираем мониторинг серверов с Prometheus

    ``` ### Introduction Monitoring servers is a critical aspect of maintaining the health and performance of IT infrastructure. Effective monitoring helps identify issues before they escalate into significant problems, ensuring system reliability and uptime. Among various monitoring tools...
  9. Tr0jan_Horse

    Почему важна документация в программировании?

    Why Documentation is Important in Programming Introduction Documentation in programming refers to the written text that explains the purpose, functionality, and usage of software code. It serves as a crucial resource for developers, teams, and end-users alike. This article aims to explore the...
  10. Tr0jan_Horse

    Основы работы с WebAssembly

    Introduction WebAssembly (Wasm) is a binary instruction format designed for safe and efficient execution on the web. It allows developers to run code written in multiple languages at near-native speed in web browsers. The significance of WebAssembly in cybersecurity and development cannot be...
  11. Tr0jan_Horse

    Основы разработки roguelike-игр

    ``` Introduction Roguelike games are a subgenre of role-playing video games characterized by procedural generation, turn-based gameplay, and permanent death of characters. The genre has evolved significantly since the release of the original "Rogue" in 1980, influencing countless titles and...
  12. Tr0jan_Horse

    Введение в хэш-таблицы

    Introduction Hash tables are a fundamental data structure in computer science, providing a way to store and retrieve data efficiently. They play a crucial role in various applications, including cybersecurity and programming. This article aims to explain the theory behind hash tables and...
  13. Tr0jan_Horse

    Основы сжатия данных

    ### Introduction Data compression is a fundamental concept in computer science and cybersecurity. It involves encoding information using fewer bits than the original representation. This article aims to explain the core concepts of data compression and provide practical examples to illustrate...
  14. Tr0jan_Horse

    Как создать свой IT-стартап?

    ``` Introduction In the rapidly evolving world of technology, launching an IT startup can be both an exciting and daunting endeavor. The significance of cybersecurity cannot be overstated, as it plays a crucial role in protecting your startup from potential threats. This article aims to provide...
  15. Tr0jan_Horse

    Основы работы с Flask и SQLAlchemy

    ```bb Основы работы с Flask и SQLAlchemy: Создание безопасного веб-приложения Введение Flask is a lightweight web framework for Python that allows developers to create web applications quickly and efficiently. It is designed to be simple and easy to use, making it a popular choice for both...
  16. Tr0jan_Horse

    Что такое бэкдоры и как их находят?

    What are Backdoors and How to Find Them? Introduction Backdoors are hidden methods of bypassing normal authentication or encryption in a computer system, product, or embedded device. They are often used for malicious purposes, allowing unauthorized access to systems and data. The concept of...
  17. Tr0jan_Horse

    Основы работы с рекурсией

    ``` Introduction Definition of Recursion: Recursion is a programming technique where a function calls itself to solve a problem. It is essential for breaking down complex problems into simpler sub-problems. Overview of Recursion in Programming and Cybersecurity: Recursion is widely used in...
  18. Tr0jan_Horse

    Основы работы с NPC в играх

    ``` Introduction NPCs, or Non-Player Characters, are integral components of video games, serving various roles that enhance the gaming experience. They can provide context, narrative depth, and interactive elements that engage players. This article aims to explore the fundamentals of NPCs, their...
Top Bottom