Giter VIP home page Giter VIP logo

windowsdllsexport's Introduction

WindowsDllsExport

A list of all the DLLs export in C:\windows\system32\

The idea is to find some interesting export that can be used to evade some detection.

The list was extracted from the following build

PS> [Environment]::OSVersion.Version

Major  Minor  Build  Revision
-----  -----  -----  --------
10     0      19043  0

Generate The List By Yourself

DumpExport.c can be compiled and run locally. DumpExport.exe can be used to gather the information on your system.

PS> foreach($dll in gci -Path C:\windows\system32\ -Filter *.dll) { .\dumpexport.exe $($dll.Name) | out-file -FilePath .\$($dll.Name).txt -Encoding ASCII }

Sqlite Database

the exports.db is a sqlite3 database that contains the dll name and the export name in a table defined as following

table|exports|exports|2|CREATE TABLE exports (dllname text, exportname text)

The sqlite database can be imported into sqlite_web to query the database from a web interface.

pip3 install sqlite_web

Copy the exports.db and run sqlite_web using the following command

sqlite_web -H 0.0.0.0 -p 80 -r -x /opt/exports/exports.db

The sqlite_web interface can be queried as shown below

query

JSON Format

A json file is also available exports.json

Credit

Mr.Un1k0d3r RingZer0 Team

windowsdllsexport's People

Contributors

mr-un1k0d3r avatar

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.