forked from ethicalhackingplayground/Bug-Bounty-Tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.js
48 lines (41 loc) · 884 Bytes
/
background.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/**
Name: xssAuto
Author: z0id
Bug Bounty Tool
**/
browser.browserAction.onClicked.addListener(run);
// Run the program.
function run() {
readTextFile();
}
// Read the text file.
function readTextFile()
{
const logFileText = async file => {
var index = 0;
response = await fetch(file)
text = await response.text()
url = text.split("\n");
console.log(url[index]);
setInterval(() => {
if (index <= url.length - 1) {
loadURL(url[index]);
index = index + 1;
}
}, 5000);
}
logFileText("hosts.txt");
}
// Load the links
function loadURL(link) {
browser.notifications.create({
"type": "basic",
"iconUrl": "src48x48.png",
"title": "Notification",
"message": link
});
// Update the tab
var creating = browser.tabs.update({
url:link
});
}