Giter Site home page Giter Site logo

Comments (2)

gleeda avatar gleeda commented on May 24, 2024

The patch is below and you can see that we are utilizing the given_root option so we can directly use the registry key objects instead of having to traverse for them again:

diff --git a/volatility/plugins/malware/svcscan.py b/volatility/plugins/malware/svcscan.py
index 1373758..2ec90ab 100644
--- a/volatility/plugins/malware/svcscan.py
+++ b/volatility/plugins/malware/svcscan.py
@@ -415,6 +415,15 @@ class SvcScan(common.AbstractWindowsCommand):
         if self._config.VERBOSE:
             regapi = registryapi.RegistryApi(self._config)
             ccs = regapi.reg_get_currentcontrolset()
+            key_name = "{0}\\services".format(ccs)
+            dlls = {}
+            for subkey in regapi.reg_get_all_subkeys(hive_name = "system", key = key_name):
+                for rootkey in regapi.reg_get_all_subkeys(hive_name = "system", key = "", given_root = subkey):
+                    if rootkey.Name == "Parameters":
+                        service_dll = regapi.reg_get_value(hive_name = "system", key = "", value = "ServiceDll", given_root = rootkey)
+                        if service_dll != None:
+                            dll = "{0}".format(service_dll)
+                            dlls[utils.remove_unprintable(str(subkey.Name))] = service_dll

         for rec in data:
             # This can't possibly look neat in a table with columns...
@@ -428,10 +437,7 @@ class SvcScan(common.AbstractWindowsCommand):
             outfd.write("Binary Path: {0}\n".format(rec.Binary))

             if self._config.VERBOSE:
-                val = regapi.reg_get_value(
-                                hive_name = "system", 
-                                key = "{0}\\services\\{1}\\Parameters".format(ccs, rec.ServiceName.dereference()), 
-                                value = "ServiceDll")
+                val = dlls.get("{0}".format(rec.ServiceName.dereference()), None)
                 if val is not None:
                     outfd.write("ServiceDll: {0}\n".format(val))

from volatility.

iMHLv2 avatar iMHLv2 commented on May 24, 2024

sounds good to me

from volatility.

Related Issues (20)

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.