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 cc298f4 commit 9dfcdf0
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion tyrtyr.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,17 @@ <h1>Dorks Explorer</h1>
return;
}

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


output += "<h3>PHP Files</h3>";

output += "<ul>";

output += "<li><a href='" + googleLink + encodeURIComponent(dorks[0].replace("example.com", keyword)) + "' target='_blank'>" + dorks[0].replace("example.com", keyword) + "</a></li>";

output += "</ul>";

dorks.forEach(dork => {
const modifiedDork = dork.replace("example.com", keyword);
output += "<li><a href='" + googleLink + encodeURIComponent(modifiedDork) + "' target='_blank'>" + modifiedDork + "</a></li>";
Expand Down

0 comments on commit 9dfcdf0

Please sign in to comment.