Skip to content

Commit

Permalink
Update tyrtyr.html
Browse files Browse the repository at this point in the history
  • Loading branch information
ex16x41 authored Dec 15, 2023
1 parent 9dfcdf0 commit 9ae0ab7
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions tyrtyr.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,34 @@ <h1>Dorks Explorer</h1>
"site:\"example[.]com\" ext:log | ext:txt | ext:conf | ext:cnf | ext:ini | ext:env | ext:sh | ext:bak | ext:backup | ext:swp | ext:old | ext:~ | ext:git | ext:svn | ext:htpasswd | ext:htaccess",
"inurl:q= | inurl:s= | inurl:search= | inurl:query= | inurl:keyword= | inurl:lang= inurl:& site:example.com",
];
document.getElementById("search-btn").addEventListener("click", search);

document.getElementById("keyword").addEventListener("keyup", function(event) {

if (event.keyCode === 13) {

event.preventDefault();

search();

}

});


function search() {

const keyword = document.getElementById("keyword").value;

const result = document.getElementById("result");


if (!keyword) {

alert("Please enter a keyword.");

return;

}

let output = "<h2>Results for Domain: " + keyword + "</h2>";
Expand Down

0 comments on commit 9ae0ab7

Please sign in to comment.