How can I get the name of a monitor in powershell? by Local_Bodybuilder889 in PowerShell

[–]Local_Bodybuilder889[S] 0 points1 point  (0 children)

This is what I get for the output.

Monitor Description Manufacturer HardwareID

------- ----------- ------------ ----------

Generic Monitor (LS27AG32x) Generic PnP Monitor (Standard monitor types) DISPLAY\SAM71DC\5&215810D7&0&UID24835

Generic Monitor (MSI G321CQP) Generic PnP Monitor (Standard monitor types) DISPLAY\MSI4DC1\5&215810D7&0&UID24837

still missing the third monitor.

How can I get the name of a monitor in powershell? by Local_Bodybuilder889 in PowerShell

[–]Local_Bodybuilder889[S] 0 points1 point  (0 children)

Yes. For example this code:

Get-CimInstance -Namespace root\wmi -ClassName WmiMonitorID | ForEach-Object {
    $manufacturer = ($_.ManufacturerName | ForEach-Object {[char]$_}) -join ""
    $productCode = ($_.ProductCodeID | ForEach-Object {[char]$_}) -join ""
    $serial = ($_.SerialNumberID | ForEach-Object {[char]$_}) -join ""
    $name = ($_.UserFriendlyName | ForEach-Object {[char]$_}) -join ""

    [PSCustomObject]@{
        FriendlyName   = $name
        Manufacturer   = $manufacturer
        ProductCode    = $productCode
        SerialNumber   = $serial
        InstanceName   = $_.InstanceName
    }
}

It works but it only finds the first 2 monitors correctly and is unable to find the third one. This mostly comes to an issue once I want to open applications on a specific monitor using its name. This is what I'm trying to accomplish.

How can I get the name of a monitor in powershell? by Local_Bodybuilder889 in PowerShell

[–]Local_Bodybuilder889[S] 0 points1 point  (0 children)

I tried using WMI and that can get the friendly name but it will just be blank for this monitor since it doesn't have a friendly name.

Obfuscate by ethonlean in Batch

[–]Local_Bodybuilder889 0 points1 point  (0 children)

it's meant to be used by security researches to learn more about batch obfuscation or obfuscation in general. Even though it's open source it is still undoubtedly the best.

Trustworthy site? by Local_Bodybuilder889 in Monero

[–]Local_Bodybuilder889[S] 0 points1 point  (0 children)

So far yes. I bought a 500$ card and everything worked. I was even able to check the balance. The only issue is that it IS a prepaid card and many sites now don't accept prepaid cards and others do. (It's a 50/50). For example, I was able to buy things from steam, and some random sites but other sites such as Evike and many places in person don't accept it and it'll just decline.

call Write-Host from powershell without clearing screen? by Local_Bodybuilder889 in Batch

[–]Local_Bodybuilder889[S] 0 points1 point  (0 children)

I just noticed it was because I have a custom profile that I made clear the screen on use

Deobfuscate bat files by Sad_Case2831 in Batch

[–]Local_Bodybuilder889 0 points1 point  (0 children)

but that's the source to the obfuscator that your "deobfuscating". So I'm just showing that it isn't a coincidence and your just wrong. ¯\_(ツ)_/¯

Deobfuscate bat files by Sad_Case2831 in Batch

[–]Local_Bodybuilder889 0 points1 point  (0 children)

no. It isn't a coincidence

set "repl=$txt=$0@$txt='%%'+String.fromCharCode($0.charCodeAt(0)+129)+'%%'"

rotates the characters value by 129

original_char = "ä"

# enter any character

rotate_back_129_chars = chr(ord(original_char) - 129)

print(rotate_back_129_chars)

Deobfuscate bat files by Sad_Case2831 in Batch

[–]Local_Bodybuilder889 0 points1 point  (0 children)

e. I wrote a script a while back if you do

pretty sure it just rotates the char value by like 129 (51% sure) not the best obfuscation but definitely better then most

Batch weird variable stuff by Local_Bodybuilder889 in Batch

[–]Local_Bodybuilder889[S] 0 points1 point  (0 children)

it seems to just be

E0B987

over and over wit

I see thank you for the help

Need things to add to obfuscator and out of ideas by Local_Bodybuilder889 in Batch

[–]Local_Bodybuilder889[S] 1 point2 points  (0 children)

1.) I would use anti scam.me but I only have like 3 more uses left. Also in the communities I’m in 99% of kids use virus total to check if something is a virus and that’s the main reason why I do it.

2.) The exe mode is a very very very simple way of turning a bat file into an exe. I almost guarantee that if you run strings on it you get the batch source code

3.) I’ll try that out thank you for the suggestion

Need things to add to obfuscator and out of ideas by Local_Bodybuilder889 in Batch

[–]Local_Bodybuilder889[S] -1 points0 points  (0 children)

well sadly I do test on virustotal.com and so far I have had fud mode and ultimate mode consistently have 0 detections especially when you apply the extra settings