-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfetchem.js
29 lines (25 loc) · 1.13 KB
/
fetchem.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
(() => {
const url = window.location.href;
const path = ((url.match(/\/\/[^/]+(\/[^?]+)/) || [])[1] || url);
const search = (url || '').split('?')[0];
const links = Array.from(document.querySelectorAll('a')).map(a => a.href);
const forms = Array.from(document.querySelectorAll('form')).map(form => ({
action: form.action,
method: form.method,
inputs: Array.from(form.elements).map(el => ({ name: el.name, type: el.type }))
}));
const scripts = Array.from(document.querySelectorAll('script')).map(script => script.src || script.innerText.substring(0, 100));
const cookies = document.cookie;
console.log(`URL Path: ${path}`);
console.log(`URL without Query: ${search}`);
console.log('Links:', links);
console.log('Forms:', forms);
console.log('Scripts:', scripts);
console.log('Cookies:', cookies);
// Example fetch request to demonstrate
fetch(url, {
method: 'GET', // Simple GET request for demo purposes
}).then(response => response.text())
.then(text => console.log('Response:', text))
.catch(err => console.error('Fetch error:', err));
})();