mirror of
https://github.com/0dayCTF/reverse-shell-generator.git
synced 2024-12-24 05:45:26 +00:00
Merge pull request #77 from samuelzurowski/main
[Bug]Removed Encoding for Bind Shells/MSFVenom Payloads
This commit is contained in:
commit
ec943d17e6
@ -27,13 +27,14 @@
|
|||||||
|
|
||||||
document.querySelector("#reverse-tab").addEventListener("click", () => {
|
document.querySelector("#reverse-tab").addEventListener("click", () => {
|
||||||
rsg.setState({
|
rsg.setState({
|
||||||
commandType: CommandType.ReverseShell
|
commandType: CommandType.ReverseShell,
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
|
|
||||||
document.querySelector("#bind-tab").addEventListener("click", () => {
|
document.querySelector("#bind-tab").addEventListener("click", () => {
|
||||||
rsg.setState({
|
rsg.setState({
|
||||||
commandType: CommandType.BindShell
|
commandType: CommandType.BindShell,
|
||||||
|
encoding: "None"
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -41,13 +42,15 @@
|
|||||||
document.querySelector("#bind-shell-selection").innerHTML = "";
|
document.querySelector("#bind-shell-selection").innerHTML = "";
|
||||||
rsg.setState({
|
rsg.setState({
|
||||||
commandType: CommandType.BindShell
|
commandType: CommandType.BindShell
|
||||||
|
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
|
|
||||||
document.querySelector("#msfvenom-tab").addEventListener("click", () => {
|
document.querySelector("#msfvenom-tab").addEventListener("click", () => {
|
||||||
document.querySelector("#msfvenom-selection").innerHTML = "";
|
document.querySelector("#msfvenom-selection").innerHTML = "";
|
||||||
rsg.setState({
|
rsg.setState({
|
||||||
commandType: CommandType.MSFVenom
|
commandType: CommandType.MSFVenom,
|
||||||
|
encoding: "None"
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user