All Projects → MRGEffitas → Write-into-screen

MRGEffitas / Write-into-screen

Licence: MIT license
No description, website, or topics provided.

Programming Languages

C#
18002 projects
ruby
36898 projects - #4 most used programming language

Write-into-screen

This program can be used to simulate keyboard events, and transfer files through the clipboard.

The program reads the config.json file, and applies the commands from it.

The valid JSON commands are:

text_type normal text to be typed, with RETURN at the end { "text_type": "winword" },

text_type_without_return normal text to be typed, without RETURN at the end { "text_type_without_return": "winword" },

sleep sleep for this amount of { "sleep": "5000" },

file_base64_into_clipboard read this file, convert to base64 and paste into clipboard { "file_base64_into_clipboard": "F:\hacking\dropper.zip" },

zip_directory zip the contents of the directory, and put it into dropper.zip, one directory aboves { "zip_directory":"c:\hacking\todrop" }

file_into_clipboard read file into clipboard, use it for non-binary files { "file_into_clipboard": "F:\hacking\hack.txt" },

file_into_hex_into_clipboard read (binary) file, convert into hex, paste into clipboard { "file_into_hex_into_clipboard": "F:\hacking\dropper.zip" },

key_combo1 simulate the press of one key { "key_combo1": [ { "name": "DOWN" } ] },

key_combo2 simulate the simultan press of two keys, e.g. win + r { "key_combo2": [ { "name": "LWIN" } , { "name": "VK_R" } ] },

key_combo3 simulate the simultan press of three keys, e.g. alt + (i + m) { "key_combo3": [ { "name": "LMENU" }, { "name": "VK_I" }, { "name": "VK_M" } ] },

key_combo3_2 simulate the simultan press of three keys, e.g. (ctrl + shift) + v

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].