Skip to content
View AdrianN17's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report AdrianN17

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Malstatic Malstatic Public

    Web tools for PE static analysis

    JavaScript 1

  2. ArreglarHora ArreglarHora Public

    Pequeño programa para arreglar el reloj de windows 10

    C# 1

  3. Script to automate VMware hosts scan... Script to automate VMware hosts scan , useful to CTF challenges
    1
    #!/bin/bash
    2
    
    
    3
    sudo arp-scan 192.168.0.0/24 > arp-scan.txt
    4
    
    
    5
    arp_output=$(grep "VMware, Inc." arp-scan.txt)
  4. Windows cpp script to make dll injec... Windows cpp script to make dll injection
    1
    #include <iostream>
    2
    #include <locale>
    3
    #include <codecvt>
    4
    #include <windows.h>   
    5
    #include <tlhelp32.h>
  5. Small exe to practice windows api ho... Small exe to practice windows api hooking
    1
    #include <iostream>
    2
    #include <conio.h>
    3
    
    
    4
    __declspec(noinline) void greeting()
    5
    {
  6. DLL to practice windows api hooking ... DLL to practice windows api hooking injection
    1
    #include "pch.h"
    2
    #include <Windows.h>
    3
    #include <iostream>
    4
    #include <detours.h>
    5