Skip to content

Instantly share code, notes, and snippets.

@byjg
Last active November 24, 2023 05:46
Show Gist options
  • Star 47 You must be signed in to star a gist
  • Fork 12 You must be signed in to fork a gist
  • Save byjg/a6378edb420a1c654c5f27bb494ca1c8 to your computer and use it in GitHub Desktop.
Save byjg/a6378edb420a1c654c5f27bb494ca1c8 to your computer and use it in GitHub Desktop.
How to Paste code to NoVNC.
// This will open up a prompt for text to send to a console session on digital ocean
// Useful for long passwords
(function () {
window.sendString = function (str) {
f(str.split(""));
function f(t) {
var character = t.shift();
var i=[];
var code = character.charCodeAt();
var needs_shift = character.match(/[A-Z!@#$%^&*()_+{}:\"<>?~|]/);
if (needs_shift) {
rfb.sendKey(XK_Shift_L,1);
}
rfb.sendKey(code,1);
rfb.sendKey(code,0);
if (needs_shift) {
rfb.sendKey(XK_Shift_L,0);
}
if (t.length > 0) {
setTimeout(function() {f(t);}, 10);
}
}
}
})();
# Minified Version:
(function(){window.sendString=function(a){function b(c){var d=c.shift(),g=d.charCodeAt(),h=d.match(/[A-Z!@#$%^&*()_+{}:\"<>?~|]/);h&&rfb.sendKey(XK_Shift_L,1),rfb.sendKey(g,1),rfb.sendKey(g,0),h&&rfb.sendKey(XK_Shift_L,0),0<c.length&&setTimeout(function(){b(c)},10)}b(a.split(""))}})();
@rlazoryshchak
Copy link

Solution doesn't work for characters like !@#

@n1rna
Copy link

n1rna commented Jan 8, 2020

<3

@byjg
Copy link
Author

byjg commented Jan 8, 2020

@blondie63 Try the CTRL+SHIFT+I shortcut if right-clicking is not available

@katahdin0 Read byjg's comment...

@byjg Worked great for me on Vultr!

I did not watching this gist. Thank you for the information. CTRL+SHIFT+I or F12 could help as well.

@gbrian
Copy link

gbrian commented May 16, 2020

Super @byjg 👏
Two small changes:

  • Added pressOnly as pres/release generates echo in my test
  • Added XK_Shift_L constant
// This will open up a prompt for text to send to a console session on digital ocean
//  Useful for long passwords
(function () {
    const XK_Shift_L = 65505; // https://docs.rs/x11-dl/1.0.1/x11_dl/keysym/constant.XK_Shift_L.html      
    window.sendString = function (str, pressOnly) {
        f(str.split(""));
        function f(t) {
            var character = t.shift();
            var i=[];
            var code = character.charCodeAt();
            var needs_shift = character.match(/[A-Z!@#$%^&*()_+{}:\"<>?~|]/);
            if (needs_shift) {
                rfb.sendKey(XK_Shift_L,1);
            }
            rfb.sendKey(code,1);
            !pressOnly && rfb.sendKey(code,0);
            if (needs_shift) {
                rfb.sendKey(XK_Shift_L,0);
            }
            
            if (t.length > 0) {
                setTimeout(function() {f(t);}, 10);
            }
        }
    }
})(); 

@byjg
Copy link
Author

byjg commented May 16, 2020

Thank you for share it @gbrian

@Girevik1
Copy link

Thank you! It's working for me. only I changed characters from = to +, 2 -> @ ...

@byjg
Copy link
Author

byjg commented Nov 30, 2021

Thank you @Girevik1

@digu087
Copy link

digu087 commented Jan 7, 2022

Thank you for your solution , saved my day . Just one small issue , if I try to paste characters like !@#$%^&*()_+ it actually prints 1234567890-= . I was testing on firefox , Ubuntu OS .

@byjg
Copy link
Author

byjg commented Jan 7, 2022

Glad that helps you. These characters should be handled by this:

            var needs_shift = character.match(/[A-Z!@#$%^&*()_+{}:\"<>?~|]/);
            if (needs_shift) {
                rfb.sendKey(XK_Shift_L,1);
            }

It means, should "press" SHIFT and the key.

@m-primo
Copy link

m-primo commented Dec 30, 2022

This code doesn't support new lines

@byjg
Copy link
Author

byjg commented Dec 30, 2022

Did you try:

sendString("mychars\r\nother chars");  # Maybe your client accepts \r\n as new line. 

@m-primo
Copy link

m-primo commented Dec 30, 2022

Did you try:

sendString("mychars\r\nother chars");  # Maybe your client accepts \r\n as new line. 

Yup, tried \r, \n, \r\n.
And even tried rfb.sendKey(13, true). None worked, it feels like noVNC don't accept new lines in this function or something.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment