Search results

  1. Tr0jan_Horse

    Building Distributed Network Systems: A Study of Architecture and Management (botnet) Part2

    Buenas Dias El muchachas. You waited, and you waited. Finally, the second part about botnetik. In the first part we created a framework, I would say a blank, but it is quite raw, not really working. I will immediately stipulate that I do not copy my code from the working product, but write a...
  2. Tr0jan_Horse

    Building Distributed Network Systems: A Study of Architecture and Management (botnet)

    Part 1 Good evening, gentlemen. Today I would like to talk not about hacking in its pure form. I think it's time for us to create our own BOTNET . This topic is not new, but I would like to draw attention to how exactly to start creating a botnet. I am already a botmaker. And this is what it...
  3. Tr0jan_Horse

    Silent hacking: how to penetrate the antivirus shield

    Table of contents: How Antivirus Works and How to Bypass It: Antivirus Testing and Vulnerability Analysis Antivirus architecture Malware Detection Methods Bypassing antivirus on disk Bypass antivirus in memory Practical case: bypassing antivirus via Thread Injection Antivirus (AV): testing...
  4. Tr0jan_Horse

    Your RAT for Android - Part 2

    Contents of the article: Greetings Downloading packages Creating a WEB plug and a method for sending requests Defining and processing the required methods Bonus Conclusion 1. Greeting 1. Link to the first article. Hello and good evening to all readers (it seems that this will...
  5. Tr0jan_Horse

    Java Your RAT for Android - Part 1

    Contents of the article: Greetings Creating a Project in Android Studio Creating an application template and creating part of the future functionality Conclusion 1. Greeting Hello and good evening to all readers. This is my first article on the topic of creating a RAT (or bot) for...
  6. Tr0jan_Horse

    Target Wi-FI pwn -> MITM File injection -> meterpreter session (or another article on MITM)

    In general, what we need: oneshot.py - a kind of analogue of all WiFi, Airgeddon, WiFiautopnevner, which works even with Nokia without monitor mode arpspoof - binary version works spoofer mac addresses works much more stable than analogs bettercap2 (purely for process visualization, + very...
  7. Tr0jan_Horse

    What is CHISEL and how does it work?

    Seriously though, Chisel is a client + server bundle in a single application written in Go that allows you to create secure tunnels bypassing firewall restrictions. So we already know that chisel uses TCP, HTTP and SSH, but let's figure out what it does for what. Basic concepts Chisel server...
  8. Tr0jan_Horse

    ASM. Windows Time Travel

    One of the many drawbacks of Windows is the huge zoo of time formats that application programmers have to deal with. As a result, a seemingly ordinary task turns into a non-trivial one, with the search for one of the many APIs. This article examines 7 types of time known to me, although the...
  9. Tr0jan_Horse

    Addressing and Data Transfer: How TCP/IP Works

    Addressing and data transmission in the network As we learned from previous articles, there are various data transmission channels, such as electrical wires, fiber optic cables, and radio waves. But in order to unite digital devices into a single network, one common condition is needed. This...
  10. Tr0jan_Horse

    ASM. Secrets of PEB Structure Exploitation

    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, since it stores the kernel part of our program, which is inaccessible from the user level. The size of this block on 64-bit...
  11. Tr0jan_Horse

    Detection of virtual machines and sandboxes by artifacts

    Table of contents: 1. Introduction 2. List of possible places • Hardware devices • System registry • Files in the Windows folder • Active processes 3. Practice 4. Conclusions 1. Introduction In our age of rapidly developing IT industry, disguise plays a huge role. Malware "with low...
  12. Tr0jan_Horse

    Introduction to Bash for Hackers. Part 2

    [Arrays] In scripts, you may want to store a set of items instead of a variable. You can use arrays for this. In bash, to define arrays, we put the values in parentheses with spaces. Below, we have an empty array called a, and then we define another array called b. To retrieve a value from an...
  13. Tr0jan_Horse

    Local Network Scanner to Get List of IP and MAC Addresses in Python

    At the moment, there are quite a lot of different network scanners in various operating systems, which will not only make a network map for you, but also show what network resources are available on each of the found machines, their network names. But why not make your own scanner in Python...
  14. Tr0jan_Horse

    Reverse Engineering for Beginners: Where to Start Analyzing Binaries

    Have you ever wondered how programs work "from the inside"? Reverse engineering is the key to understanding their mechanics, a powerful skill that opens many doors. Start your journey into this fascinating field with our simple and clear guide! Introduction Reverse engineering is the process...
  15. Tr0jan_Horse

    Extracting files from a damaged disk image: ddrescue, losetup and a little magic

    The problem of damaged hard drives is familiar to many: the drive starts to malfunction, the system freezes, files suddenly disappear. In such situations, conventional recovery methods can only aggravate the problem, causing data to be overwritten. The best solution is to create a disk image...
  16. Tr0jan_Horse

    NFS Encryption: RPC-with-TLS as an Alternative to VPN

    One day we wondered if it was possible to protect NFS protocol traffic. Well-known methods such as VPN tunnels and various proxies did not interest us. It turned out that RFC 9289 had recently been published , which describes RPC-with-TLS. And we decided to figure out what kind of beast it...
  17. Tr0jan_Horse

    Bluetooth Hacking: Using Bettercap for BLE Reconnaissance and Attacks!

    Welcome back, my aspiring cyberwarriors! Bluetooth is the most underappreciated attack vector into all your devices. Nearly all our devices have a bluetooth adapter and connection that is vulnerable to attack. This includes our cellphones, laptops, Smart Home devices, ICS devices and our...
  18. Tr0jan_Horse

    NEW No-Click Critical Vulnerability in Microsoft Windows: CVE-2025-21298

    Welcome back, my aspiring cyberwarriors! Over the years, Microsoft Windows operating system, the world’s most widely used OS, has been riddled with security vulnerabilities. As the years have gone by and Microsoft has become more security conscience, the number of critical vulnerabilities has...
  19. Tr0jan_Horse

    Malware Analysis: Process Injection in the REMCOS RAT

    Process injection is one of those stealthy techniques malware loves to use to stay under the radar. By injecting malicious code into legitimate processes, attackers can hide in plain sight, making detection a real challenge. In this post, I’ll walk you through an actual malware sample that uses...
  20. Tr0jan_Horse

    Vulnerability Scanning: Automatic Search For Known CVEs With CVEScannerV2

    Welcome back, aspiring cyberwarriors! During reconnaissance, our goal is to identify vulnerable services within our target’s network. To streamline this process, CVEScannerV2 was developed – a powerful Nmap script that bridges the gap between network scanning and vulnerability assessment. This...
Top Bottom