Giter Site home page Giter Site logo

Comments (2)

itm4n avatar itm4n commented on July 22, 2024

I checked on a Windows Server 2019 Standard VM but I can't reproduce the issue.

PS C:\Users\lab-user\Desktop> Invoke-WlanProfilesCheck -Verbose
VERBOSE: Exception calling "WlanOpenHandle" with "4" argument(s): "Unable to find an entry point named 'WlanOpenHandle'
 in DLL 'wlanapi'."

I do get the above exception though if I enable the "Verbose" mode but that's expected as the "wlanapi" doesn't exist on server editions.

However, this error is most probably caused by this part of the code:

try {
  # check implementation
}
catch {
  # Catch exceptions in case wlanapi doesn't exist
  Write-Verbose $Error[0]
}

There is an implicit parameter binding here as Write-Verbose expects a Message value. The proper way to write this would be Write-Verbose -Message $Error[0]. In your case, it seems that $Error[0] was null, hence the error.

I "fixed" this simply by adding a null check on the exception message.

try {
  # check implementation
}
catch {
  if ($Error[0]) { Write-Verbose -Message $Error[0] }
}

from privesccheck.

exploide avatar exploide commented on July 22, 2024

Thank you very much :)

from privesccheck.

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.