Giter Club home page Giter Club logo

modules's People

Contributors

cracked5pider avatar glynx avatar icyguider avatar jabra- avatar purpole avatar s4ntiagop avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

modules's Issues

Situational Awareness BOFS [Please Close]

Thanks for the template for InlineExecute. Funnily enough I started expanding the framework yesterday and have mostly nailed down the function to pass to python scripting engine.

When passing the original script:

def arp( demonID, *param ):
    TaskID : str    = None
    demon  : Demon  = None

    demon  = Demon( demonID )
    TaskID = demon.ConsoleWrite(demon.CONSOLE_TASK, "Tasked demon to lists out ARP table")

    demon.InlineExecute( TaskID, "go", "Modules/SituationalAwareness/ObjectFiles/arp.x64.o", "", False )

    return TaskID

Havoc returns:

Traceback (most recent call last): File "<string>", line 48, in arp TypeError: argument 5 must be str, not bool

Changing the script to:

demon.InlineExecute( TaskID, "go", "Modules/SituationalAwareness/ObjectFiles/arp.x64.o", "", "" )

Fixes the problem. Will be happy to share the rest of the scripts with the community once finished.

NOTE: Ignore me, just pulled the latest version and it is working without any changes. Please close.

InvokeAssembly does nothing :(

Hey,

Thanks for looking into this.

Importing InvokeAssembly adds command dotnet execute but running assembly as per example does nothing. Here is the command line:
dotnet execute /home/pwnie/Havoc/Client/Assemblies/Rubeus.exe

image
Successfully imported script.

ldapsearch BOF from SituationalAwareness.py throws an error when trying to limit results

Limiting the results for ldapsearch is currently not possible. When trying something like:

ldapsearch "(objectCategory=computer)" "*" "1"

There is an error:

Traceback (most recent call last):
  File "<string>", line 903, in ldapsearch
  File "<string>", line 892, in ldapsearch_parse_params
  File "<string>", line 46, in adduint32
struct.error: required argument is not an integer

This is because result_limit is a string and not an int:

result_limit = params[ 2 ]

A possible fix would be params[ 2 ] -> int(params[ 2 ]) in ldap_search_params (tested it). I'll create a quick PR.

Incorrect paramater validation in nanorobeus when doing kerberoasting

Hey, as per the title nanorobeus when doing a kerberoast on line 330 has the following:

arg1 = param[ 1 ]

This causes it to fail when launched with 1 arg per the help file, changing it to:
param [ 0 ]
Enables it to successfully run (the output is incorrect but I believe that's another issue).

Next step from Templa

I would like to know, after using the template to create a module, what would be the next step to use it in an agent.

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.