¿Se puede crear un XSS dentro del siguiente JS?
$(function () {
$("#panel").find(".form").each(function (index) {
var that = this;
$(that).overload();
});
$("#panel").find(".form").find("[name=link]").each(function (index) {
var that = this;
$(that).on("click", function (event) {
$(that).select();
});
});
$("#panel").find(".form").find("[href=#show]").each(function (index) {
var that = this;
$(that).on("click", function (event) {
prompt("HardcodedText", $(that).text());
});
});
});
</script>
La url de la página es algo así como enlace Intenté lo siguiente pero ninguno funcionó
https://www.mylabtest.com#show]");+alert(1);//
https://www.mylabtest.com#show]");<script>alert(1);</script>