Code Monkey home page Code Monkey logo

ntdllreflection's Introduction

NTDLLReflection

Bypass Userland EDR hooks by Loading Reflective Ntdll in memory from a remote server based on Windows ReleaseID to avoid opening a handle to ntdll , and trigger exported APIs from the export table

image

image

ntdllreflection's People

Contributors

saadahla avatar

Stargazers

Omar El Houmadi avatar  avatar  avatar PJ avatar David Carboveanu avatar Kr0ff avatar kleiton0x00 avatar  avatar  avatar  avatar Oliver Schneider avatar  avatar DAssemblerxXBin3ryNinj! avatar  avatar  avatar  avatar Vithor avatar Zaban avatar Zeck avatar Scott Johnson avatar Ahmet Kara avatar Itay Migdal avatar  avatar cx-4 avatar socketz avatar yimingqpa avatar Kathan Patel avatar Andy avatar 0乂ᐯ爪 avatar Amrish Hallberg avatar  avatar Luis Fellipe M. O. B. avatar Professor  avatar  avatar Jax avatar Julien Houry avatar xMohamed avatar ☕¹⁰²⁴ avatar  avatar  avatar rifk01 avatar blablaalb avatar Francesco Soncina avatar @Prakul111 avatar Fatih Şensoy avatar  avatar  avatar  avatar  avatar Oleg Moshkov avatar ccc1cc avatar  avatar jrccrj avatar Joas A Santos avatar czm233 avatar  avatar  avatar void avatar Kirs avatar irohane avatar  avatar  avatar ZeroLP avatar  avatar Ptkatz avatar Eugene Dobrodeev avatar AVA avatar Cream_Team avatar  avatar Ahmed Lekssays avatar  avatar  avatar Ryota Sakai avatar 米科 ٩( ´ω` )و avatar  avatar Computer button pusher // Pousseur de boutons en informatique  || SIN - SIN HACK - HACK || NO-CODE evangelist || Black coffee like my sense of humor avatar reza.duty avatar  avatar  avatar H1ghC0ntr4sT avatar  avatar clod avatar  avatar  avatar  avatar lzz avatar sodinokibi avatar Dave Hardy avatar Radio Guy avatar REDFISH IA VEN avatar epichoxha avatar  avatar  avatar CHU TUAN KIET avatar UIWP0 avatar  avatar x_4mr avatar  avatar  avatar yusakul avatar

Watchers

Radu Alexandru Popescu avatar  avatar  avatar  avatar

ntdllreflection's Issues

The py file not found "MAC" library, so i make a simple py script:

## py -3 bin2mac.py https-443_x64.xprocess.bin > shellcode.h , by yanghaoi
import sys
def MAC(strings):
    alist = []
    for i in range(0, len(strings), 2):
        alist.append(strings[i:i+2])
    return '-'.join(alist)


if len(sys.argv) < 2:
    print("Usage: %s <shellcode_file>" % sys.argv[0])
    sys.exit(1) 

with open(sys.argv[1], "rb") as f:
    chunk = f.read(6).hex()
    print("{}const char* MAC[] =".format(' '*4))
    print("{")
    while chunk:
        if len(chunk) < 6:
            padding = 6 - len(chunk)
            chunk = chunk + str ( (b"\x90" * padding).hex() )
            print("{}\"{}\"".format(' '*8,MAC( chunk.upper())))
            break
        print("{}\"{}\",".format(' '*8, MAC( chunk.upper() )   ))
        chunk = f.read(6).hex()
    print("};")

cant find reflective nrìtdl dll

i try to use default ntdll as reflective ntdl dll but its not working , it would be help full if you provide a example reflective ntdll

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.