Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Top 10 Online Scam Frauds In India
https://cdn-images-1.medium.com/max/795/1*uhJIfjpVS4yXqitEwb30YQ.jpeg
फ्रेंड्स अगर आप आर्टिकल को पूरा पढना चाहते हें तो निचे दिए लिंक को copy करें और अपने ब्राउज़र में पेस्ट करे ,या आप मेरी वेबसाइट पर सीधा…
Continue reading on Medium »
Top 10 Online Scam Frauds In India
https://cdn-images-1.medium.com/max/795/1*uhJIfjpVS4yXqitEwb30YQ.jpeg
फ्रेंड्स अगर आप आर्टिकल को पूरा पढना चाहते हें तो निचे दिए लिंक को copy करें और अपने ब्राउज़र में पेस्ट करे ,या आप मेरी वेबसाइट पर सीधा…
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
5 señales de que su identidad ha sido robada
https://cdn-images-1.medium.com/max/1580/0*PSiHAEryivf48g2v
PUBLICADO EN 2 FEBRERO, 2022POR EHACKING
Continue reading on Medium »
5 señales de que su identidad ha sido robada
https://cdn-images-1.medium.com/max/1580/0*PSiHAEryivf48g2v
PUBLICADO EN 2 FEBRERO, 2022POR EHACKING
Continue reading on Medium »
wmiexec-RegOut - Modify Version Of Impacket Wmiexec.Py, Get Output(Data,Response) From Registry, Don'T Need SMB Connection, Also Bypassing Antivirus-Software In Lateral Movement Like WMIHACKER
Modify version of impacket wmiexec.py,wmipersist.py. Got output(data,response) from registry, don't need SMB connection, but I'm in the bad code :( Specially Thanks to: @rootclay, wechat: _xiangshan Overview In original wmiexec.py, it get response from smb connection (port 445,139). Unfortunately, some antivirus software are monitoring these ports as high risk. In this case, I drop smb connection function and use others method to execute command. wmiexec-reg-sch-UnderNT6-wip.py: Executed command by using win32-scheduledjob class. According to xiangshan, win32-scheduledjob class only works under windows NT6 (windows-server 2003). BTW, win32_scheduledjob has been disabled by default after windows NT6. Here is the way how to enable it. Key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\Configuration Name: EnableAt Type: REG_DWORD Value: 1 wmipersist-wip.py (Highly recommend, !!!only works on impacket v0.9.24!!!): A Python version of WMIHACKER, which I picked the vbs template from it. Attacker can use it to do lateral movement safety under antivirus-software running. wmiexec-regOut.py: Just a simple Win32_Process.create method example . How it works? wmiexec-wip.py workflow: Step 1: WMIC authenticated remotly Step 2: Use win32process class and call create method to execute command. Then, write down the result into C:\windows\temp directory named uuid.txt Step 3: Encode the file content to base64 strings (need to wait a few seconds) Step 4: Add the converted base64 string into registry, and key name call uuid Step 5: Get the base64 strings remotly and decode it locally. wmipersist-wip.py workflow: Step 1: Add custom vbs script into ActiveScriptEventConsumer class. Step 2: Creating an Event Filter. Step 3: Trigger FilterToConsumerBinding class to PWNED! Requirements Generally, you just need to install official impacket. Portal Usage wmiexec-wip.py usage: With cleartext password Key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\Configuration Name: EnableAt Type: REG_DWORDValue: 1 With NTLM hashes python3 wmiexec-reg.py administrator:111qqq...@192.168.10.90 'whoami' wmipersist-wip.py usage (Default is no output): With cleartext password (without output) python3 wmiexec-reg.py -hashes e91d2eafde47de62c6c49a012b3a6af1:e91d2eafde47de62c6c49a012b3a6af1 administrator@192.168.10.90 'whoami' With NTLM hashes python3 wmipersist-wip.py administrator:111qqq...@192.168.10.20 'command' With output python3 wmipersist-wip.py -hashes e91d2eafde47de62c6c49a012b3a6af1:e91d2eafde47de62c6c49a012b3a6af1 administrator@192.168.10.90 'whoami' Under Huorong antivirus-software (Using WMIHACKER VBS template!!!) Cheatsheet Do not forget to clean up temp directory after run command with out put. Command: del /q /f /s C:\windows\temp\* Command include double quotes. Make double quotes inside single quotes wevtutil cl '"security"' Todo Optimize code (In bad code now.) Add more functions References https://github.com/SecureAuthCorp/impacket/blob/master/examples/wmiexec.py https://github.com/360-Linton-Lab/WMIHACKER https://github.com/FortyNorthSecurity/WMIOps https://docs.microsoft.com/en-us/windows/win32/cimwin32prov/operating-system-classes Download wmiexec-RegOut
Read more...
Modify version of impacket wmiexec.py,wmipersist.py. Got output(data,response) from registry, don't need SMB connection, but I'm in the bad code :( Specially Thanks to: @rootclay, wechat: _xiangshan Overview In original wmiexec.py, it get response from smb connection (port 445,139). Unfortunately, some antivirus software are monitoring these ports as high risk. In this case, I drop smb connection function and use others method to execute command. wmiexec-reg-sch-UnderNT6-wip.py: Executed command by using win32-scheduledjob class. According to xiangshan, win32-scheduledjob class only works under windows NT6 (windows-server 2003). BTW, win32_scheduledjob has been disabled by default after windows NT6. Here is the way how to enable it. Key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\Configuration Name: EnableAt Type: REG_DWORD Value: 1 wmipersist-wip.py (Highly recommend, !!!only works on impacket v0.9.24!!!): A Python version of WMIHACKER, which I picked the vbs template from it. Attacker can use it to do lateral movement safety under antivirus-software running. wmiexec-regOut.py: Just a simple Win32_Process.create method example . How it works? wmiexec-wip.py workflow: Step 1: WMIC authenticated remotly Step 2: Use win32process class and call create method to execute command. Then, write down the result into C:\windows\temp directory named uuid.txt Step 3: Encode the file content to base64 strings (need to wait a few seconds) Step 4: Add the converted base64 string into registry, and key name call uuid Step 5: Get the base64 strings remotly and decode it locally. wmipersist-wip.py workflow: Step 1: Add custom vbs script into ActiveScriptEventConsumer class. Step 2: Creating an Event Filter. Step 3: Trigger FilterToConsumerBinding class to PWNED! Requirements Generally, you just need to install official impacket. Portal Usage wmiexec-wip.py usage: With cleartext password Key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\Configuration Name: EnableAt Type: REG_DWORDValue: 1 With NTLM hashes python3 wmiexec-reg.py administrator:111qqq...@192.168.10.90 'whoami' wmipersist-wip.py usage (Default is no output): With cleartext password (without output) python3 wmiexec-reg.py -hashes e91d2eafde47de62c6c49a012b3a6af1:e91d2eafde47de62c6c49a012b3a6af1 administrator@192.168.10.90 'whoami' With NTLM hashes python3 wmipersist-wip.py administrator:111qqq...@192.168.10.20 'command' With output python3 wmipersist-wip.py -hashes e91d2eafde47de62c6c49a012b3a6af1:e91d2eafde47de62c6c49a012b3a6af1 administrator@192.168.10.90 'whoami' Under Huorong antivirus-software (Using WMIHACKER VBS template!!!) Cheatsheet Do not forget to clean up temp directory after run command with out put. Command: del /q /f /s C:\windows\temp\* Command include double quotes. Make double quotes inside single quotes wevtutil cl '"security"' Todo Optimize code (In bad code now.) Add more functions References https://github.com/SecureAuthCorp/impacket/blob/master/examples/wmiexec.py https://github.com/360-Linton-Lab/WMIHACKER https://github.com/FortyNorthSecurity/WMIOps https://docs.microsoft.com/en-us/windows/win32/cimwin32prov/operating-system-classes Download wmiexec-RegOut
Read more...
GitHub
impacket/examples/wmiexec.py at master · fortra/impacket
Impacket is a collection of Python classes for working with network protocols. - fortra/impacket
Hacking Articles Tips Tricks Videos Tutorials
Photo
KitPloit - PenTest Tools!
wmiexec-RegOut - Modify Version Of Impacket Wmiexec.Py, Get Output(Data,Response) From Registry, Don'T Need SMB Connection, Also Bypassing Antivirus-Software In Lateral Movement Like WMIHACKER
http://2.bp.blogspot.com/-GL2EQ1Qe_3g/Yd0N7sgsdvI/AAAAAAAA8Bc/dXLQpCbOrqQLU_qqPvMPvLuyYsPXSRODgCK4BGAYYCw/w588-h640/wmiexec-RegOut_6-773981.png Modify version of impacket wmiexec.py,wmipersist.py. Got output(data,response) from registry, don't need SMB connection, but I'm in the bad code :( Specially Thanks to:* @rootclay, wechat: _xiangshanOverviewIn original wmiexec.py, it get response from smb connection (port 445,139). Unfortunately, some antivirus software are monitoring these ports as high risk.
In this case, I drop smb connection function and use others method to execute command.
* wmiexec-reg-sch-UnderNT6-wip.py: Executed command by using win32-scheduledjob class. According to xiangshan, win32-scheduledjob class only works under windows NT6 (windows-server 2003).
BTW, win32_scheduledjob has been disabled by default after windows NT6. Here is the way how to enable it.
wmipersist-wip.py
*
wmiexec-regOut.py: Just a simple Win32_Process.create method example . How it works?* wmiexec-wip.py workflow:Step 1:
* WMIC authenticated remotly
Step 2:
* Use win32process class and call create method to execute command. Then, write down the result into C:\windows\temp directory named [uuid].txt
Step 3:
* Encode the file content to base64 strings (need to wait a few seconds)
Step 4:
* Add the converted base64 string into registry, and key name call [uuid]
Step 5:
* Get the base64 strings remotly and decode it locally.
* wmipersist-wip.py workflow:Step 1:
* Add custom vbs script into ActiveScriptEventConsumer class.
Step 2:
* Creating an Event Filter.
Step 3:
* Trigger FilterToConsumerBinding class to PWNED! RequirementsGenerally, you just need to install official impacket.
* Portal Usage* wmiexec-wip.py usage:With cleartext password
wmiexec-RegOut - Modify Version Of Impacket Wmiexec.Py, Get Output(Data,Response) From Registry, Don'T Need SMB Connection, Also Bypassing Antivirus-Software In Lateral Movement Like WMIHACKER
http://2.bp.blogspot.com/-GL2EQ1Qe_3g/Yd0N7sgsdvI/AAAAAAAA8Bc/dXLQpCbOrqQLU_qqPvMPvLuyYsPXSRODgCK4BGAYYCw/w588-h640/wmiexec-RegOut_6-773981.png Modify version of impacket wmiexec.py,wmipersist.py. Got output(data,response) from registry, don't need SMB connection, but I'm in the bad code :( Specially Thanks to:* @rootclay, wechat: _xiangshanOverviewIn original wmiexec.py, it get response from smb connection (port 445,139). Unfortunately, some antivirus software are monitoring these ports as high risk.
In this case, I drop smb connection function and use others method to execute command.
* wmiexec-reg-sch-UnderNT6-wip.py: Executed command by using win32-scheduledjob class. According to xiangshan, win32-scheduledjob class only works under windows NT6 (windows-server 2003).
BTW, win32_scheduledjob has been disabled by default after windows NT6. Here is the way how to enable it.
Key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\Configuration Name: EnableAt Type: REG_DWORD Value: 1 * wmipersist-wip.py
(Highly recommend, !!!only works on impacket v0.9.24!!!): A Python version of WMIHACKER, which I picked the vbs template from it. Attacker can use it to do lateral movement safety under antivirus-software running.*
wmiexec-regOut.py: Just a simple Win32_Process.create method example . How it works?* wmiexec-wip.py workflow:Step 1:
* WMIC authenticated remotly
Step 2:
* Use win32process class and call create method to execute command. Then, write down the result into C:\windows\temp directory named [uuid].txt
Step 3:
* Encode the file content to base64 strings (need to wait a few seconds)
Step 4:
* Add the converted base64 string into registry, and key name call [uuid]
Step 5:
* Get the base64 strings remotly and decode it locally.
* wmipersist-wip.py workflow:Step 1:
* Add custom vbs script into ActiveScriptEventConsumer class.
Step 2:
* Creating an Event Filter.
Step 3:
* Trigger FilterToConsumerBinding class to PWNED! RequirementsGenerally, you just need to install official impacket.
* Portal Usage* wmiexec-wip.py usage:With cleartext password
Key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\Configuration
Name: EnableAt
Type: REG_DWORD
Value: 1 http://2.bp.blogspot.com/-Y_akxGXZ6vM/Yd0N5z1f9oI/AAAAAAAA8A0/Zjy-YaxeVDMl5JmvlWGssjkltFt2D2-ogCK4BGAYYCw/w640-h156/wmiexec-RegOut_1-767589.png With NTLM hashes python3 wmiexec-reg.py administrator:111qqq...@192.168.10.90 'whoami'http://4.bp.blogspot.com/-gtG5y0ed7c4/Yd0N6ajbTDI/AAAAAAAA8A8/Q7tQUNu1hAsM0Hg6r19hAtuhTb-wDyH9wCK4BGAYYCw/w640-h216/wmiexec-RegOut_2-768850.png * wmipersist-wip.py usage (Default is no output):With cleartext password (without output) python3 wmiexec-reg.py -hashes e91d2eafde47de62c6c49a012b3a6af1:e91d2eafde47de62c6c49a012b3a6af1 administrator@192.168.10.90 'whoami'http://4.bp.blogspot.com/-GhLISOio0DA/Yd0N6jv2KyI/AAAAAAAA8BE/qWVBetp9X2QRszDWhtlmYmnooLWUoslvACK4BGAYYCw/w640-h210/wmiexec-RegOut_3-770101.png With NTLM hashes python3 wmipersist-wip.py administrator:111qqq...@192.168.10.20 'command'http://3.bp.blogspot.com/-rib347oxFog/Yd0N6ySUiSI/AAAAAAAA8BM/4F9sWYu8h80x7Lfjle2Q6BcvijcDxVOdgCK4BGAYYCw/w640-h144/wmiexec-RegOut_4-771415.png With output python3 wmipersist-wip.py -hashes e91d2eafde47de62c6c49a012b3a6af1:e91d2eafde47de62c6c49a012b3a6af1 administrator@192.168.10.90 'whoami'http://4.bp.blogspot.com/-4208dmA_5SU/Yd0N7ZljyOI/AAAAAAAA8BU/k7c95nLcG5cz8EkUVT9AHIrUt[...]
Hacking Articles Tips Tricks Videos Tutorials
KitPloit - PenTest Tools! wmiexec-RegOut - Modify Version Of Impacket Wmiexec.Py, Get Output(Data,Response) From Registry, Don'T Need SMB Connection, Also Bypassing Antivirus-Software In Lateral Movement Like WMIHACKER http://2.bp.blogspot.com/-GL2EQ1Qe_…
qGVzR2fACK4BGAYYCw/w640-h162/wmiexec-RegOut_5-772765.png http://2.bp.blogspot.com/-GL2EQ1Qe_3g/Yd0N7sgsdvI/AAAAAAAA8Bc/dXLQpCbOrqQLU_qqPvMPvLuyYsPXSRODgCK4BGAYYCw/w588-h640/wmiexec-RegOut_6-773981.png Under Huorong antivirus-software (Using WMIHACKER VBS template!!!) http://4.bp.blogspot.com/-xHsj6HVEKwo/Yd0N7-spZjI/AAAAAAAA8Bk/2LESFu9fI5gAhBcuNbhmzZ83wfA-cVRwQCK4BGAYYCw/w640-h180/wmiexec-RegOut_7-775280.png Cheatsheet*
Do not forget to clean up temp directory after run command with out put.
Command:
Command include double quotes.
Make double quotes inside single quotes
* Add more functions References* https://github.com/SecureAuthCorp/impacket/blob/master/examples/wmiexec.py
* https://github.com/360-Linton-Lab/WMIHACKER
* https://github.com/FortyNorthSecurity/WMIOps
* https://docs.microsoft.com/en-us/windows/win32/cimwin32prov/operating-system-classes Download wmiexec-RegOut
Do not forget to clean up temp directory after run command with out put.
Command:
del /q /f /s C:\windows\temp\*http://2.bp.blogspot.com/-mkXn-3Ch2bo/Yd0N8XdJbWI/AAAAAAAA8Bs/0Iy0pGHE4icfNWAEvF-dIYqD82P-F5RvQCK4BGAYYCw/w640-h184/wmiexec-RegOut_8-776864.png * Command include double quotes.
Make double quotes inside single quotes
wevtutil cl '"security"'http://4.bp.blogspot.com/-4E2m_PJ8KMw/Yd0N8lkCBPI/AAAAAAAA8B4/nPPh7UywW2AksFBzsygrzzj8-5jaR3jpwCK4BGAYYCw/w640-h150/wmiexec-RegOut_9-778088.png Todo* Optimize code (In bad code now.)* Add more functions References* https://github.com/SecureAuthCorp/impacket/blob/master/examples/wmiexec.py
* https://github.com/360-Linton-Lab/WMIHACKER
* https://github.com/FortyNorthSecurity/WMIOps
* https://docs.microsoft.com/en-us/windows/win32/cimwin32prov/operating-system-classes Download wmiexec-RegOut
Hacking Articles Tips Tricks Videos Tutorials
Photo
Dark Reading: Attacks/Breaches
BIO-key to Expand Customer Reach and Talent in EMEA Region via Definitive Agreement to Acquire Authentication Solutions Provider Swivel Secure Europe
Expansion comes via definitive agreement to acquire authentication solutions provider Swivel Secure Europe.
___________________________
@hacking_Attack
@Hacking_Video
BIO-key to Expand Customer Reach and Talent in EMEA Region via Definitive Agreement to Acquire Authentication Solutions Provider Swivel Secure Europe
Expansion comes via definitive agreement to acquire authentication solutions provider Swivel Secure Europe.
___________________________
@hacking_Attack
@Hacking_Video
Dark Reading
BIO-key to Expand Customer Reach and Talent in EMEA Region
Expansion comes via definitive agreement to acquire authentication solutions provider Swivel Secure Europe.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Dark Reading: Attacks/Breaches
Keeper Security Acquires Glyptodon
The acquisition enables distributed teams to connect to remote or cloud infrastructure in a hyper-secure, agentless and passwordless way without a VPN.
___________________________
@hacking_Attack
@Hacking_Video
Keeper Security Acquires Glyptodon
The acquisition enables distributed teams to connect to remote or cloud infrastructure in a hyper-secure, agentless and passwordless way without a VPN.
___________________________
@hacking_Attack
@Hacking_Video
Dark Reading
Keeper Security Acquires Glyptodon
The acquisition enables distributed teams to connect to remote or cloud infrastructure in a hyper-secure, agentless and passwordless way without a VPN.
wmiexec-RegOut - Modify Version Of Impacket Wmiexec.Py, Get Output(Data,Response) From Registry, Don'T Need SMB Connection, Also Bypassing Antivirus-Software In Lateral Movement Like WMIHACKER
http://www.kitploit.com/2022/02/wmiexec-regout-modify-version-of.html
___________________________
@hacking_Attack
@Hacking_Video
http://www.kitploit.com/2022/02/wmiexec-regout-modify-version-of.html
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
wmiexec-RegOut - Modify Version Of Impacket Wmiexec.Py, Get Output(Data,Response) From Registry, Don'T Need SMB Connection, Also…
Modify version of impacket wmiexec.py,wmipersist.py. Got output(data,response) from registry, don't need SMB connection, but I'm in the bad code :(
Specially Thanks to: @rootclay (https://github.com/rootclay), wechat: _xiangshan Overview In original wmiexec.py, it get response from smb connection (port 445,139). Unfortunately, some antivirus software (https://www.kitploit.com/search/label/Antivirus%20Software) are monitoring these ports as high risk.
In this case, I drop smb connection function and use others method to execute command. wmiexec-reg-sch-UnderNT6-wip.py: Executed command by using win32-scheduledjob class. According to xiangshan, win32-scheduledjob class only works under windows NT6 (windows-server 2003).
BTW, win32_scheduledjob has been disabled by default after windows NT6. Here is the way how to enable it. Key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\Configuration Name: EnableAt Type: REG_DWORD Value: 1 wmipersist-wip.py (Highly recommend, !!!only works on impacket v0.9.24!!!): A Python version of WMIHACKER (https://github.com/rootclay/WMIHACKER), which I picked the vbs template from it. Attacker can use it to do lateral movement (https://www.kitploit.com/search/label/Lateral%20Movement) safety under antivirus-software running. wmiexec-regOut.py: Just a simple Win32_Process.create method example . How it works? wmiexec-wip.py workflow: Step 1: WMIC authenticated remotly Step 2: Use win32process class and call create method to execute command. Then, write down the result into C:\windows\temp directory (https://www.kitploit.com/search/label/Directory) named [uuid].txt Step 3: Encode the file content to base64 strings (need to wait a few seconds) Step 4: Add the converted base64 string into registry, and key name call [uuid] Step 5: Get the base64 strings remotly and decode it locally. wmipersist-wip.py workflow: Step 1: Add custom vbs script into ActiveScriptEventConsumer class. Step 2: Creating an Event Filter. Step 3: Trigger FilterToConsumerBinding class to PWNED! Requirements Generally, you just need to install official impacket. Portal (https://github.com/SecureAuthCorp/impacket) Usage wmiexec-wip.py usage: With cleartext password Key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\Configuration
Name: EnableAt
Type: REG_DWORD
Value: 1
___________________________
@hacking_Attack
@Hacking_Video
Specially Thanks to: @rootclay (https://github.com/rootclay), wechat: _xiangshan Overview In original wmiexec.py, it get response from smb connection (port 445,139). Unfortunately, some antivirus software (https://www.kitploit.com/search/label/Antivirus%20Software) are monitoring these ports as high risk.
In this case, I drop smb connection function and use others method to execute command. wmiexec-reg-sch-UnderNT6-wip.py: Executed command by using win32-scheduledjob class. According to xiangshan, win32-scheduledjob class only works under windows NT6 (windows-server 2003).
BTW, win32_scheduledjob has been disabled by default after windows NT6. Here is the way how to enable it. Key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\Configuration Name: EnableAt Type: REG_DWORD Value: 1 wmipersist-wip.py (Highly recommend, !!!only works on impacket v0.9.24!!!): A Python version of WMIHACKER (https://github.com/rootclay/WMIHACKER), which I picked the vbs template from it. Attacker can use it to do lateral movement (https://www.kitploit.com/search/label/Lateral%20Movement) safety under antivirus-software running. wmiexec-regOut.py: Just a simple Win32_Process.create method example . How it works? wmiexec-wip.py workflow: Step 1: WMIC authenticated remotly Step 2: Use win32process class and call create method to execute command. Then, write down the result into C:\windows\temp directory (https://www.kitploit.com/search/label/Directory) named [uuid].txt Step 3: Encode the file content to base64 strings (need to wait a few seconds) Step 4: Add the converted base64 string into registry, and key name call [uuid] Step 5: Get the base64 strings remotly and decode it locally. wmipersist-wip.py workflow: Step 1: Add custom vbs script into ActiveScriptEventConsumer class. Step 2: Creating an Event Filter. Step 3: Trigger FilterToConsumerBinding class to PWNED! Requirements Generally, you just need to install official impacket. Portal (https://github.com/SecureAuthCorp/impacket) Usage wmiexec-wip.py usage: With cleartext password Key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\Configuration
Name: EnableAt
Type: REG_DWORD
Value: 1
___________________________
@hacking_Attack
@Hacking_Video
GitHub
rootclay - Overview
A man who wants to be a ... rootclay has 47 repositories available. Follow their code on GitHub.
With NTLM hashes python3 wmiexec-reg.py administrator:111qqq...@192.168.10.90 'whoami'
___________________________
@hacking_Attack
@Hacking_Video
___________________________
@hacking_Attack
@Hacking_Video
wmipersist-wip.py usage (Default is no output): With cleartext password (without output) python3 wmiexec-reg.py -hashes e91d2eafde47de62c6c49a012b3a6af1:e91d2eafde47de62c6c49a012b3a6af1 administrator@192.168.10.90 'whoami'
___________________________
@hacking_Attack
@Hacking_Video
___________________________
@hacking_Attack
@Hacking_Video