mirror of
https://github.com/0dayCTF/reverse-shell-generator.git
synced 2024-12-18 10:56:10 +00:00
Added HoaxShell
This commit is contained in:
parent
fe21e5b69d
commit
156410d8a9
15
js/script.js
15
js/script.js
@ -19,6 +19,21 @@ const FilterType = {
|
||||
'Mac': 'mac'
|
||||
};
|
||||
|
||||
const hoaxshell_listener_types = {
|
||||
|
||||
"Windows CMD cURL" : "cmd-curl",
|
||||
"PowerShell IEX" : "ps-iex",
|
||||
"PowerShell IEX Constr Lang Mode" : "ps-iex-cm",
|
||||
"PowerShell Outfile" : "ps-outfile",
|
||||
"PowerShell Outfile Constr Lang Mode" : "ps-outfile-cm",
|
||||
"Windows CMD cURL https" : "cmd-curl -c /your/cert.pem -k /your/key.pem",
|
||||
"PowerShell IEX https" : "ps-iex -c /your/cert.pem -k /your/key.pem",
|
||||
"PowerShell IEX Constr Lang Mode https" : "ps-iex-cm -c /your/cert.pem -k /your/key.pem",
|
||||
"PowerShell Outfile https" : "ps-outfile -c /your/cert.pem -k /your/key.pem",
|
||||
"PowerShell Outfile Constr Lang Mode https" : "ps-outfile-cm -c /your/cert.pem -k /your/key.pem"
|
||||
|
||||
};
|
||||
|
||||
document.querySelector("#os-options").addEventListener("change", (event) => {
|
||||
const selectedOS = event.target.value;
|
||||
rsg.setState({
|
||||
|
Loading…
Reference in New Issue
Block a user