├── README.md ├── data ├── dcquals_2019.challs ├── dcquals_2019.json ├── dcquals_2019.teams ├── dcquals_2020.challs ├── dcquals_2020.json ├── dcquals_2020.teams ├── dcquals_2021.challs ├── dcquals_2021.json └── dcquals_2021.teams ├── makeconf.py ├── scorep.py └── scorings.py /README.md: -------------------------------------------------------------------------------- 1 | # Scoring Playground 2 | 3 | _Are you sick of seeing those three **P**s on top of the scoreboard?_ 4 | 5 | _Do you think the challenges scores were dropping too fast, and that 6 | caused stress and frustration in your team members - leading to an 7 | unhealthy consumption of alcoholic beverages?_ 8 | 9 | _Do you believe that just a tiny change in one of the 10 | parameters of the scoring algorithm would have been enough to get you and your team 11 | to Vegas, wearing a tuxedo, ready to sign authographs on the Defcon red carpet?_ 12 | 13 | We hear your complains. 14 | 15 | So, now go ahead and customize the scoring system the way you prefer. 16 | 17 | ### Howto 18 | 19 | This appliction allows you to test different scoring 20 | systems and in the `data` directory you find several `json` files (with all successful 21 | flag submissions of the Defcon CTF Quals from 2019 to 2021) to play with. 22 | 23 | To compare different outcomes, follow these simple rules: 24 | 25 | 1. Check the `teams.conf` and `challs.conf` files. They contain, 26 | respectively, the list of teams and challenges you want to work with. 27 | By default, the tool simulates the top 30 teams and all challenges 28 | except the _speedrun_. 29 | 2. Run `./scorep.py data/dcquals_2019.json` to print the final scoreboard obtained by 30 | the same algorithm and the same parameters we used in the Defcon 2019 quals. 31 | You can then run `./scorep.py -w dc19 data/dcquals_2019.json` to save this 32 | result as a reference file for future comparisons. 33 | 3. Time to play. Run the tool without parameters to see all its options. 34 | 35 | 36 | ### Examples (basic use) 37 | 38 | The final scoreboard is defined by three algorithms: the 39 | **ranking** algorithm (which decides how to sort the teams and break 40 | ties), the **scoring** algorithm (which assigns a score to each 41 | challenge), and an optional **bonus** algorithm (which assign extra 42 | points to certain teams). 43 | 44 | So, let's just see the results according to the OOO algorithms: 45 | 46 | ``` 47 | > ./scorep.py data/dcquals_2019.json 48 | -------------------------------=[ Config ]=------------------------------------------ 49 | Scoring: 100 + ( 500 - 100 ) / (1 + 0.08 * Solved(2880) * Log (1 * Solved(2880))) 50 | Ranking: score,first 51 | Bonus: None 52 | Teams: 30 Challs: 24 53 | ------------------------------- -------------------------------------------------- 54 | # Score Team Score Solves 1st Challenge 55 | ------------------------------- -------------------------------------------------- 56 | 1 - 3591 PPP 500 1 23 LCARS333 57 | 2 - 3371 HITCON⚔BFKinesiS 460 2 751 papatrace 58 | 3 - 3035 Shellphish 271 8 420 election_coin 59 | 4 - 2877 Sauercloud 254 9 35 LCARS022 60 | 5 - 2863 Samurai 240 10 309 chainedrsa 61 | 6 - 2860 A*0*E 201 14 190 ASRybaB 62 | 7 - 2695 SeoulPlusBadAss 187 16 408 Hotel-California 63 | 8 - 2659 Tea Deliverers 182 17 74 tania 64 | 9 - 2547 CGC 162 22 105 shitorrent 65 | 10 - 2547 hxp 156 24 193 LCARS000 66 | 11 - 2478 r00timentary 143 30 467 RTOoOS 67 | 12 - 2405 KaisHack GoN 142 31 26 mamatrace 68 | 13 - 2341 TokyoWesterns 139 33 156 VeryAndroidoso 69 | 14 - 2277 r3kapig 137 34 162 ooops 70 | 15 - 2223 Tasteless 135 36 117 gloryhost 71 | 16 - 2218 RPISEC 131 40 171 vitor 72 | 17 - 2165 mhackeroni 127 45 49 Return_to_shellQL 73 | 18 - 2164 OpenBlue 118 61 78 nodb 74 | 19 - 2061 binja 114 76 55 babytrace 75 | 20 - 1996 pasten 112 88 40 babyheap 76 | 110 102 45 redacted-puzzle 77 | 108 122 39 know_your_mem 78 | 102 390 4 cant_even_unplug_it 79 | 100 1252 0 welcome_to_the_game 80 | ``` 81 | 82 | The output is divide in three parts. On the top, you have all the details of the scoring 83 | algorithms you selected. On the bottom left the actual scoreboard. And on the bottom 84 | right the list of challenges with their individual score, the number of teams 85 | who solved them, and the time it took for the first team to do that. 86 | 87 | If you now save this ranking by using the `-w` option, you can easily print 88 | the changes with respect to using a different scoring algorithm. 89 | For instance, let's compare against the exponential decay approach used by the CCC CTF: 90 | 91 | ``` 92 | > ./scorep.py -c dc19 -s ccc data/dcquals_2019.json 93 | -------------------------------=[ Config ]=------------------------------------------ 94 | Scoring: 30 + ( 500 - 30 ) / (1 + (max(0, Solved(2880)-1)/ 11.92201) ** 1.206069) 95 | Ranking: score,first 96 | Bonus: None 97 | Teams: 30 Challs: 24 98 | Reference: dc19 (-w dc19 data/dcquals_2019.json) 99 | ------------------------------- -------------------------------------------------- 100 | # Score Diff Team Score Solves 1st Challenge 101 | ------------------------------- -------------------------------------------------- 102 | 1 - 3567 --- PPP 500 --- 1 23 LCARS333 103 | 2 - 3394 --- HITCON⚔BFKinesiS 477 + 17 2 751 papatrace 104 | 3 - 2911 --- Shellphish 338 + 67 8 420 election_coin 105 | 4 - 2833 1 ▲ Samurai 320 + 66 9 35 LCARS022 106 | 5 - 2770 1 ▼ Sauercloud 304 + 64 10 309 chainedrsa 107 | 6 - 2752 --- A*0*E 253 + 52 14 190 ASRybaB 108 | 7 - 2546 --- SeoulPlusBadAss 233 + 46 16 408 Hotel-California 109 | 8 - 2499 --- Tea Deliverers 224 + 42 17 74 tania 110 | 9 - 2410 1 ▲ hxp 188 + 26 22 105 shitorrent 111 | 10 - 2364 1 ▼ CGC 176 + 20 24 193 LCARS000 112 | 11 - 2352 --- r00timentary 150 + 7 30 467 RTOoOS 113 | 12 - 2179 --- KaisHack GoN 146 + 4 31 26 mamatrace 114 | 13 - 2139 --- TokyoWesterns 140 + 1 33 156 VeryAndroidoso 115 | 14 - 2053 --- r3kapig 136 - 1 34 162 ooops 116 | 15 - 1955 --- Tasteless 131 - 4 36 117 gloryhost 117 | 16 - 1946 --- RPISEC 121 - 10 40 171 vitor 118 | 17 - 1933 1 ▲ OpenBlue 111 - 16 45 49 Return_to_shellQL 119 | 18 - 1914 1 ▼ mhackeroni 89 - 29 61 78 nodb 120 | 19 - 1783 1 ▲ pasten 76 - 38 76 55 babytrace 121 | 20 - 1767 1 ▼ binja 69 - 43 88 40 babyheap 122 | 63 - 47 102 45 redacted-puzzle 123 | 57 - 51 122 39 know_your_mem 124 | 37 - 65 390 4 cant_even_unplug_it 125 | 32 - 68 1252 0 welcome_to_the_game 126 | ``` 127 | 128 | Not much difference, eh? 129 | 130 | Basically, only two adjacent teams switched place in the Top10. 131 | 132 | Let's say you now want to find something to change the winning team. 133 | That won't be easy.. as PPP wins in almost any reasonable setup. But after few tries I found 134 | one possible solution. Ranking teams not based on their score, but based only on the number of 135 | challenges they solved and break ties not by who score first, but by total cumulative solving time. 136 | Here it is: 137 | 138 | ``` 139 | > ./scorep.py -c dc19 -r solved,ctime data/dcquals_2019.json 140 | -------------------------------=[ Config ]=------------------------------------------ 141 | Scoring: 100 + ( 500 - 100 ) / (1 + 0.08 * Solved(2880) * Log (1 * Solved(2880))) 142 | Ranking: solved,ctime 143 | Bonus: None 144 | Teams: 30 Challs: 24 145 | Reference: dc19 (-w dc19 data/dcquals_2019.json) 146 | ------------------------------------------------------------------------------------- 147 | 148 | # Score Diff Team Score Solves 1st Challenge 149 | -------------------------------------- ------------------------------------------ 150 | 1 - 3371 1 ▲ HITCON⚔BFKinesiS 500 --- 1 23 LCARS333 151 | 2 - 3591 1 ▼ PPP 460 --- 2 751 papatrace 152 | 3 - 2860 3 ▲ A*0*E 271 --- 8 420 election_coin 153 | 4 - 2877 --- Sauercloud 254 --- 9 35 LCARS022 154 | 5 - 2695 2 ▲ SeoulPlusBadAss 240 --- 10 309 chainedrsa 155 | 6 - 2863 1 ▼ Samurai 201 --- 14 190 ASRybaB 156 | 7 - 2659 1 ▲ Tea Deliverers 187 --- 16 408 Hotel-California 157 | 8 - 3035 5 ▼ Shellphish 182 --- 17 74 tania 158 | 9 - 2547 --- CGC 162 --- 22 105 shitorrent 159 | 10 - 2405 2 ▲ KaisHack GoN 156 --- 24 193 LCARS000 160 | 11 - 2547 1 ▼ hxp 143 --- 30 467 RTOoOS 161 | 12 - 2478 1 ▼ r00timentary 142 --- 31 26 mamatrace 162 | 13 - 2341 --- TokyoWesterns 139 --- 33 156 VeryAndroidoso 163 | 14 - 2277 --- r3kapig 137 --- 34 162 ooops 164 | 15 - 2218 1 ▲ RPISEC 135 --- 36 117 gloryhost 165 | 16 - 2223 1 ▼ Tasteless 131 --- 40 171 vitor 166 | 17 - 2165 --- mhackeroni 127 --- 45 49 Return_to_shellQL 167 | 18 - 2061 1 ▲ binja 118 --- 61 78 nodb 168 | 19 - 2164 1 ▼ OpenBlue 114 --- 76 55 babytrace 169 | 20 - 1718 3 ▲ $TLDR$ 112 --- 88 40 babyheap 170 | 110 --- 102 45 redacted-puzzle 171 | 108 --- 122 39 know_your_mem 172 | 102 --- 390 4 cant_even_unplug_it 173 | 100 --- 1252 0 welcome_to_the_game 174 | ``` 175 | 176 | What's interesting is that even with this weird approach, few teams move up and 177 | down a bit, but the teams in the top ten remain largely the same! 178 | 179 | It is easy to overestimate the impact of the scoring algorithm on the final 180 | result (I know because I certainly spent too much time thinking about it). 181 | But in reality, it seems like the impact is mostly psychological and 182 | the top teams will score equally well no matter how you configure your 183 | scoring. 184 | 185 | ### Examples (fine grained) 186 | 187 | Let's say you want to make some fine-grained adjustment to one of the algorithms. 188 | For instance, you want to test CTFd parabolic function, but by tweeking the decay parameter. 189 | 190 | First, run the tool without options to see the full help. Here is the snippet we are 191 | interested in: 192 | 193 | ``` 194 | - ctfd Parabolic function available in ctfd. 195 | Format: ctfd:base,top,decay,time 196 | Points: max(base, (((base - top)/(decay**2)) * (Solved(@time)**2)) + top) 197 | Default value: ctfd:100,500,20,2880 198 | ``` 199 | 200 | So, we can configure the parameters of each algorithm by passing them after the colon sign. 201 | In our case, the default is `ctfd:100,500,20,2880` and the decay value is in third position. 202 | 203 | You want to see what happens if you set it to 50 instead of 20? 204 | Just run: 205 | 206 | ``` 207 | ./scorep.py -c dc19 -s ctfd:100,500,50,2880 data/dcquals_2019.json 208 | ``` 209 | 210 | The last parameter `@time` let you configure how the score of each challenge is updated. 211 | Basically, it sets an upper limit and only the number of solves in that window are counted. 212 | So, if you want to see what happens if you decrease the score of a challenge only based to 213 | the solutions submitted in the first 5 hours (to account for very difficult challenges 214 | open early in the game), you can run: 215 | 216 | ``` 217 | ./scorep.py -c dc19 -s ooo:100,500,0.08,1,300 data/dcquals_2019.json 218 | -------------------------------=[ Config ]=------------------------------------------ 219 | Scoring: 100 + ( 500 - 100 ) / (1 + 0.08 * Solved(300) * Log (1 * Solved(300))) 220 | Ranking: score,first 221 | Bonus: None 222 | Teams: 30 Challs: 24 223 | Reference: dc19 (-w dc19 data/dcquals_2019.json) 224 | ------------------------------------------------------------------------------------- 225 | 226 | # Score Diff Team Score Solves 1st Challenge 227 | -------------------------------------- ------------------------------------------ 228 | 1 - 7192 --- PPP 500 +373 45 49 Return_to_shellQL 229 | 2 - 7192 --- HITCON⚔BFKinesiS 500 +260 10 309 chainedrsa 230 | 3 - 6232 1 ▲ Sauercloud 500 +313 16 408 Hotel-California 231 | 4 - 6192 2 ▲ A*0*E 500 +299 14 190 ASRybaB 232 | 5 - 5972 --- Samurai 500 +357 30 467 RTOoOS 233 | 6 - 5917 1 ▲ SeoulPlusBadAss 500 + 40 2 751 papatrace 234 | 7 - 5849 4 ▼ Shellphish 500 +229 8 420 election_coin 235 | 8 - 5692 --- Tea Deliverers 500 --- 1 23 LCARS333 236 | 9 - 5417 --- CGC 460 +325 36 117 gloryhost 237 | 10 - 5272 --- hxp 460 +304 24 193 LCARS000 238 | 11 - 5232 1 ▲ KaisHack GoN 460 +206 9 35 LCARS022 239 | 12 - 5209 1 ▼ r00timentary 377 +246 40 171 vitor 240 | 13 - 5001 --- TokyoWesterns 343 +206 34 162 ooops 241 | 14 - 4961 --- r3kapig 315 +133 17 74 tania 242 | 15 - 4917 --- Tasteless 291 +152 33 156 VeryAndroidoso 243 | 16 - 4732 --- RPISEC 271 +129 31 26 mamatrace 244 | 17 - 4646 2 ▲ binja 271 +109 22 105 shitorrent 245 | 18 - 4646 1 ▼ mhackeroni 182 + 64 61 78 nodb 246 | 19 - 4457 1 ▼ OpenBlue 149 + 37 88 40 babyheap 247 | 20 - 3756 1 ▲ NASA_Rejects 147 + 37 102 45 redacted-puzzle 248 | 139 + 25 76 55 babytrace 249 | 122 + 14 122 39 know_your_mem 250 | 104 + 2 390 4 cant_even_unplug_it 251 | 101 + 1 1252 0 welcome_to_the_game 252 | ``` 253 | 254 | 255 | ### Examples (just tell me how to win!) 256 | 257 | Ok ok. You just want to know how to adjust the parameters to maximize the ranking of your team, 258 | and yes - there is an experimental feature (well, everything is 259 | experimental, but this is even more untested) to help you with that. 260 | 261 | The option you are looking for is `-t max:` 262 | For instance, if you want to bruteforce the OOO algorithm's parameters to maximize the position 263 | of Shellphish, you can do: 264 | 265 | ``` 266 | > ./scorep.py -c dc19 -t max:3 data/dcquals_2019.json 267 | -------------------------------=[ Config ]=------------------------------------------ 268 | Scoring: 100 + ( 500 - 100 ) / (1 + 0.08 * Solved(2880) * Log (1 * Solved(2880))) 269 | Ranking: score,first 270 | Bonus: None 271 | Teams: 30 Challs: 24 272 | Reference: dc19 (-w dc19 data/dcquals_2019.json) 273 | ------------------------------------------------------------------------------------- 274 | 275 | Looking for parameters that maximize the final ranking of team: Shellphish 276 | Initial ranking: 3 277 | Param 1 = -16.00 --> rank 2 278 | Param 3 = -0.12 --> rank 1 279 | ``` 280 | 281 | The tool tries to bruteforce each parameter in isolation, and reports the best outcome (if any). 282 | In this case, if in the formula we change the third parameter from 0.08 to -0.12 Shellphish would 283 | have won. But as you can imagine, changing the sign does have a large impact on the results. 284 | The other option is to score each challenge in the range -16-to-500 (instead of 100-500) which 285 | basically penalizes teams that solve very easy challenges :D 286 | 287 | ### Extending the tool 288 | 289 | If you want to add a new algorithm, check `scorings.py`. 290 | The task is actually quite simple: just add a new function and if it starts with `score_` it 291 | will be automatically added to the list of available scoring algorithms (same if you start 292 | with `rank_` or `bonus_`). 293 | 294 | If you add support for other major CTF formulas, send me a PR. 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | -------------------------------------------------------------------------------- /data/dcquals_2019.challs: -------------------------------------------------------------------------------- 1 | "LCARS333" 2 | "papatrace" 3 | "election_coin" 4 | "LCARS022" 5 | "chainedrsa" 6 | "ASRybaB" 7 | "Hotel-California" 8 | "tania" 9 | "shitorrent" 10 | "LCARS000" 11 | "RTOoOS" 12 | "mamatrace" 13 | "VeryAndroidoso" 14 | "ooops" 15 | "gloryhost" 16 | "vitor" 17 | "Return_to_shellQL" 18 | "nodb" 19 | "babytrace" 20 | "babyheap" 21 | "redacted-puzzle" 22 | "know_your_mem" 23 | "cant_even_unplug_it" 24 | "welcome_to_the_game" 25 | -------------------------------------------------------------------------------- /data/dcquals_2019.teams: -------------------------------------------------------------------------------- 1 | "PPP" 2 | "HITCON⚔BFKinesiS" 3 | "Shellphish" 4 | "Sauercloud" 5 | "Samurai" 6 | "A*0*E" 7 | "SeoulPlusBadAss" 8 | "Tea Deliverers" 9 | "CGC" 10 | "hxp" 11 | "r00timentary" 12 | "KaisHack GoN" 13 | "TokyoWesterns" 14 | "r3kapig" 15 | "Tasteless" 16 | "RPISEC" 17 | "mhackeroni" 18 | "OpenBlue" 19 | "binja" 20 | "pasten" 21 | "NASA_Rejects" 22 | "pwnPHOfun" 23 | "$TLDR$" 24 | "p4" 25 | "Never Stop Exploiting" 26 | "N1ce" 27 | "LC↯BC" 28 | "PwnThyBytes" 29 | "TeamBaguette" 30 | "Team Enu" 31 | # "Hayyim_sec" 32 | # "HATS_SG" 33 | # "cloud_voidka" 34 | # "EmpireCr0wn" 35 | # "dcua" 36 | # "KuK Hofhackerei" 37 | # "xSTT" 38 | # "OSUSEC" 39 | # "NOPS" 40 | # "noar" 41 | # "ELT" 42 | # "flagbot" 43 | # "galhacktic-trendsetters" 44 | # "null2root" 45 | # "unknown" 46 | # "name left as an exercise to the reader" 47 | # "MapleBacon" 48 | # "I'm GGonna" 49 | # "NCoalition" 50 | # "ID-10-T" 51 | -------------------------------------------------------------------------------- /data/dcquals_2020.challs: -------------------------------------------------------------------------------- 1 | "welcome-to-dc2020-quals" 2 | "welcome-video" 3 | "whooo-are-u" 4 | "fountain-ooo-reliving" 5 | "ooo-flag-sharing" 6 | "uploooadit" 7 | "mooodem" 8 | "babymaze" 9 | "fungez" 10 | "fungezz" 11 | "bytecoooding" 12 | "biooosless" 13 | "flag-hunting" 14 | "nooopsled" 15 | "notbefoooled" 16 | "pooot" 17 | "cursed" 18 | "interrupted" 19 | "adventure-on-lifebooox" 20 | "supersafecalc" 21 | "keml" 22 | "ooofs" 23 | "coooppersmith" 24 | "mamamaze" 25 | "blursed" 26 | "maybe" 27 | "ooobash" 28 | "dogooos" 29 | "floood" 30 | "introool" 31 | "ooonline-class" 32 | "ooonline-gradclass" 33 | -------------------------------------------------------------------------------- /data/dcquals_2020.teams: -------------------------------------------------------------------------------- 1 | "A*0*E" 2 | "Samurai" 3 | "Shellphish" 4 | "/bin/tw" 5 | "PPP" 6 | "More Bush Smoked Whackers" 7 | "koreanbadass" 8 | "NorseCode" 9 | "r3kapig" 10 | "rpisec" 11 | "CandySweetGuys" 12 | "HITCON⚔Balsn" 13 | "mhackeroni" 14 | "r00timentary" 15 | "PTB_WTL" 16 | "hxp" 17 | "Sauercloud" 18 | "secretcr0wnwtf" 19 | "perfect_blue" 20 | "Nu1L" 21 | "polyflag" 22 | "beaverpwn" 23 | "KaisHackGoN" 24 | "10sec" 25 | "searching_for_pwn" 26 | "GOLFBALLZBYTHESEA" 27 | "RobotMafia" 28 | "ELT" 29 | "DiceGang" 30 | "0daysober" 31 | "Tea Deliverers" 32 | "shibad0gs" 33 | "Never Stop Exploiting" 34 | "Team Enu" 35 | "Dragon Sector" 36 | "ID-10-T" 37 | "Mergeless" 38 | "p4" 39 | "RUSSIAN MEGAZORD" 40 | "pasten" 41 | # "!SpamAndHex" 42 | # "!SudoWoodoDoasWoodo!" 43 | # "#! /bin/smash" 44 | # "#!/bin/smash" 45 | # "#71" 46 | # "#MongolianEmpire" 47 | # "$_GET['27']" 48 | # "%00Byte" 49 | # "(^_^) [o_o] few //\(oo)/\\ faces (^.^) (".") ($.$)" 50 | # "(mendung)10^6" 51 | # "-" 52 | # "-0" 53 | # "./runcmd" 54 | # "/upb/hack" 55 | # "0RAYS" 56 | # "0d12245589" 57 | # "0ddside" 58 | # "0e85dc6eaf" 59 | # "0x08" 60 | # "0x1" 61 | # "0x1907" 62 | # "0x34044" 63 | # "0x401" 64 | # "0x435446" 65 | # "0x73" 66 | # "0x8Layer" 67 | # "0x90r00t" 68 | # "0xAAAA" 69 | # "0xAstraeus" 70 | # "0xCoCo" 71 | # "0xD13A" 72 | # "0xDECAF" 73 | # "0xDkpdd" 74 | # "0xEF00000B" 75 | # "0xFF" 76 | # "0xN1ghtRa1d" 77 | # "0xbeef" 78 | # "0xc0dec0de" 79 | # "0xc0ff33fl0w" 80 | # "0xdeabbeaf" 81 | # "0xfxxker" 82 | # "1064CBread" 83 | # "12345" 84 | # "123drink" 85 | # "1bak3ry" 86 | # "1chig0" 87 | # "1ms0lo" 88 | # "1nv0k3r" 89 | # "20H" 90 | # "2233233" 91 | # "30cm" 92 | # "31i73_73aM" 93 | # "33kairu" 94 | # "3PAC" 95 | # "3achi5a" 96 | # "3xpertz.1np" 97 | # "401111" 98 | # "4B1DD3N" 99 | # "4GUA5C4L13NT35" 100 | # "4k3l4rr3" 101 | # "5280" 102 | # "5hade5layer" 103 | # "7777" 104 | # "9447" 105 | # "9AM" 106 | # "<5ti" 107 | # "" 108 | # "@lpha" 109 | # "A.R.E.S." 110 | # "AAAAAAAA" 111 | # "AAAA_AAAA_AAAA" 112 | # "ACMEPharm" 113 | # "AF" 114 | # "AMBUSH" 115 | # "APPFCTF" 116 | # "ARGOS" 117 | # "AWSUnicornRentals" 118 | # "Abakus" 119 | # "Abba1170" 120 | # "Abs0lut3Pwn4g3" 121 | # "Abyss Syndrome" 122 | # "AdiPratama15" 123 | # "After_the_CM" 124 | # "Alaeathuea" 125 | # "Algorist" 126 | # "Almafa" 127 | # "AlreadyC0mpr0mized" 128 | # "AlwaysAlone" 129 | # "Am473ur" 130 | # "AmTrain" 131 | # "AndrewTest" 132 | # "Anemone" 133 | # "Anton3" 134 | # "Aquin" 135 | # "AreYouFullyDecoded?" 136 | # "ArrBas" 137 | # "AssuredNinjas" 138 | # "AsturiesCTF" 139 | # "Ateam" 140 | # "AuburnCyber" 141 | # "B.R.A.VO" 142 | # "B0NG0RE" 143 | # "B308" 144 | # "BADSUDO'S" 145 | # "BCOSHun" 146 | # "BDE" 147 | # "BDpwn" 148 | # "BEOM" 149 | # "BIGPHARMA" 150 | # "BUFF" 151 | # "Ba Sing Sec" 152 | # "Bailey's Boys" 153 | # "Bang" 154 | # "Banmian" 155 | # "Bash Breakers" 156 | # "BashBreakers" 157 | # "Battle Bus" 158 | # "Baywatch" 159 | # "Beowulf" 160 | # "Beta_securiteam" 161 | # "BigBrainBois" 162 | # "Binary-killers" 163 | # "Bionic" 164 | # "Biscuit" 165 | # "Bitzkrieg" 166 | # "BlackBauhinia" 167 | # "BlackBird" 168 | # "BlackPink" 169 | # "BlackSwan" 170 | # "Blue-Whale" 171 | # "BlueNet" 172 | # "BoRa9" 173 | # "BorkisBork" 174 | # "Botb" 175 | # "BroCode" 176 | # "Brook Brothers" 177 | # "BrownEgg" 178 | # "BruteSquad" 179 | # "BuGErr0rJubJub" 180 | # "BugsBunny" 181 | # "BullSoc" 182 | # "Buncha Misfits and Malcontents" 183 | # "BurpFiction" 184 | # "Busi" 185 | # "ByteBandits" 186 | # "ByteForc3" 187 | # "Bytersec_squad" 188 | # "C-137" 189 | # "C0mRaDe迷弟" 190 | # "C4M31" 191 | # "CAT-Security" 192 | # "CERT-IS" 193 | # "CERTRazi" 194 | # "CForCrackers" 195 | # "CN5S" 196 | # "CRYPT0HEX" 197 | # "CSI" 198 | # "CSUI" 199 | # "CTD Elite" 200 | # "CTF beginners 2222" 201 | # "CTFPal" 202 | # "CTFSG" 203 | # "CTF_Circle" 204 | # "CTRLPhreaks" 205 | # "CYB3R_KILL3RS" 206 | # "CYberMouflons" 207 | # "CalDIVAs" 208 | # "CaptainNick" 209 | # "CaptainSmap" 210 | # "CarrotSuitMen" 211 | # "Catzse" 212 | # "CeSeNA_Ulisse" 213 | # "CeruttiGino" 214 | # "ChaGaaZ1966" 215 | # "ChaiseTheFlag" 216 | # "ChaoticUnderFlow" 217 | # "Chessboxing" 218 | # "Cifr0vi3_V0lki" 219 | # "CloudYu" 220 | # "Cntr0llz" 221 | # "CodeBlack" 222 | # "Coding-with-Carpets" 223 | # "Colapso" 224 | # "Contrail" 225 | # "Cook" 226 | # "Corteso" 227 | # "CoscoWaters" 228 | # "CovidFree" 229 | # "Cr4ckThump" 230 | # "CrAshOveRrideRs" 231 | # "CrackBabiesII" 232 | # "CrackTheFlag" 233 | # "CraftyDragon678" 234 | # "CraicThePlanet" 235 | # "Crypt" 236 | # "Ctfnoob" 237 | # "Cult of the Free Chunk" 238 | # "CyBeR BuLLiEs" 239 | # "CybSec" 240 | # "CyberPOU" 241 | # "CyberStudents" 242 | # "Cyber_Chicken" 243 | # "Cyber_Janitorial" 244 | # "Cyber_Pig_Security" 245 | # "Cyberianz" 246 | # "Cyberlabs" 247 | # "Cybernauticals" 248 | # "CzechCyberTeam" 249 | # "D.I.E" 250 | # "D1sc0nnect" 251 | # "D33p5h4d0w" 252 | # "D351Hacker" 253 | # "D4mianWayne" 254 | # "D4nch3n" 255 | # "DC+62" 256 | # "DC201" 257 | # "DDDPPP" 258 | # "DHDP" 259 | # "DISsecT@CTU" 260 | # "DannyLee" 261 | # "DarkArmy" 262 | # "DarkEnigma" 263 | # "DasPwnhammer" 264 | # "Dashu" 265 | # "Dawn666" 266 | # "De1ta" 267 | # "DeadlockTeam" 268 | # "Deep_Inside" 269 | # "Defenit" 270 | # "DieBartDie" 271 | # "Digrev" 272 | # "Disconnect" 273 | # "Discordia" 274 | # "Djavaa" 275 | # "Don'tGoChasingOverflows" 276 | # "Donghee" 277 | # "Doraemon" 278 | # "DoubleDot" 279 | # "DoubleGate" 280 | # "DrStrangeFanclub" 281 | # "Dragon Hat" 282 | # "Droogy" 283 | # "DuckDuckNo" 284 | # "DudesWithKeyboards" 285 | # "Dx." 286 | # "E42494" 287 | # "ECSCTeamSpain" 288 | # "EGInit-0" 289 | # "EPRST" 290 | # "ETYB" 291 | # "EffractariusElectronicus" 292 | # "El10n" 293 | # "EmeraldCode" 294 | # "Emerald_Code" 295 | # "Encryptors" 296 | # "EsNiVe" 297 | # "EvilBytes" 298 | # "Exodus Orbitals Alliance" 299 | # "ExpC10ude_云爆" 300 | # "EzioRaison" 301 | # "F03v3ryY0ung" 302 | # "F055il215" 303 | # "F5 Experts" 304 | # "FFF" 305 | # "FOO" 306 | # "FTS" 307 | # "FaceMasqueraders" 308 | # "Falc0nBl4ck" 309 | # "Febri" 310 | # "Ferb" 311 | # "FireShell" 312 | # "First-blood" 313 | # "FirstState" 314 | # "FiveTree" 315 | # "FlagGrenade" 316 | # "FlagPwnerZ" 317 | # "Flagrants" 318 | # "Foxes" 319 | # "FrostByte" 320 | # "Fstone" 321 | # "FuZZers" 322 | # "Fulaying!S0L0" 323 | # "FuzzySecurity" 324 | # "FuzzyTest" 325 | # "Fweefwop" 326 | # "Fword" 327 | # "FzWjScJ" 328 | # "GRSEC" 329 | # "Ganesh" 330 | # "GatorSheavesMutably" 331 | # "GeeseWithTeeth" 332 | # "Georgie" 333 | # "Ginkgo" 334 | # "GiveMeFL4GOuO" 335 | # "Globsec" 336 | # "GlortyToGod" 337 | # "Goburin'" 338 | # "GoldenPillows" 339 | # "GoldenScience" 340 | # "Gr3yW0lf" 341 | # "GreyFang_" 342 | # "GreyboxSecurity" 343 | # "Gushang" 344 | # "Gyul" 345 | # "H0psGang" 346 | # "H4PPY'SP0770S" 347 | # "H@ckerz" 348 | # "HATS_SG" 349 | # "HONDASHI" 350 | # "HP0" 351 | # "HTsP" 352 | # "HWMD" 353 | # "Haar" 354 | # "HackThisSite" 355 | # "HackWara" 356 | # "Hackaragua" 357 | # "HackkcahInfinity" 358 | # "HamledCTF" 359 | # "HappyUnderperformer" 360 | # "Harekaze" 361 | # "HashSlingingHackers" 362 | # "Hayyim_$wag" 363 | # "HeaderEnrichment" 364 | # "Heaven_Hellpline" 365 | # "Hex2Text" 366 | # "HhhM" 367 | # "HideAndSec" 368 | # "Hidebu" 369 | # "HiggsB" 370 | # "Hijackers" 371 | # "HolyShit" 372 | # "Hope" 373 | # "Houston We Have Root" 374 | # "HunterCrack" 375 | # "HuntsvilleTechSupport" 376 | # "Hus@r1@" 377 | # "HxH" 378 | # "IEEE" 379 | # "IGNITE" 380 | # "IGRUS" 381 | # "IIVIKI" 382 | # "INTERLUDE" 383 | # "ISITDTU" 384 | # "ISK" 385 | # "ISwearIGoogledIt" 386 | # "IcedMelon" 387 | # "Iheartcats" 388 | # "Ill" 389 | # "Imjustheretowatch" 390 | # "InfoSecIITG" 391 | # "InfoSecIITR" 392 | # "InnotecLabs" 393 | # "InsiderThreats" 394 | # "Insomnia" 395 | # "Intentions" 396 | # "Invaders" 397 | # "Iohex" 398 | # "Isaac" 399 | # "JHDiscord" 400 | # "JackSpeor" 401 | # "Jamesduv9" 402 | # "Jayabaya" 403 | # "JonPwnJones" 404 | # "JumpRopeNinjas" 405 | # "Juniper" 406 | # "JustBrowsing" 407 | # "JustForFun" 408 | # "JustJoeyLOL" 409 | # "JustNotBob" 410 | # "JustRaq" 411 | # "K17_HACKERS" 412 | # "K1_W4L0" 413 | # "K1t3" 414 | # "KMA2020_" 415 | # "KOTAK-HITAM" 416 | # "KPWN" 417 | # "KR0N0$" 418 | # "KUCS" 419 | # "KUDoS" 420 | # "KXTI_AlDan" 421 | # "KXTI_PineCone" 422 | # "KXTI_SAFIN" 423 | # "KXTI_SEC" 424 | # "KXTI_SSGS" 425 | # "KXTI_Unity" 426 | # "KXTI_UpDown" 427 | # "KXTI__MarryCrhristmas" 428 | # "KXTI__Successful" 429 | # "KXTI_clg" 430 | # "KaLiMaLi" 431 | # "Kabouter's" 432 | # "KaoKaoKaooTK" 433 | # "KarTof99" 434 | # "Karas" 435 | # "Kcoseno" 436 | # "KernelPicnic" 437 | # "KernelPoppers" 438 | # "KeyFrame" 439 | # "KgX3" 440 | # "Kil0Sec" 441 | # "KimchiTwerkBomb" 442 | # "Knightsec" 443 | # "KnownGamers" 444 | # "KogCoder" 445 | # "KonCert" 446 | # "KoreanGang" 447 | # "Krew" 448 | # "KuK Hofhackerei" 449 | # "Kunfusers" 450 | # "L" 451 | # "L0NLY" 452 | # "L0STC0D3" 453 | # "L0ckD0wn" 454 | # "L4549N4" 455 | # "LDE" 456 | # "LE37" 457 | # "LOA-Mexico" 458 | # "LSBSec" 459 | # "Lab104" 460 | # "LabSeg" 461 | # "Lanph3re" 462 | # "Lbyte" 463 | # "Lengsabb" 464 | # "LibWTF" 465 | # "LinuxRiders" 466 | # "Lions" 467 | # "LittleBits" 468 | # "LittleTwoos" 469 | # "LluviaDeFuego" 470 | # "Loco_Roco_Recon" 471 | # "LosInjertosDeUtec" 472 | # "Lost In The Sauce" 473 | # "LostInBytes" 474 | # "Lotus Flower" 475 | # "LoudFir3" 476 | # "Luz" 477 | # "Lv3_Probation_O" 478 | # "Lvl18Darius" 479 | # "M!n10ns" 480 | # "M4RIN3RS" 481 | # "M4lignant" 482 | # "MEH" 483 | # "MJ-12" 484 | # "MUNDAMANI" 485 | # "MV9rwGOf08" 486 | # "MadeInCatArmy" 487 | # "MagneticStorm" 488 | # "Mao" 489 | # "Maple Bacon" 490 | # "MathWarriors" 491 | # "Maxtamvan" 492 | # "Mayas" 493 | # "Mediterranehack" 494 | # "MendaciousNitwits" 495 | # "MhackGyver" 496 | # "Midwest Arab" 497 | # "Mineta" 498 | # "Mohack" 499 | # "MonSec" 500 | # "MoonBack" 501 | # "Mordor" 502 | # "MorningLightMountain" 503 | # "Mr.Toot" 504 | # "MyNewbie" 505 | # "Mystiko" 506 | # "N**2" 507 | # "N0-M0RE" 508 | # "N00B_4rMY" 509 | # "N0N@me13" 510 | # "N0vice" 511 | # "N37_D-F3nc3" 512 | # "N3ver_be_4L0NE2" 513 | # "NEX" 514 | # "NG_CTF" 515 | # "NIA" 516 | # "NISRA" 517 | # "NOOP" 518 | # "NOPS" 519 | # "NaN+1" 520 | # "Nave1337" 521 | # "Ne0Lux-C1Ph3r" 522 | # "Nekodora" 523 | # "Nepnep" 524 | # "Newbie_aaa" 525 | # "NickSolo" 526 | # "Njord" 527 | # "Noob_Elliot" 528 | # "Nope_sled" 529 | # "NorthWest" 530 | # "NotHotdog" 531 | # "NrO" 532 | # "Nu11d0ma1n" 533 | # "Null-Byte" 534 | # "NullLife" 535 | # "OAAOAOAOOOAO" 536 | # "OMG_HAX" 537 | # "Ok/undercover" 538 | # "OkBoomer" 539 | # "On1onCTF" 540 | # "OpenToAll" 541 | # "Open_Pwn_Team" 542 | # "Order0fWizards" 543 | # "OrderofShadows" 544 | # "Orion_square" 545 | # "Orzwxh" 546 | # "OurNicWasTaken" 547 | # "OutOfEnergy" 548 | # "OverDover" 549 | # "OverlyElite" 550 | # "Oz" 551 | # "P4queton" 552 | # "P4r7154n" 553 | # "P@Ge2mE" 554 | # "PASECA" 555 | # "PHPHooligans" 556 | # "POLZZG" 557 | # "POXYZ" 558 | # "PTZCTF" 559 | # "PWN to 0xE4" 560 | # "Pandemic" 561 | # "Pandora" 562 | # "PaperPlaneJr" 563 | # "Park_JG" 564 | # "Part-TimeSaltyBois" 565 | # "PawnKriegz" 566 | # "PersianCats" 567 | # "PetCatGetFlag" 568 | # "Ph4nt0mEd9e" 569 | # "Phish'n'Chips" 570 | # "PhoenixPWNER" 571 | # "Pikevo" 572 | # "PittCyber" 573 | # "PoN82" 574 | # "Porg_Pwn_Platoon" 575 | # "PouetMan" 576 | # "Promise" 577 | # "Pulsatutio" 578 | # "PwnRabb1t" 579 | # "PwnaSonic" 580 | # "Pwnie_Island" 581 | # "Pwnies" 582 | # "Pyrus" 583 | # "QuePasaZombies" 584 | # "R&T" 585 | # "R-team" 586 | # "R00kiez" 587 | # "R331337" 588 | # "R3H4ck" 589 | # "R3gr3tOfGod" 590 | # "R4nd0m0ne" 591 | # "RESETHACKER" 592 | # "RGBsec2" 593 | # "RICKKKKK" 594 | # "ROKHong" 595 | # "RTFM" 596 | # "RamboRoot" 597 | # "RealSmallMalware" 598 | # "ReconByFire" 599 | # "RedTiger" 600 | # "Redcheep" 601 | # "Redefined Behavior" 602 | # "RegularFellows" 603 | # "RevEng" 604 | # "Revolution" 605 | # "Revolutionaries" 606 | # "RhinehartsOysterBar" 607 | # "RiST" 608 | # "Ripp3rs" 609 | # "Risebbit" 610 | # "Ro0trz" 611 | # "Rohas!!" 612 | # "Ronen8231" 613 | # "Root Of Winner Tree" 614 | # "Rootless" 615 | # "S1lySUUz" 616 | # "S3curityHackerZ" 617 | # "S4RVAr_TEAM" 618 | # "SBthread" 619 | # "SCSH" 620 | # "SDSLabs" 621 | # "SF_CTF Team" 622 | # "SH4D0W_kr" 623 | # "SHELLPOPPER" 624 | # "SIGCHILL" 625 | # "SJCTF" 626 | # "SKR" 627 | # "SPQR" 628 | # "SParK" 629 | # "SSAT" 630 | # "SSS@SSS" 631 | # "STT" 632 | # "STesla" 633 | # "SU" 634 | # "SUS2020" 635 | # "SXA" 636 | # "SaltyCabbages" 637 | # "SaltyDolphins" 638 | # "SamsunCennet55" 639 | # "Sandbox" 640 | # "SaudiCybers" 641 | # "SaudiPwners" 642 | # "SavedByTheShell" 643 | # "Schr0ding3r5" 644 | # "Se_P3t" 645 | # "Sealcode" 646 | # "Search Find PWN" 647 | # "SecuriTN" 648 | # "SecurityFactorial" 649 | # "Security_is_myth" 650 | # "Self" 651 | # "Selflessgg" 652 | # "SemCert" 653 | # "Senko" 654 | # "SequalInjectors" 655 | # "Serephim" 656 | # "ShellCollectingClub" 657 | # "Shellter_In_Place" 658 | # "ShiftySheep" 659 | # "Shonan" 660 | # "Shrek" 661 | # "Shui" 662 | # "ShuoTu" 663 | # "Sieberrsec" 664 | # "SimplyTheJess" 665 | # "SithArmy" 666 | # "SlowCoders" 667 | # "SmoWiU" 668 | # "Snaxet" 669 | # "SoloLevelingOriginal" 670 | # "SoloWolf" 671 | # "SomeGuy" 672 | # "SonOfSnowden" 673 | # "Spacestar Ordering" 674 | # "Spider" 675 | # "Spikers" 676 | # "Spotless" 677 | # "Stacks Bonkers" 678 | # "StaffsCyber" 679 | # "StanfordAppliedCyber" 680 | # "StarLabs" 681 | # "SteinsGate" 682 | # "StonkSecurity" 683 | # "StrawHatPirates" 684 | # "StronkBois" 685 | # "Sudo_root" 686 | # "Summer2020" 687 | # "SundayParan01ds" 688 | # "SwagBagOf0Days" 689 | # "System_Meltdown" 690 | # "T-Regex" 691 | # "T35H" 692 | # "T3C" 693 | # "T4C0team" 694 | # "T4c0Pwn" 695 | # "TH3-BL4CkH4T-4RMY" 696 | # "TNTech-CyberEagles" 697 | # "Taco Tuesday" 698 | # "Tacosdecanasta" 699 | # "TahSec" 700 | # "Takke" 701 | # "Tanjoodo" 702 | # "Tank" 703 | # "Tea Time" 704 | # "TeaForStress" 705 | # "Team Fr34ks" 706 | # "Team Ropkek" 707 | # "Team0" 708 | # "TeamAardvark" 709 | # "TeamBagel" 710 | # "TeamBaguette" 711 | # "TeamCorax" 712 | # "TeamDragon" 713 | # "TeamMugit" 714 | # "TeamName" 715 | # "TeamPowerPrinter" 716 | # "TeamRocketIst" 717 | # "TeamRunCMD" 718 | # "TeamSoloMid" 719 | # "TeamSteamStream" 720 | # "TeamTim" 721 | # "TeamZAP" 722 | # "Team_Mystic" 723 | # "TechnoPirates" 724 | # "Tempur" 725 | # "Ten*48" 726 | # "Testing12345" 727 | # "TheAdditionalPayphones" 728 | # "TheExploiteers" 729 | # "TheExplorer" 730 | # "TheFlatNetworkSociety" 731 | # "TheGoonies" 732 | # "TheInternetExplorerers" 733 | # "TheOrderOfBit" 734 | # "TheScientists" 735 | # "The_WinRaRs" 736 | # "Thomas" 737 | # "ThreatLevelMidnight" 738 | # "TigerTeam7" 739 | # "TinfoilHats" 740 | # "Tomatosalad" 741 | # "TopWing" 742 | # "Torpedo" 743 | # "TorriblePerson" 744 | # "TortillaHack" 745 | # "Tp10" 746 | # "TraffikLibero" 747 | # "Trex" 748 | # "Trojan187" 749 | # "TruPeeps" 750 | # "Tsami" 751 | # "Twinfiire" 752 | # "TwoLonelySamurai" 753 | # "TwoSixNone" 754 | # "UCCU" 755 | # "ULTIMATEYSO" 756 | # "UMDCSEC" 757 | # "UNG CyberHawks" 758 | # "UNNAMED_TEAM" 759 | # "UOKIN" 760 | # "UQCyberSquad" 761 | # "UWCTF" 762 | # "UnderDawgs" 763 | # "Unicorn CTF" 764 | # "UnpaidIntern" 765 | # "Ur-Hackr-CTF" 766 | # "UrlBin" 767 | # "UrsaMajor" 768 | # "V:sCrew" 769 | # "VND0ng" 770 | # "Venom" 771 | # "VikasGola" 772 | # "VincBreaker" 773 | # "ViperX7" 774 | # "VitaminG" 775 | # "VodkaNinjas" 776 | # "Vox Dei" 777 | # "VrzHY" 778 | # "W&M" 779 | # "WAMTeam" 780 | # "WCSC" 781 | # "WRUBLE" 782 | # "Wagmteiy" 783 | # "Wani Hackase" 784 | # "WarriorsX" 785 | # "WeAreZero" 786 | # "Whales" 787 | # "WhiteDragon" 788 | # "WhiteRAbbits" 789 | # "Whoopie" 790 | # "WillistonWildhackers" 791 | # "WonkaBees" 792 | # "WorldChimps1337" 793 | # "WorldSkills_TW" 794 | # "X1c" 795 | # "XYZ-default" 796 | # "Xergcis" 797 | # "XoXo" 798 | # "Xp0int" 799 | # "Y33T" 800 | # "YOKARO-MON" 801 | # "YRYR" 802 | # "Yamagi.com" 803 | # "YegSec" 804 | # "Yiblue" 805 | # "Z" 806 | # "Z3Ro" 807 | # "ZF6AHHFM" 808 | # "ZenHack" 809 | # "Zense" 810 | # "ZeroMemory" 811 | # "Zeros" 812 | # "ZeusWPI" 813 | # "Zh3r0_0ffici4l" 814 | # "ZombieBot" 815 | # "Zsec" 816 | # "[KXTI] SsSsS" 817 | # "[RATF]" 818 | # "_KLB_" 819 | # "__by7ch__" 820 | # "_nullSec" 821 | # "aaa1000" 822 | # "aaaaa" 823 | # "aaaaaa" 824 | # "aaaabbbbccccdddd" 825 | # "aab" 826 | # "abenben" 827 | # "abri33" 828 | # "admin123" 829 | # "aethershell" 830 | # "akram" 831 | # "alenezi" 832 | # "alexander" 833 | # "amaharu" 834 | # "amarMahdi" 835 | # "an7" 836 | # "andreossido1" 837 | # "anonymous" 838 | # "apt593" 839 | # "aqaqaqz" 840 | # "armandofaso" 841 | # "armydillo" 842 | # "aromatic" 843 | # "arthur_read" 844 | # "asdf" 845 | # "asdfgg" 846 | # "asdfzxcv1234" 847 | # "ash3r" 848 | # "aslrulz" 849 | # "att4ck3rs3cur1ty" 850 | # "attackers" 851 | # "azerty" 852 | # "b0tchsec" 853 | # "b3rwb3r3wbr" 854 | # "b9" 855 | # "backdoorcipher" 856 | # "bad@hacking" 857 | # "badbit" 858 | # "banhmikhong" 859 | # "banjjak123" 860 | # "batkids" 861 | # "baton" 862 | # "bellaciao" 863 | # "berninator" 864 | # "bet75" 865 | # "bi0s" 866 | # "biG" 867 | # "bilson" 868 | # "bin4rygh0st" 869 | # "blanketpigs" 870 | # "blip" 871 | # "bluecat" 872 | # "bluehens" 873 | # "bmu" 874 | # "bodhi" 875 | # "bolgia4" 876 | # "born2scan" 877 | # "bout_to_get_flagged" 878 | # "break_the_code" 879 | # "breaking-breakpoints" 880 | # "bsbs" 881 | # "bsdb0y" 882 | # "bufferowlerflow" 883 | # "burner_herz0g" 884 | # "buscuit" 885 | # "buut" 886 | # "byc_404" 887 | # "bynacho360" 888 | # "byt3" 889 | # "c01ns" 890 | # "c0d34rmy" 891 | # "c0d3nh4ck" 892 | # "c0r3dump" 893 | # "c1rcu5_w0lv35" 894 | # "c4tzs3c" 895 | # "cR0ot" 896 | # "capca" 897 | # "cat3345678" 898 | # "cedric" 899 | # "challenge_downloaders" 900 | # "chiyomi" 901 | # "chrisbex" 902 | # "chtsec_418" 903 | # "chubbybunny" 904 | # "cohapog761" 905 | # "common" 906 | # "computerman" 907 | # "cooperra" 908 | # "cosine" 909 | # "cr4" 910 | # "crayontheft" 911 | # "crazymind" 912 | # "crudd" 913 | # "crusader" 914 | # "crw" 915 | # "ctfhub1" 916 | # "ctfmame" 917 | # "ctfo" 918 | # "cup2of2tea" 919 | # "curdir" 920 | # "cyb3r_w1z4rd5" 921 | # "cyb3r_w1z4rds" 922 | # "cyb3rduck" 923 | # "cyberdefecers" 924 | # "cybergods" 925 | # "cyberhamsters" 926 | # "d4rkc0de" 927 | # "d4rkst4rs" 928 | # "danielpclin" 929 | # "dawgsec" 930 | # "dcua" 931 | # "ddddhm" 932 | # "deadbeef" 933 | # "deadshot" 934 | # "decreasedsales" 935 | # "degensleepsquad" 936 | # "dhan0779" 937 | # "dididi" 938 | # "dingan" 939 | # "dirtyscouts" 940 | # "disekt" 941 | # "do0k" 942 | # "dokko" 943 | # "dpladpla" 944 | # "dsafdsfdsfsdf" 945 | # "dualcore" 946 | # "ducks0c13ty" 947 | # "dude" 948 | # "dvorak" 949 | # "dzsnowings" 950 | # "eaglejumpakb" 951 | # "ec" 952 | # "ed" 953 | # "empty-jack" 954 | # "enhance" 955 | # "enigma" 956 | # "enigma420" 957 | # "ericbleslie" 958 | # "err0r4o4" 959 | # "errboo" 960 | # "ev8d3sy0u" 961 | # "ewmgyuny" 962 | # "ex-laboratory for algorithmics" 963 | # "ex3x" 964 | # "excusemewtf" 965 | # "exd0tpy" 966 | # "exploit" 967 | # "exploit_it" 968 | # "f0rensec" 969 | # "fLAGers" 970 | # "fatalkali" 971 | # "fbfpigzgohvwzvgfqr@ttirv.com" 972 | # "febby_rastanty_fanboy" 973 | # "fhteam" 974 | # "fibonacci" 975 | # "firefly2" 976 | # "fkillrra" 977 | # "flagged{x000}" 978 | # "flagshopboys" 979 | # "flag{KLWVC}" 980 | # "flatbrains" 981 | # "foomcbar" 982 | # "forkbomb444" 983 | # "foursix" 984 | # "fr334aks" 985 | # "fuwaTse" 986 | # "g1dz3r0" 987 | # "g4udi" 988 | # "gab1no$" 989 | # "gamnabit" 990 | # "germanoreale" 991 | # "geunyang" 992 | # "ghormoon" 993 | # "ghost" 994 | # "gigelaknakoo" 995 | # "gigiH" 996 | # "goodfriendshackingclub" 997 | # "gss" 998 | # "guests" 999 | # "h1st0r7" 1000 | # "h4ck7u5" 1001 | # "haci_yatmaz" 1002 | # "hack^3" 1003 | # "hackday" 1004 | # "hackoff" 1005 | # "hahahahaha" 1006 | # "hamayanhamayan" 1007 | # "hana" 1008 | # "happymisc" 1009 | # "havocinstitute" 1010 | # "hawick" 1011 | # "heartstone" 1012 | # "heh" 1013 | # "hemam_raha" 1014 | # "heyyo" 1015 | # "hhhh" 1016 | # "hhxxttxs" 1017 | # "hime14" 1018 | # "hitori" 1019 | # "hocuspocus" 1020 | # "hohohoho" 1021 | # "homesarr" 1022 | # "i_forgot_my_password......." 1023 | # "ic3C0r3" 1024 | # "iceclue" 1025 | # "ideaengine007" 1026 | # "idempotent" 1027 | # "idiotwithabox" 1028 | # "ids-TeamCC" 1029 | # "ifejiei" 1030 | # "iiiiiiii" 1031 | # "ijx" 1032 | # "ikeario" 1033 | # "ilumi" 1034 | # "immortem" 1035 | # "imssm99" 1036 | # "in0de" 1037 | # "in_vi_sible" 1038 | # "indysec" 1039 | # "inin" 1040 | # "int0x80" 1041 | # "irRaptors" 1042 | # "ischemic_hackers_unions" 1043 | # "ivachyou123" 1044 | # "jammy" 1045 | # "jaydie" 1046 | # "jbz" 1047 | # "jc" 1048 | # "jivanshu" 1049 | # "jjtntm" 1050 | # "joemama" 1051 | # "jofra" 1052 | # "jojo_team_hey" 1053 | # "joshibeast" 1054 | # "jri" 1055 | # "just4fun" 1056 | # "justademo" 1057 | # "justanewteam" 1058 | # "justme" 1059 | # "justseb" 1060 | # "jxl" 1061 | # "k@i" 1062 | # "kaminynt" 1063 | # "kanbedon" 1064 | # "kanyewest" 1065 | # "karma" 1066 | # "katagaitai" 1067 | # "kerkeryuan" 1068 | # "kietu" 1069 | # "killswitch" 1070 | # "kinakomochi" 1071 | # "kjb" 1072 | # "kknock" 1073 | # "knotgud" 1074 | # "kolt" 1075 | # "kopitiam" 1076 | # "kosh" 1077 | # "kuttan" 1078 | # "kxti_qwr" 1079 | # "labrats" 1080 | # "largewaste" 1081 | # "larkwiot" 1082 | # "lavie3k" 1083 | # "lcark" 1084 | # "les_petits_pedestres" 1085 | # "liberumveto" 1086 | # "licon" 1087 | # "lidor" 1088 | # "liesegang" 1089 | # "lifeise99" 1090 | # "littleowl" 1091 | # "locexum" 1092 | # "logicalguru" 1093 | # "lolcatz" 1094 | # "lonelyboy1" 1095 | # "lordlol" 1096 | # "losiny" 1097 | # "lowprivshighhopes" 1098 | # "lzone" 1099 | # "masaladdosa" 1100 | # "masomenos" 1101 | # "masond" 1102 | # "masterJ" 1103 | # "mathneet" 1104 | # "matkapwn" 1105 | # "mavrik72" 1106 | # "meltdown" 1107 | # "memekatz" 1108 | # "micky" 1109 | # "minion" 1110 | # "misc" 1111 | # "mitsu" 1112 | # "mnx" 1113 | # "mochigoma" 1114 | # "momotv" 1115 | # "monsw" 1116 | # "mrtaurus" 1117 | # "mugi" 1118 | # "muinwp" 1119 | # "musipan" 1120 | # "mycelia" 1121 | # "mylilpwny" 1122 | # "n00bz" 1123 | # "n0one" 1124 | # "n1mbuzz" 1125 | # "n1net4il" 1126 | # "n3mo" 1127 | # "nanocomp" 1128 | # "narendra" 1129 | # "nattypwns" 1130 | # "navigator" 1131 | # "nekoteam" 1132 | # "neutrino_cannon" 1133 | # "new_phone_whoami" 1134 | # "newbie" 1135 | # "newstar" 1136 | # "nhy" 1137 | # "nick310" 1138 | # "nkj" 1139 | # "nns2009" 1140 | # "no3g" 1141 | # "nocbtm" 1142 | # "noname" 1143 | # "noob-atbash" 1144 | # "noob_team" 1145 | # "noobtopcannotwin" 1146 | # "noplalic_error" 1147 | # "nopnopnop" 1148 | # "noraneco" 1149 | # "not-a-shadow-team" 1150 | # "noteam" 1151 | # "notheretowin" 1152 | # "notpenguin1" 1153 | # "noxale" 1154 | # "npfs" 1155 | # "nubcakes" 1156 | # "nuc13us" 1157 | # "nuk3" 1158 | # "null" 1159 | # "null@root" 1160 | # "nullOP" 1161 | # "nullflops" 1162 | # "nullvoid" 1163 | # "nuoye" 1164 | # "nusociety" 1165 | # "nyoba123" 1166 | # "nyx" 1167 | # "object Object" 1168 | # "oden" 1169 | # "oirjoajiwefaoidg" 1170 | # "oldtopman" 1171 | # "ondrca" 1172 | # "onlyone" 1173 | # "onnyx" 1174 | # "onotch" 1175 | # "openctfid" 1176 | # "orfeusteam" 1177 | # "outOfCheese" 1178 | # "p0fs" 1179 | # "p0x82s" 1180 | # "p4snet0" 1181 | # "p4w16" 1182 | # "palaemonidae" 1183 | # "pcback" 1184 | # "peace-w4Lk3R" 1185 | # "peco" 1186 | # "pengenmenanghiks" 1187 | # "phishballs" 1188 | # "phneutro" 1189 | # "phulasso" 1190 | # "pipiteam" 1191 | # "pippopluto" 1192 | # "pkucc1" 1193 | # "pkucc2" 1194 | # "polaris" 1195 | # "polpol" 1196 | # "poopoopoo" 1197 | # "potato_gang" 1198 | # "prfctblack" 1199 | # "probando" 1200 | # "prowl" 1201 | # "psych0socialengin33ring" 1202 | # "ptdev" 1203 | # "puel" 1204 | # "pureSec" 1205 | # "puxnux" 1206 | # "pwnPHOfun" 1207 | # "pwnPrime" 1208 | # "pwnsuky" 1209 | # "q00u" 1210 | # "q3rn31" 1211 | # "qqqqqqqqq" 1212 | # "qualescapers" 1213 | # "quintuplecs" 1214 | # "quriosity" 1215 | # "r00tv1p3r" 1216 | # "r1sim" 1217 | # "r3billions" 1218 | # "r5" 1219 | # "rainbow" 1220 | # "rampage" 1221 | # "randomchars" 1222 | # "randomdude999" 1223 | # "ranranru" 1224 | # "reSTART;hosting" 1225 | # "ret2school" 1226 | # "revers3c" 1227 | # "rh" 1228 | # "ricekot" 1229 | # "rise5" 1230 | # "rmrfslash" 1231 | # "roguecookies" 1232 | # "room2042" 1233 | # "rycbar" 1234 | # "ryuliguseul" 1235 | # "s1n9l3:pl4y3r" 1236 | # "saiyuki1919" 1237 | # "salespies" 1238 | # "samsuncennet" 1239 | # "sarma" 1240 | # "score_gazer" 1241 | # "scrubzz" 1242 | # "sddddddm1" 1243 | # "secsyst" 1244 | # "seed" 1245 | # "serotonin_undefined" 1246 | # "sexypandas" 1247 | # "sh4dowr4nger" 1248 | # "shablul" 1249 | # "shark" 1250 | # "shellc0d3" 1251 | # "shellcoders" 1252 | # "shellcromancer" 1253 | # "shellpwn" 1254 | # "shellrippers" 1255 | # "shinta" 1256 | # "shitposters" 1257 | # "sin(θ)" 1258 | # "skiddies" 1259 | # "skyrockerzzz" 1260 | # "sm0ke" 1261 | # "smol.ppt" 1262 | # "socialdistancing" 1263 | # "soiok" 1264 | # "solid-umbrella" 1265 | # "solo_nolifer" 1266 | # "solo_wj" 1267 | # "sololeveling" 1268 | # "soloplay" 1269 | # "someguyorw/e" 1270 | # "spoilers" 1271 | # "ssgggr" 1272 | # "stackotter" 1273 | # "stance" 1274 | # "stankc" 1275 | # "starPt" 1276 | # "staz0t" 1277 | # "study_team" 1278 | # "stupid_email" 1279 | # "sung" 1280 | # "sunny_place" 1281 | # "swt02026" 1282 | # "swvl" 1283 | # "sysc4lls" 1284 | # "tabbingToSpace" 1285 | # "takawo" 1286 | # "teahouse_0f_d00m" 1287 | # "team'+UNION+SELECT+null,null,null;--" 1288 | # "team-user" 1289 | # "teamForFun" 1290 | # "teamctf2020" 1291 | # "teamy" 1292 | # "technic" 1293 | # "teh_pwnererz" 1294 | # "temp3st" 1295 | # "tepa" 1296 | # "tequierodar" 1297 | # "testik2" 1298 | # "testing_aaa" 1299 | # "testteam2" 1300 | # "th3bassplay3rs" 1301 | # "the3000" 1302 | # "the_unknown" 1303 | # "thediyfactory" 1304 | # "threat.club" 1305 | # "thrumbos" 1306 | # "tinminSec" 1307 | # "tiny baby" 1308 | # "toastedsteaksandwich" 1309 | # "tomteam" 1310 | # "tr0x01" 1311 | # "tr1py9uy" 1312 | # "trafik" 1313 | # "transistor" 1314 | # "tssB0u23" 1315 | # "tsustyle" 1316 | # "ttfrev" 1317 | # "tvd" 1318 | # "tvdec" 1319 | # "u0bu4s" 1320 | # "ueno24" 1321 | # "uetsu840" 1322 | # "umneg" 1323 | # "unnamedteam" 1324 | # "ur-Hackr" 1325 | # "usern4me" 1326 | # "utilitas" 1327 | # "v&" 1328 | # "v1ll41ns" 1329 | # "vd" 1330 | # "vefhremming" 1331 | # "vikingfr" 1332 | # "vix" 1333 | # "w0ooo" 1334 | # "w33t34m" 1335 | # "w3m" 1336 | # "wUMrm" 1337 | # "walkerrev_ll" 1338 | # "wanderer" 1339 | # "wanna_join_Nu1L" 1340 | # "wanna_try_challenges" 1341 | # "warlock_rootx" 1342 | # "wasamusume" 1343 | # "we_are_groot" 1344 | # "west22" 1345 | # "whitehathacker" 1346 | # "widewill;;" 1347 | # "williplace?" 1348 | # "worst" 1349 | # "wot_mate" 1350 | # "wusiwuxie" 1351 | # "wuvel" 1352 | # "www" 1353 | # "x41x41x41" 1354 | # "x90" 1355 | # "xCmq0CyNiN" 1356 | # "xSTF" 1357 | # "xXXxxxxxxxxXXx" 1358 | # "xlcvv" 1359 | # "xohan30" 1360 | # "xor_and_the_half_adder" 1361 | # "xqcaaaaaaaaaaaa" 1362 | # "xrzhev" 1363 | # "xxdao" 1364 | # "xyz" 1365 | # "y011d4" 1366 | # "y12uN" 1367 | # "yayy_aslr" 1368 | # "yeo" 1369 | # "yfNSN" 1370 | # "yin" 1371 | # "yogi" 1372 | # "yomismo" 1373 | # "youngpwnawans" 1374 | # "yoyosammy" 1375 | # "yuik" 1376 | # "yuvaly0" 1377 | # "z3phyr" 1378 | # "zebralake" 1379 | # "zehrileLau(n)de" 1380 | # "zenpenguins" 1381 | # "zenzenvibe" 1382 | # "zer0byte" 1383 | # "zero_flags" 1384 | # "zeroday" 1385 | # "ziad" 1386 | # "zlittenskittens" 1387 | # "ztlteam" 1388 | # "zxcv_123" 1389 | # "zxhy" 1390 | # "|24ND0M" 1391 | # "~Hack3r_Oneness" 1392 | # "ωuHack" 1393 | # "СTFF" 1394 | # "❄️" 1395 | # "あああああひ" 1396 | # "天枢Dubhe" 1397 | # "孙哥我火了" 1398 | # "사이코" 1399 | # "안진마1" 1400 | -------------------------------------------------------------------------------- /data/dcquals_2021.challs: -------------------------------------------------------------------------------- 1 | "say-hellooo" 2 | "cozen" 3 | "baby-a-fallen-lap-ray" 4 | "mra" 5 | "nooombers" 6 | "nooopster" 7 | "exploit-for-dummies" 8 | "mooosl" 9 | "mama-a-fallen-lap-ray" 10 | "rick" 11 | "gran-a-fallen-lap-ray" 12 | "coooinbase" 13 | "coooinbase-kernel" 14 | "pza999" 15 | "qoo-or-ooo" 16 | "rad" 17 | "tiamat" 18 | "segnalooo" 19 | "back-to-qoo" 20 | "smart-cryptooo" 21 | "looocked-ooout" 22 | "still-loooked-out" 23 | "threefactooorx" 24 | "pooow-buddy" 25 | "pooow-pal" 26 | -------------------------------------------------------------------------------- /data/dcquals_2021.json: -------------------------------------------------------------------------------- 1 | { 2 | "success": true, 3 | "message": { 4 | "open": [ 5 | [ 6 | "say-hellooo", 7 | "--special-emoji-☎️, --special-lat-42, --special-lon-16, easy, recon", 8 | "haiku", 9 | 1619827462.69378 10 | ], 11 | [ 12 | "cozen", 13 | "--special-emoji-⚡, --special-lat-38, --special-lon-13.8, pwn, reversing", 14 | "haiku", 15 | 1619827582.80678 16 | ], 17 | [ 18 | "baby-a-fallen-lap-ray", 19 | "--special-emoji-👶, --special-lat-36, --special-lon-81, pwn", 20 | "haiku", 21 | 1619827736.10837 22 | ], 23 | [ 24 | "mra", 25 | "--special-emoji-🦾, --special-lat-42, --special-lon-68, pwn, reversing", 26 | "haiku", 27 | 1619837030.97276 28 | ], 29 | [ 30 | "nooombers", 31 | "--special-emoji-🌯, --special-lat-37, --special-lon-48, crypto", 32 | "haiku", 33 | 1619837039.76935 34 | ], 35 | [ 36 | "nooopster", 37 | "--special-emoji-🎧, --special-lat-68, --special-lon-56, easy, pwn, reversing", 38 | "haiku", 39 | 1619845431.36514 40 | ], 41 | [ 42 | "exploit-for-dummies", 43 | "--special-emoji-🐞, --special-lat-7, --special-lon-25, shellcoding, trivia", 44 | "haiku", 45 | 1619850912.51983 46 | ], 47 | [ 48 | "mooosl", 49 | "--special-emoji-💪, --special-lat-24, --special-lon-3, pwn", 50 | "haiku", 51 | 1619855661.69642 52 | ], 53 | [ 54 | "mama-a-fallen-lap-ray", 55 | "--special-emoji-🤱, --special-lat-43, --special-lon-78, pwn", 56 | "haiku", 57 | 1619862636.03961 58 | ], 59 | [ 60 | "rick", 61 | "--special-emoji-🎙️, --special-lat-61, --special-lon-49, reversing", 62 | "haiku", 63 | 1619870180.16499 64 | ], 65 | [ 66 | "gran-a-fallen-lap-ray", 67 | "--special-emoji-👵, --special-lat-50, --special-lon-76, pwn", 68 | "haiku", 69 | 1619873642.78483 70 | ], 71 | [ 72 | "coooinbase", 73 | "--special-emoji-🪙, --special-lat-74, --special-lon-27, pwn, reversing", 74 | "haiku", 75 | 1619884270.06531 76 | ], 77 | [ 78 | "coooinbase-kernel", 79 | "--special-emoji-🚀, --special-lat-82, --special-lon-26, pwn, reversing", 80 | "haiku", 81 | 1619884277.23006 82 | ], 83 | [ 84 | "pza999", 85 | "--special-emoji-💫, --special-lat-62, --special-lon-30, kernel, pwn", 86 | "haiku", 87 | 1619893200.27577 88 | ], 89 | [ 90 | "qoo-or-ooo", 91 | "--special-emoji-💰, --special-lat-71, --special-lon-82, crypto", 92 | "haiku", 93 | 1619896663.93251 94 | ], 95 | [ 96 | "rad", 97 | "--special-emoji-🛰️, --special-lat-45, --special-lon-24, pwn, reversing", 98 | "haiku", 99 | 1619904133.12109 100 | ], 101 | [ 102 | "tiamat", 103 | "--special-emoji-🐉, --special-lat-30, --special-lon-18, reversing", 104 | "haiku", 105 | 1619909568.252 106 | ], 107 | [ 108 | "segnalooo", 109 | "--special-emoji-🤌, --special-lat-37, --special-lon-25, pwn", 110 | "haiku", 111 | 1619909578.18829 112 | ], 113 | [ 114 | "back-to-qoo", 115 | "--special-emoji-💸, --special-lat-80, --special-lon-81, crypto", 116 | "haiku", 117 | 1619922047.64981 118 | ], 119 | [ 120 | "smart-cryptooo", 121 | "--special-emoji-🧠, --special-lat-28, --special-lon-56, crypto, easy, ml", 122 | "haiku", 123 | 1619922274.26515 124 | ], 125 | [ 126 | "looocked-ooout", 127 | "--special-emoji-🚗, --special-lat-12, --special-lon-33, pwn", 128 | "haiku", 129 | 1619922785.01161 130 | ], 131 | [ 132 | "still-loooked-out", 133 | "--special-emoji-🏎️, --special-lat-22, --special-lon-40, pwn, reversing", 134 | "haiku", 135 | 1619922875.28582 136 | ], 137 | [ 138 | "threefactooorx", 139 | "--special-emoji-3️⃣, --special-lat-50, --special-lon-50, web", 140 | "haiku", 141 | 1619926024.91447 142 | ], 143 | [ 144 | "pooow-buddy", 145 | "--special-emoji-💥, --special-lat-23, --special-lon-76, easy, reversing", 146 | "haiku", 147 | 1619934123.9633 148 | ], 149 | [ 150 | "pooow-pal", 151 | "--special-emoji-❤️, --special-lat-29, --special-lon-74, reversing", 152 | "haiku", 153 | 1619951990.847 154 | ] 155 | ], 156 | "solves": [ 157 | [ 158 | "say-hellooo", 159 | "Shellphish", 160 | 1619827523.63905 161 | ], 162 | [ 163 | "say-hellooo", 164 | "PPP", 165 | 1619827572.21782 166 | ], 167 | [ 168 | "say-hellooo", 169 | "DiceGang", 170 | 1619827664.59258 171 | ], 172 | [ 173 | "say-hellooo", 174 | "oo_oo_papa_papa", 175 | 1619827703.81333 176 | ], 177 | [ 178 | "say-hellooo", 179 | "侍", 180 | 1619827720.45353 181 | ], 182 | [ 183 | "say-hellooo", 184 | "MapleBacon", 185 | 1619827749.38016 186 | ], 187 | [ 188 | "say-hellooo", 189 | "phasetw0", 190 | 1619827806.55838 191 | ], 192 | [ 193 | "say-hellooo", 194 | "Contagion", 195 | 1619827865.43509 196 | ], 197 | [ 198 | "say-hellooo", 199 | "StarBugs", 200 | 1619827876.14645 201 | ], 202 | [ 203 | "say-hellooo", 204 | "MidwestMinistryofMachines", 205 | 1619827906.45844 206 | ], 207 | [ 208 | "say-hellooo", 209 | "NorseCode", 210 | 1619827924.51574 211 | ], 212 | [ 213 | "say-hellooo", 214 | "Kittens", 215 | 1619827955.74622 216 | ], 217 | [ 218 | "say-hellooo", 219 | "SuperBlue", 220 | 1619827993.25944 221 | ], 222 | [ 223 | "say-hellooo", 224 | "Organizers", 225 | 1619828125.14754 226 | ], 227 | [ 228 | "say-hellooo", 229 | "Jacobs", 230 | 1619828131.98657 231 | ], 232 | [ 233 | "say-hellooo", 234 | "solid-umbrella", 235 | 1619828170.20305 236 | ], 237 | [ 238 | "say-hellooo", 239 | "kernelpoppers", 240 | 1619828172.81298 241 | ], 242 | [ 243 | "say-hellooo", 244 | "Tea Deliverers", 245 | 1619828175.37559 246 | ], 247 | [ 248 | "say-hellooo", 249 | "PFS", 250 | 1619828204.90364 251 | ], 252 | [ 253 | "say-hellooo", 254 | "bluehens", 255 | 1619828206.15758 256 | ], 257 | [ 258 | "say-hellooo", 259 | "NULL+Void", 260 | 1619828248.14352 261 | ], 262 | [ 263 | "say-hellooo", 264 | "Dumb_bots", 265 | 1619828279.64129 266 | ], 267 | [ 268 | "say-hellooo", 269 | "RavenSix", 270 | 1619828369.59515 271 | ], 272 | [ 273 | "say-hellooo", 274 | "mhackeroni", 275 | 1619828433.13573 276 | ], 277 | [ 278 | "say-hellooo", 279 | "ShelloWorld", 280 | 1619828439.26091 281 | ], 282 | [ 283 | "say-hellooo", 284 | "DarkWolfSolutions", 285 | 1619828450.03895 286 | ], 287 | [ 288 | "say-hellooo", 289 | "CyberSUquad", 290 | 1619828455.02757 291 | ], 292 | [ 293 | "say-hellooo", 294 | "d4rkc0de", 295 | 1619828493.61801 296 | ], 297 | [ 298 | "say-hellooo", 299 | "bestbestbest", 300 | 1619828543.52534 301 | ], 302 | [ 303 | "say-hellooo", 304 | "RobotMafia", 305 | 1619828567.75853 306 | ], 307 | [ 308 | "say-hellooo", 309 | "tooha", 310 | 1619828601.58451 311 | ], 312 | [ 313 | "say-hellooo", 314 | "uuunderflow", 315 | 1619828645.95801 316 | ], 317 | [ 318 | "say-hellooo", 319 | "pizza", 320 | 1619828656.52049 321 | ], 322 | [ 323 | "say-hellooo", 324 | "Haboob_Force", 325 | 1619828657.46492 326 | ], 327 | [ 328 | "say-hellooo", 329 | "404inthe6", 330 | 1619828697.6218 331 | ], 332 | [ 333 | "say-hellooo", 334 | "mcmayh☰m", 335 | 1619828727.93636 336 | ], 337 | [ 338 | "say-hellooo", 339 | "VetCon", 340 | 1619828733.48138 341 | ], 342 | [ 343 | "say-hellooo", 344 | "0daysober", 345 | 1619828767.81926 346 | ], 347 | [ 348 | "say-hellooo", 349 | "zwnj", 350 | 1619828881.63755 351 | ], 352 | [ 353 | "say-hellooo", 354 | "OSUSEC", 355 | 1619828896.21444 356 | ], 357 | [ 358 | "say-hellooo", 359 | "/bin/tw", 360 | 1619828984.76126 361 | ], 362 | [ 363 | "say-hellooo", 364 | "CYberMouflons", 365 | 1619828987.35601 366 | ], 367 | [ 368 | "say-hellooo", 369 | "burner_herz0g", 370 | 1619829093.55946 371 | ], 372 | [ 373 | "say-hellooo", 374 | "debug4RMY", 375 | 1619829109.69905 376 | ], 377 | [ 378 | "say-hellooo", 379 | "HITCON ⚔ Balsn", 380 | 1619829112.53664 381 | ], 382 | [ 383 | "say-hellooo", 384 | "K!nd4SUS", 385 | 1619829191.72042 386 | ], 387 | [ 388 | "say-hellooo", 389 | "NinjaTurtles", 390 | 1619829233.7929 391 | ], 392 | [ 393 | "say-hellooo", 394 | "ARESx", 395 | 1619829274.0623 396 | ], 397 | [ 398 | "say-hellooo", 399 | "r3kapig", 400 | 1619829274.57669 401 | ], 402 | [ 403 | "say-hellooo", 404 | "skateboardingdog", 405 | 1619829303.63153 406 | ], 407 | [ 408 | "say-hellooo", 409 | "MocSec", 410 | 1619829349.0047 411 | ], 412 | [ 413 | "say-hellooo", 414 | "w33t34m", 415 | 1619829392.66418 416 | ], 417 | [ 418 | "say-hellooo", 419 | "ELT", 420 | 1619829449.81539 421 | ], 422 | [ 423 | "say-hellooo", 424 | "Bawolff", 425 | 1619829526.17125 426 | ], 427 | [ 428 | "say-hellooo", 429 | "bi0s", 430 | 1619829542.85582 431 | ], 432 | [ 433 | "say-hellooo", 434 | "koreanbadass", 435 | 1619829618.07663 436 | ], 437 | [ 438 | "say-hellooo", 439 | "Nu1L", 440 | 1619829700.67614 441 | ], 442 | [ 443 | "say-hellooo", 444 | "⚔️TSJ⚔️", 445 | 1619829703.38147 446 | ], 447 | [ 448 | "say-hellooo", 449 | "V&N", 450 | 1619829787.32197 451 | ], 452 | [ 453 | "say-hellooo", 454 | "Team Enu", 455 | 1619829822.14825 456 | ], 457 | [ 458 | "say-hellooo", 459 | "Katzebin", 460 | 1619829834.25232 461 | ], 462 | [ 463 | "say-hellooo", 464 | "hakors", 465 | 1619829841.38111 466 | ], 467 | [ 468 | "say-hellooo", 469 | "RPISEC", 470 | 1619829844.65689 471 | ], 472 | [ 473 | "say-hellooo", 474 | "K-Students", 475 | 1619829873.25836 476 | ], 477 | [ 478 | "say-hellooo", 479 | "fierceBadRAbbits", 480 | 1619829973.87371 481 | ], 482 | [ 483 | "say-hellooo", 484 | "HuntsvilleTechSupport", 485 | 1619830072.64569 486 | ], 487 | [ 488 | "say-hellooo", 489 | "DeathMetalDonkeyHunters", 490 | 1619830087.36532 491 | ], 492 | [ 493 | "say-hellooo", 494 | "CSC427", 495 | 1619830110.878 496 | ], 497 | [ 498 | "say-hellooo", 499 | "Unwanted_MSware", 500 | 1619830113.88297 501 | ], 502 | [ 503 | "say-hellooo", 504 | "HackPack", 505 | 1619830184.62083 506 | ], 507 | [ 508 | "say-hellooo", 509 | "WashedUpResearchers", 510 | 1619830246.90492 511 | ], 512 | [ 513 | "say-hellooo", 514 | "null2root", 515 | 1619830407.12925 516 | ], 517 | [ 518 | "say-hellooo", 519 | "rhackomandati", 520 | 1619830410.76105 521 | ], 522 | [ 523 | "say-hellooo", 524 | "ntr0py", 525 | 1619830452.82175 526 | ], 527 | [ 528 | "say-hellooo", 529 | "Tea MSG", 530 | 1619830583.20422 531 | ], 532 | [ 533 | "say-hellooo", 534 | "STT", 535 | 1619830603.67308 536 | ], 537 | [ 538 | "say-hellooo", 539 | "yad3", 540 | 1619830653.86245 541 | ], 542 | [ 543 | "say-hellooo", 544 | "HackingKilledTheRadioZone", 545 | 1619830791.12824 546 | ], 547 | [ 548 | "say-hellooo", 549 | "F-Killer", 550 | 1619830988.3109 551 | ], 552 | [ 553 | "say-hellooo", 554 | "B0NG0RE", 555 | 1619830991.50749 556 | ], 557 | [ 558 | "say-hellooo", 559 | "castilho", 560 | 1619831082.66286 561 | ], 562 | [ 563 | "say-hellooo", 564 | "NewKidsOnTheBlockchain", 565 | 1619831097.89121 566 | ], 567 | [ 568 | "say-hellooo", 569 | "SaudiPwners", 570 | 1619831210.17046 571 | ], 572 | [ 573 | "say-hellooo", 574 | "Dragon Sector", 575 | 1619831228.98355 576 | ], 577 | [ 578 | "say-hellooo", 579 | "TeamBaguette", 580 | 1619831265.40579 581 | ], 582 | [ 583 | "say-hellooo", 584 | "ST4RT", 585 | 1619831308.61475 586 | ], 587 | [ 588 | "say-hellooo", 589 | "3rd_string", 590 | 1619831679.7679 591 | ], 592 | [ 593 | "say-hellooo", 594 | "N1ghth4wk", 595 | 1619831766.08836 596 | ], 597 | [ 598 | "say-hellooo", 599 | "RevolutionEra", 600 | 1619832030.63198 601 | ], 602 | [ 603 | "say-hellooo", 604 | "WGUFowlOwls", 605 | 1619832037.97439 606 | ], 607 | [ 608 | "say-hellooo", 609 | "Vidar-Team", 610 | 1619832098.87103 611 | ], 612 | [ 613 | "say-hellooo", 614 | "SummerJedi", 615 | 1619832120.60832 616 | ], 617 | [ 618 | "say-hellooo", 619 | "Ultimate Remote workers", 620 | 1619832206.41519 621 | ], 622 | [ 623 | "say-hellooo", 624 | "Never Stop Exploiting", 625 | 1619832223.19193 626 | ], 627 | [ 628 | "say-hellooo", 629 | "Fword", 630 | 1619832246.43953 631 | ], 632 | [ 633 | "say-hellooo", 634 | "SSoD", 635 | 1619832246.49166 636 | ], 637 | [ 638 | "say-hellooo", 639 | "T3n4ci0us", 640 | 1619832247.29553 641 | ], 642 | [ 643 | "say-hellooo", 644 | "newb#101", 645 | 1619832335.43233 646 | ], 647 | [ 648 | "say-hellooo", 649 | "zh3r0", 650 | 1619832381.77481 651 | ], 652 | [ 653 | "say-hellooo", 654 | "Kza", 655 | 1619832486.74332 656 | ], 657 | [ 658 | "say-hellooo", 659 | "Sauercloud", 660 | 1619832611.05593 661 | ], 662 | [ 663 | "say-hellooo", 664 | "W4RH4C|<", 665 | 1619832629.42876 666 | ], 667 | [ 668 | "say-hellooo", 669 | "7deadlysins", 670 | 1619832696.99044 671 | ], 672 | [ 673 | "say-hellooo", 674 | "BreakingEnigma", 675 | 1619832697.94202 676 | ], 677 | [ 678 | "say-hellooo", 679 | "xSTF", 680 | 1619832768.0978 681 | ], 682 | [ 683 | "say-hellooo", 684 | "h3X085", 685 | 1619832778.03556 686 | ], 687 | [ 688 | "say-hellooo", 689 | "MadeInMIM", 690 | 1619832812.25843 691 | ], 692 | [ 693 | "say-hellooo", 694 | "D3monSlayer", 695 | 1619832857.97598 696 | ], 697 | [ 698 | "say-hellooo", 699 | "MQCybersec", 700 | 1619832872.4549 701 | ], 702 | [ 703 | "say-hellooo", 704 | "FalseFlag", 705 | 1619833023.28517 706 | ], 707 | [ 708 | "say-hellooo", 709 | "Dc212", 710 | 1619833289.90974 711 | ], 712 | [ 713 | "say-hellooo", 714 | "I'm_GGonna", 715 | 1619833302.02852 716 | ], 717 | [ 718 | "say-hellooo", 719 | "0xDoge", 720 | 1619833384.61295 721 | ], 722 | [ 723 | "say-hellooo", 724 | "3_d0uche5_cl4b", 725 | 1619833508.93444 726 | ], 727 | [ 728 | "say-hellooo", 729 | "DepartmentOfNetworkGanking", 730 | 1619833519.81894 731 | ], 732 | [ 733 | "say-hellooo", 734 | "Monk3y Security", 735 | 1619833723.89939 736 | ], 737 | [ 738 | "say-hellooo", 739 | "UndeadMyths", 740 | 1619833776.12147 741 | ], 742 | [ 743 | "say-hellooo", 744 | "TeamBrotherHood", 745 | 1619833881.43973 746 | ], 747 | [ 748 | "say-hellooo", 749 | "CAT-Security", 750 | 1619833910.18272 751 | ], 752 | [ 753 | "say-hellooo", 754 | "Neg9", 755 | 1619834063.94688 756 | ], 757 | [ 758 | "say-hellooo", 759 | "0xCrypt0", 760 | 1619834111.59245 761 | ], 762 | [ 763 | "say-hellooo", 764 | "Cntr0llz", 765 | 1619834311.07879 766 | ], 767 | [ 768 | "say-hellooo", 769 | "stankc", 770 | 1619834385.73399 771 | ], 772 | [ 773 | "say-hellooo", 774 | "Mayas", 775 | 1619834579.63457 776 | ], 777 | [ 778 | "say-hellooo", 779 | "B3NNY", 780 | 1619834584.58587 781 | ], 782 | [ 783 | "say-hellooo", 784 | "Catastrophe", 785 | 1619834716.63625 786 | ], 787 | [ 788 | "say-hellooo", 789 | "surpr!$3_m0th3rh@ckers", 790 | 1619834880.57973 791 | ], 792 | [ 793 | "say-hellooo", 794 | "Whoami", 795 | 1619834963.91508 796 | ], 797 | [ 798 | "say-hellooo", 799 | "obelus", 800 | 1619835032.50323 801 | ], 802 | [ 803 | "say-hellooo", 804 | "efiens", 805 | 1619835063.1185 806 | ], 807 | [ 808 | "say-hellooo", 809 | "SectorZ", 810 | 1619835434.25672 811 | ], 812 | [ 813 | "say-hellooo", 814 | "DarkGrayHats", 815 | 1619835479.27804 816 | ], 817 | [ 818 | "say-hellooo", 819 | "GatorSheavesMutably", 820 | 1619835495.54263 821 | ], 822 | [ 823 | "say-hellooo", 824 | "so_its_ghidra_darkmode_then", 825 | 1619836264.51804 826 | ], 827 | [ 828 | "say-hellooo", 829 | "hackyboiz", 830 | 1619836334.69823 831 | ], 832 | [ 833 | "say-hellooo", 834 | "h_noson", 835 | 1619836342.29856 836 | ], 837 | [ 838 | "say-hellooo", 839 | "RedWheelBarrow", 840 | 1619836357.24108 841 | ], 842 | [ 843 | "say-hellooo", 844 | "KapiSec", 845 | 1619836419.6196 846 | ], 847 | [ 848 | "say-hellooo", 849 | "Hackappatoi", 850 | 1619836431.85938 851 | ], 852 | [ 853 | "say-hellooo", 854 | "treebeard", 855 | 1619836460.69938 856 | ], 857 | [ 858 | "say-hellooo", 859 | "OyuSec", 860 | 1619836468.14018 861 | ], 862 | [ 863 | "say-hellooo", 864 | "hafofu", 865 | 1619836472.51951 866 | ], 867 | [ 868 | "say-hellooo", 869 | "[sqrt(-1)+1]", 870 | 1619836571.83854 871 | ], 872 | [ 873 | "say-hellooo", 874 | "#71", 875 | 1619836873.58436 876 | ], 877 | [ 878 | "say-hellooo", 879 | "ids-TeamCC", 880 | 1619836878.55915 881 | ], 882 | [ 883 | "say-hellooo", 884 | "NTPNoobToPro", 885 | 1619837059.59976 886 | ], 887 | [ 888 | "say-hellooo", 889 | "helloMisery", 890 | 1619837253.10616 891 | ], 892 | [ 893 | "say-hellooo", 894 | "xtal", 895 | 1619837416.42169 896 | ], 897 | [ 898 | "say-hellooo", 899 | "1C4RU5", 900 | 1619837672.84237 901 | ], 902 | [ 903 | "say-hellooo", 904 | "N0Named", 905 | 1619837890.10656 906 | ], 907 | [ 908 | "say-hellooo", 909 | "Unicorns of Security", 910 | 1619838068.68274 911 | ], 912 | [ 913 | "say-hellooo", 914 | "LittleNarwhals", 915 | 1619838096.78647 916 | ], 917 | [ 918 | "say-hellooo", 919 | "./Vespiary", 920 | 1619838159.47941 921 | ], 922 | [ 923 | "say-hellooo", 924 | "UMDCSEC", 925 | 1619838198.92445 926 | ], 927 | [ 928 | "say-hellooo", 929 | "reinforchu", 930 | 1619838312.58734 931 | ], 932 | [ 933 | "say-hellooo", 934 | "huli", 935 | 1619838362.5639 936 | ], 937 | [ 938 | "say-hellooo", 939 | "GG4Q", 940 | 1619838443.41602 941 | ], 942 | [ 943 | "say-hellooo", 944 | "PolarisOne", 945 | 1619838711.98531 946 | ], 947 | [ 948 | "say-hellooo", 949 | "Pri_mates", 950 | 1619838883.19047 951 | ], 952 | [ 953 | "say-hellooo", 954 | "SaturnX", 955 | 1619838962.08907 956 | ], 957 | [ 958 | "say-hellooo", 959 | "Yamagi.com", 960 | 1619839106.97531 961 | ], 962 | [ 963 | "say-hellooo", 964 | "subrsp0x27", 965 | 1619839592.57408 966 | ], 967 | [ 968 | "say-hellooo", 969 | "SugarCats", 970 | 1619839692.81784 971 | ], 972 | [ 973 | "say-hellooo", 974 | "irNoobs", 975 | 1619839999.78807 976 | ], 977 | [ 978 | "say-hellooo", 979 | "quantumhack", 980 | 1619840774.82606 981 | ], 982 | [ 983 | "say-hellooo", 984 | "Tasteless", 985 | 1619840799.7296 986 | ], 987 | [ 988 | "say-hellooo", 989 | "TheAdditionalPayphones", 990 | 1619840845.01462 991 | ], 992 | [ 993 | "say-hellooo", 994 | "Ravanan", 995 | 1619841289.54806 996 | ], 997 | [ 998 | "say-hellooo", 999 | "jtsec2", 1000 | 1619841367.03038 1001 | ], 1002 | [ 1003 | "say-hellooo", 1004 | "wtfailure", 1005 | 1619841590.77517 1006 | ], 1007 | [ 1008 | "say-hellooo", 1009 | "PatanjaliHax", 1010 | 1619841610.73302 1011 | ], 1012 | [ 1013 | "say-hellooo", 1014 | "Aviators", 1015 | 1619841816.33345 1016 | ], 1017 | [ 1018 | "say-hellooo", 1019 | "Cr4ckThump", 1020 | 1619842190.68362 1021 | ], 1022 | [ 1023 | "mra", 1024 | "StarBugs", 1025 | 1619842342.03061 1026 | ], 1027 | [ 1028 | "say-hellooo", 1029 | "0x_SHilling", 1030 | 1619842755.54171 1031 | ], 1032 | [ 1033 | "say-hellooo", 1034 | "ARA_ARA", 1035 | 1619843294.84677 1036 | ], 1037 | [ 1038 | "say-hellooo", 1039 | "Ace0ne", 1040 | 1619843455.95294 1041 | ], 1042 | [ 1043 | "say-hellooo", 1044 | "O_da", 1045 | 1619843545.85175 1046 | ], 1047 | [ 1048 | "say-hellooo", 1049 | "PwningFrom127::1", 1050 | 1619843785.31904 1051 | ], 1052 | [ 1053 | "mra", 1054 | "Nu1L", 1055 | 1619843816.99536 1056 | ], 1057 | [ 1058 | "say-hellooo", 1059 | "ForThePleasureOfEmojis", 1060 | 1619844305.65809 1061 | ], 1062 | [ 1063 | "say-hellooo", 1064 | "InfoSecIITR", 1065 | 1619844378.81374 1066 | ], 1067 | [ 1068 | "say-hellooo", 1069 | "Racco0N", 1070 | 1619844461.70613 1071 | ], 1072 | [ 1073 | "say-hellooo", 1074 | "AWP?", 1075 | 1619844620.71398 1076 | ], 1077 | [ 1078 | "mra", 1079 | "Katzebin", 1080 | 1619844965.48381 1081 | ], 1082 | [ 1083 | "say-hellooo", 1084 | "CyberpUnk Jiu-jitsu Otters", 1085 | 1619845170.90598 1086 | ], 1087 | [ 1088 | "say-hellooo", 1089 | "hdkz", 1090 | 1619845245.57376 1091 | ], 1092 | [ 1093 | "say-hellooo", 1094 | "watch(SEASPIRACY)&&act(NOW)||go(EXTINCT)", 1095 | 1619845443.41202 1096 | ], 1097 | [ 1098 | "mra", 1099 | "PPP", 1100 | 1619845566.86351 1101 | ], 1102 | [ 1103 | "mra", 1104 | "侍", 1105 | 1619845747.89685 1106 | ], 1107 | [ 1108 | "say-hellooo", 1109 | "Spartan'Ravens", 1110 | 1619845894.84742 1111 | ], 1112 | [ 1113 | "say-hellooo", 1114 | "PTB_WTL", 1115 | 1619846673.69294 1116 | ], 1117 | [ 1118 | "mra", 1119 | "DiceGang", 1120 | 1619846704.71906 1121 | ], 1122 | [ 1123 | "say-hellooo", 1124 | "ACaverna", 1125 | 1619846993.96822 1126 | ], 1127 | [ 1128 | "say-hellooo", 1129 | "Byt3Scr4pp3rs", 1130 | 1619847049.10399 1131 | ], 1132 | [ 1133 | "say-hellooo", 1134 | "fr4gment", 1135 | 1619847217.93387 1136 | ], 1137 | [ 1138 | "say-hellooo", 1139 | "DrewPy", 1140 | 1619847577.42845 1141 | ], 1142 | [ 1143 | "say-hellooo", 1144 | "LiquidTeam", 1145 | 1619847637.5435 1146 | ], 1147 | [ 1148 | "say-hellooo", 1149 | "Geeky-Cat", 1150 | 1619847657.51009 1151 | ], 1152 | [ 1153 | "say-hellooo", 1154 | "norse", 1155 | 1619847818.82046 1156 | ], 1157 | [ 1158 | "say-hellooo", 1159 | "1nf1n1ty", 1160 | 1619847850.28385 1161 | ], 1162 | [ 1163 | "say-hellooo", 1164 | "SDSLabs", 1165 | 1619847854.50502 1166 | ], 1167 | [ 1168 | "mra", 1169 | "K-Students", 1170 | 1619847904.42112 1171 | ], 1172 | [ 1173 | "say-hellooo", 1174 | "spl0d3rz", 1175 | 1619848002.87637 1176 | ], 1177 | [ 1178 | "nooombers", 1179 | "SuperBlue", 1180 | 1619848377.36012 1181 | ], 1182 | [ 1183 | "say-hellooo", 1184 | "SPRUSH", 1185 | 1619848549.89486 1186 | ], 1187 | [ 1188 | "say-hellooo", 1189 | "Supranatural", 1190 | 1619848794.72789 1191 | ], 1192 | [ 1193 | "say-hellooo", 1194 | "TerminalCats", 1195 | 1619848916.18999 1196 | ], 1197 | [ 1198 | "mra", 1199 | "Shellphish", 1200 | 1619849422.42663 1201 | ], 1202 | [ 1203 | "say-hellooo", 1204 | "FS0CIETY00", 1205 | 1619849444.32589 1206 | ], 1207 | [ 1208 | "say-hellooo", 1209 | "noproplem", 1210 | 1619849541.38456 1211 | ], 1212 | [ 1213 | "mra", 1214 | "Tea Deliverers", 1215 | 1619849608.56815 1216 | ], 1217 | [ 1218 | "say-hellooo", 1219 | "AntiBuddies", 1220 | 1619849615.5009 1221 | ], 1222 | [ 1223 | "mra", 1224 | "uuunderflow", 1225 | 1619849964.34556 1226 | ], 1227 | [ 1228 | "say-hellooo", 1229 | "HugsForBugs", 1230 | 1619849994.76032 1231 | ], 1232 | [ 1233 | "say-hellooo", 1234 | "Nemesis", 1235 | 1619850009.92284 1236 | ], 1237 | [ 1238 | "mra", 1239 | "Tasteless", 1240 | 1619850010.22174 1241 | ], 1242 | [ 1243 | "say-hellooo", 1244 | "MonkOnMars", 1245 | 1619850286.65623 1246 | ], 1247 | [ 1248 | "nooopster", 1249 | "侍", 1250 | 1619850306.25442 1251 | ], 1252 | [ 1253 | "nooombers", 1254 | "Katzebin", 1255 | 1619850307.21294 1256 | ], 1257 | [ 1258 | "say-hellooo", 1259 | "CCUG", 1260 | 1619850430.63476 1261 | ], 1262 | [ 1263 | "mra", 1264 | "RPISEC", 1265 | 1619850434.47604 1266 | ], 1267 | [ 1268 | "mra", 1269 | "Sauercloud", 1270 | 1619850444.19618 1271 | ], 1272 | [ 1273 | "mra", 1274 | "PFS", 1275 | 1619850527.97085 1276 | ], 1277 | [ 1278 | "nooombers", 1279 | "HITCON ⚔ Balsn", 1280 | 1619850869.65176 1281 | ], 1282 | [ 1283 | "mra", 1284 | "NorseCode", 1285 | 1619851089.01745 1286 | ], 1287 | [ 1288 | "say-hellooo", 1289 | "YOKARO-MON", 1290 | 1619851395.0568 1291 | ], 1292 | [ 1293 | "mra", 1294 | "SuperBlue", 1295 | 1619851468.40191 1296 | ], 1297 | [ 1298 | "say-hellooo", 1299 | "cby234", 1300 | 1619851537.21366 1301 | ], 1302 | [ 1303 | "say-hellooo", 1304 | "duks", 1305 | 1619851616.42901 1306 | ], 1307 | [ 1308 | "say-hellooo", 1309 | "K.knock", 1310 | 1619851658.67252 1311 | ], 1312 | [ 1313 | "nooopster", 1314 | "koreanbadass", 1315 | 1619851792.62374 1316 | ], 1317 | [ 1318 | "say-hellooo", 1319 | "APA-Razi", 1320 | 1619851797.48204 1321 | ], 1322 | [ 1323 | "say-hellooo", 1324 | "srdnlen", 1325 | 1619852116.7641 1326 | ], 1327 | [ 1328 | "nooopster", 1329 | "Nu1L", 1330 | 1619852124.56137 1331 | ], 1332 | [ 1333 | "say-hellooo", 1334 | "IZONE_FOREVER", 1335 | 1619852206.30731 1336 | ], 1337 | [ 1338 | "say-hellooo", 1339 | "cyanhats", 1340 | 1619852383.84462 1341 | ], 1342 | [ 1343 | "say-hellooo", 1344 | "Cyber_Monkeys", 1345 | 1619852465.0463 1346 | ], 1347 | [ 1348 | "nooombers", 1349 | "Shellphish", 1350 | 1619852985.95391 1351 | ], 1352 | [ 1353 | "mra", 1354 | "HITCON ⚔ Balsn", 1355 | 1619853009.94789 1356 | ], 1357 | [ 1358 | "say-hellooo", 1359 | "PsychedelicRed", 1360 | 1619853065.49332 1361 | ], 1362 | [ 1363 | "nooopster", 1364 | "DiceGang", 1365 | 1619853303.24187 1366 | ], 1367 | [ 1368 | "mra", 1369 | "/bin/tw", 1370 | 1619853631.72215 1371 | ], 1372 | [ 1373 | "mra", 1374 | "koreanbadass", 1375 | 1619853676.20268 1376 | ], 1377 | [ 1378 | "say-hellooo", 1379 | "L10n5", 1380 | 1619853833.68456 1381 | ], 1382 | [ 1383 | "mra", 1384 | "r3kapig", 1385 | 1619853862.67435 1386 | ], 1387 | [ 1388 | "say-hellooo", 1389 | "InnotecLabs", 1390 | 1619854164.88255 1391 | ], 1392 | [ 1393 | "say-hellooo", 1394 | "cyk0rji", 1395 | 1619854326.47444 1396 | ], 1397 | [ 1398 | "say-hellooo", 1399 | "Team-0x7", 1400 | 1619854550.46703 1401 | ], 1402 | [ 1403 | "nooombers", 1404 | "Tea Deliverers", 1405 | 1619854769.33445 1406 | ], 1407 | [ 1408 | "say-hellooo", 1409 | "ReverseEntropy", 1410 | 1619854886.81695 1411 | ], 1412 | [ 1413 | "nooopster", 1414 | "RPISEC", 1415 | 1619854969.52898 1416 | ], 1417 | [ 1418 | "say-hellooo", 1419 | "Par5if4l", 1420 | 1619855167.31748 1421 | ], 1422 | [ 1423 | "mra", 1424 | "Tea MSG", 1425 | 1619855328.50534 1426 | ], 1427 | [ 1428 | "mra", 1429 | "noproplem", 1430 | 1619855460.52483 1431 | ], 1432 | [ 1433 | "say-hellooo", 1434 | "AdelaideB9", 1435 | 1619855668.45871 1436 | ], 1437 | [ 1438 | "say-hellooo", 1439 | "itamare", 1440 | 1619855852.64572 1441 | ], 1442 | [ 1443 | "say-hellooo", 1444 | "PEEPPEEP", 1445 | 1619856012.73551 1446 | ], 1447 | [ 1448 | "say-hellooo", 1449 | "ZombieShroom", 1450 | 1619856274.77962 1451 | ], 1452 | [ 1453 | "mra", 1454 | "h_noson", 1455 | 1619856369.16055 1456 | ], 1457 | [ 1458 | "mra", 1459 | "Ultimate Remote workers", 1460 | 1619856520.09813 1461 | ], 1462 | [ 1463 | "say-hellooo", 1464 | "Telnetcrew", 1465 | 1619856534.8391 1466 | ], 1467 | [ 1468 | "nooopster", 1469 | "Katzebin", 1470 | 1619856694.64718 1471 | ], 1472 | [ 1473 | "say-hellooo", 1474 | "NicDumZ", 1475 | 1619856705.5333 1476 | ], 1477 | [ 1478 | "say-hellooo", 1479 | "MonSec", 1480 | 1619856961.21706 1481 | ], 1482 | [ 1483 | "say-hellooo", 1484 | "h4tum", 1485 | 1619857002.59829 1486 | ], 1487 | [ 1488 | "say-hellooo", 1489 | "AAA", 1490 | 1619857184.61449 1491 | ], 1492 | [ 1493 | "say-hellooo", 1494 | "TEAM0001", 1495 | 1619857253.58166 1496 | ], 1497 | [ 1498 | "say-hellooo", 1499 | "Keyboard Monkeys", 1500 | 1619857460.24611 1501 | ], 1502 | [ 1503 | "say-hellooo", 1504 | "laopo", 1505 | 1619857690.32816 1506 | ], 1507 | [ 1508 | "say-hellooo", 1509 | "hack^3", 1510 | 1619857925.5234 1511 | ], 1512 | [ 1513 | "mra", 1514 | "Never Stop Exploiting", 1515 | 1619858058.23545 1516 | ], 1517 | [ 1518 | "say-hellooo", 1519 | "DropSoft", 1520 | 1619858359.93144 1521 | ], 1522 | [ 1523 | "say-hellooo", 1524 | "C4T_BuT_S4D", 1525 | 1619858472.57606 1526 | ], 1527 | [ 1528 | "say-hellooo", 1529 | "ISITDTU", 1530 | 1619858616.09359 1531 | ], 1532 | [ 1533 | "say-hellooo", 1534 | "Tozo", 1535 | 1619858637.44984 1536 | ], 1537 | [ 1538 | "mra", 1539 | "Organizers", 1540 | 1619858954.0357 1541 | ], 1542 | [ 1543 | "mra", 1544 | "0daysober", 1545 | 1619859003.51324 1546 | ], 1547 | [ 1548 | "baby-a-fallen-lap-ray", 1549 | "MapleBacon", 1550 | 1619859229.84424 1551 | ], 1552 | [ 1553 | "mra", 1554 | "zwnj", 1555 | 1619859435.56759 1556 | ], 1557 | [ 1558 | "say-hellooo", 1559 | "uranium235", 1560 | 1619859487.39618 1561 | ], 1562 | [ 1563 | "say-hellooo", 1564 | "Th3_Order_Of_th3_pH0en1x", 1565 | 1619859504.58735 1566 | ], 1567 | [ 1568 | "mra", 1569 | "ARESx", 1570 | 1619859792.45049 1571 | ], 1572 | [ 1573 | "nooombers", 1574 | "StarBugs", 1575 | 1619859812.47274 1576 | ], 1577 | [ 1578 | "say-hellooo", 1579 | "blanc.", 1580 | 1619859918.34696 1581 | ], 1582 | [ 1583 | "nooombers", 1584 | "Nu1L", 1585 | 1619859947.41654 1586 | ], 1587 | [ 1588 | "say-hellooo", 1589 | "c0r3dump", 1590 | 1619860083.63405 1591 | ], 1592 | [ 1593 | "say-hellooo", 1594 | "NepZer0", 1595 | 1619860202.00174 1596 | ], 1597 | [ 1598 | "nooopster", 1599 | "noproplem", 1600 | 1619860228.19775 1601 | ], 1602 | [ 1603 | "mra", 1604 | "null2root", 1605 | 1619860288.56246 1606 | ], 1607 | [ 1608 | "mra", 1609 | "c0r3dump", 1610 | 1619860291.33999 1611 | ], 1612 | [ 1613 | "say-hellooo", 1614 | "tu.darmstadt.ctf", 1615 | 1619860384.64043 1616 | ], 1617 | [ 1618 | "say-hellooo", 1619 | "Nepnep", 1620 | 1619860437.96597 1621 | ], 1622 | [ 1623 | "nooopster", 1624 | "Organizers", 1625 | 1619860504.86691 1626 | ], 1627 | [ 1628 | "nooopster", 1629 | "Tea MSG", 1630 | 1619860505.88262 1631 | ], 1632 | [ 1633 | "say-hellooo", 1634 | "jokersec", 1635 | 1619860576.86408 1636 | ], 1637 | [ 1638 | "say-hellooo", 1639 | "or4nge", 1640 | 1619860799.16508 1641 | ], 1642 | [ 1643 | "say-hellooo", 1644 | "dcode", 1645 | 1619860847.72184 1646 | ], 1647 | [ 1648 | "say-hellooo", 1649 | "wasamusume", 1650 | 1619860873.45003 1651 | ], 1652 | [ 1653 | "say-hellooo", 1654 | "Scavenger Security", 1655 | 1619860977.96826 1656 | ], 1657 | [ 1658 | "say-hellooo", 1659 | "SoddBaillKaill", 1660 | 1619861294.71037 1661 | ], 1662 | [ 1663 | "nooombers", 1664 | "⚔️TSJ⚔️", 1665 | 1619861356.41332 1666 | ], 1667 | [ 1668 | "nooopster", 1669 | "Tea Deliverers", 1670 | 1619861607.11156 1671 | ], 1672 | [ 1673 | "say-hellooo", 1674 | "KUDoS", 1675 | 1619861708.89977 1676 | ], 1677 | [ 1678 | "say-hellooo", 1679 | "VTeam", 1680 | 1619861942.79856 1681 | ], 1682 | [ 1683 | "say-hellooo", 1684 | "Inner Savages", 1685 | 1619862175.38231 1686 | ], 1687 | [ 1688 | "nooombers", 1689 | "OSUSEC", 1690 | 1619862452.5249 1691 | ], 1692 | [ 1693 | "mra", 1694 | "hxp", 1695 | 1619862800.60919 1696 | ], 1697 | [ 1698 | "nooopster", 1699 | "StarBugs", 1700 | 1619862805.81131 1701 | ], 1702 | [ 1703 | "say-hellooo", 1704 | "SecureMature", 1705 | 1619862920.25162 1706 | ], 1707 | [ 1708 | "baby-a-fallen-lap-ray", 1709 | "PPP", 1710 | 1619863246.43072 1711 | ], 1712 | [ 1713 | "say-hellooo", 1714 | "Kittenz", 1715 | 1619863287.99111 1716 | ], 1717 | [ 1718 | "say-hellooo", 1719 | "braket_ops", 1720 | 1619863315.58953 1721 | ], 1722 | [ 1723 | "nooombers", 1724 | "./Vespiary", 1725 | 1619863362.3679 1726 | ], 1727 | [ 1728 | "nooombers", 1729 | "/bin/tw", 1730 | 1619863602.2385 1731 | ], 1732 | [ 1733 | "say-hellooo", 1734 | "NakedMonkeyClub", 1735 | 1619864154.35965 1736 | ], 1737 | [ 1738 | "say-hellooo", 1739 | "WhiteFox", 1740 | 1619864614.34369 1741 | ], 1742 | [ 1743 | "nooopster", 1744 | "K-Students", 1745 | 1619864687.66102 1746 | ], 1747 | [ 1748 | "baby-a-fallen-lap-ray", 1749 | "Katzebin", 1750 | 1619864740.32779 1751 | ], 1752 | [ 1753 | "mra", 1754 | "rhackomandati", 1755 | 1619864781.7857 1756 | ], 1757 | [ 1758 | "say-hellooo", 1759 | "MoreBushSmokedWhackers", 1760 | 1619865080.29886 1761 | ], 1762 | [ 1763 | "mra", 1764 | "the3000", 1765 | 1619865139.61161 1766 | ], 1767 | [ 1768 | "say-hellooo", 1769 | "4c1d_k47", 1770 | 1619865140.08942 1771 | ], 1772 | [ 1773 | "nooopster", 1774 | "Tasteless", 1775 | 1619865194.40972 1776 | ], 1777 | [ 1778 | "mra", 1779 | "Vidar-Team", 1780 | 1619865209.74996 1781 | ], 1782 | [ 1783 | "say-hellooo", 1784 | "the3000", 1785 | 1619865424.74597 1786 | ], 1787 | [ 1788 | "nooopster", 1789 | "Shellphish", 1790 | 1619865488.77276 1791 | ], 1792 | [ 1793 | "nooopster", 1794 | "NorseCode", 1795 | 1619865550.39142 1796 | ], 1797 | [ 1798 | "mra", 1799 | "mhackeroni", 1800 | 1619865804.36253 1801 | ], 1802 | [ 1803 | "say-hellooo", 1804 | "c4t_f14g.txt", 1805 | 1619865901.815 1806 | ], 1807 | [ 1808 | "nooombers", 1809 | "r3kapig", 1810 | 1619866514.84282 1811 | ], 1812 | [ 1813 | "say-hellooo", 1814 | "TechFlorous", 1815 | 1619866629.66595 1816 | ], 1817 | [ 1818 | "say-hellooo", 1819 | "R00T3R5", 1820 | 1619866702.65287 1821 | ], 1822 | [ 1823 | "say-hellooo", 1824 | "FlagSmasher", 1825 | 1619866847.82907 1826 | ], 1827 | [ 1828 | "mra", 1829 | "⚔️TSJ⚔️", 1830 | 1619866948.15206 1831 | ], 1832 | [ 1833 | "nooopster", 1834 | "serial overkiller", 1835 | 1619867092.33036 1836 | ], 1837 | [ 1838 | "mama-a-fallen-lap-ray", 1839 | "Katzebin", 1840 | 1619867121.20854 1841 | ], 1842 | [ 1843 | "nooopster", 1844 | "SuperBlue", 1845 | 1619867369.37395 1846 | ], 1847 | [ 1848 | "mra", 1849 | "Team Enu", 1850 | 1619867586.22697 1851 | ], 1852 | [ 1853 | "nooopster", 1854 | "RobotMafia", 1855 | 1619867696.75571 1856 | ], 1857 | [ 1858 | "nooopster", 1859 | "r3kapig", 1860 | 1619867728.41609 1861 | ], 1862 | [ 1863 | "say-hellooo", 1864 | "fr334aks", 1865 | 1619868050.26222 1866 | ], 1867 | [ 1868 | "say-hellooo", 1869 | "WaletSec", 1870 | 1619868271.64539 1871 | ], 1872 | [ 1873 | "nooopster", 1874 | "c0r3dump", 1875 | 1619868348.46626 1876 | ], 1877 | [ 1878 | "say-hellooo", 1879 | "SuckOps", 1880 | 1619868416.3905 1881 | ], 1882 | [ 1883 | "say-hellooo", 1884 | "EvilBunnyWrote", 1885 | 1619868542.56559 1886 | ], 1887 | [ 1888 | "mra", 1889 | "ShelloWorld", 1890 | 1619868548.26599 1891 | ], 1892 | [ 1893 | "say-hellooo", 1894 | "BetterDoneThanPerfect", 1895 | 1619868908.71367 1896 | ], 1897 | [ 1898 | "say-hellooo", 1899 | "01000011 01000011 01000001", 1900 | 1619869084.18044 1901 | ], 1902 | [ 1903 | "say-hellooo", 1904 | "RootLee", 1905 | 1619869085.83003 1906 | ], 1907 | [ 1908 | "say-hellooo", 1909 | "Class3E", 1910 | 1619869131.95395 1911 | ], 1912 | [ 1913 | "say-hellooo", 1914 | "Team Name BE", 1915 | 1619869162.1236 1916 | ], 1917 | [ 1918 | "nooopster", 1919 | "⚔️TSJ⚔️", 1920 | 1619869350.51646 1921 | ], 1922 | [ 1923 | "say-hellooo", 1924 | "SharksWithLazersPEWPEW", 1925 | 1619869573.58103 1926 | ], 1927 | [ 1928 | "say-hellooo", 1929 | "manchos", 1930 | 1619869575.57381 1931 | ], 1932 | [ 1933 | "say-hellooo", 1934 | "K0TN", 1935 | 1619869727.85401 1936 | ], 1937 | [ 1938 | "say-hellooo", 1939 | "TeamBaguettes", 1940 | 1619869984.10103 1941 | ], 1942 | [ 1943 | "say-hellooo", 1944 | "Andrew-Bae", 1945 | 1619870511.10805 1946 | ], 1947 | [ 1948 | "nooopster", 1949 | "Sauercloud", 1950 | 1619870737.82285 1951 | ], 1952 | [ 1953 | "baby-a-fallen-lap-ray", 1954 | "r3kapig", 1955 | 1619870843.8239 1956 | ], 1957 | [ 1958 | "nooopster", 1959 | "CyberpUnk Jiu-jitsu Otters", 1960 | 1619870868.70508 1961 | ], 1962 | [ 1963 | "nooombers", 1964 | "Ultimate Remote workers", 1965 | 1619871257.66657 1966 | ], 1967 | [ 1968 | "say-hellooo", 1969 | "Dobob", 1970 | 1619871493.0486 1971 | ], 1972 | [ 1973 | "mra", 1974 | "bi0s", 1975 | 1619871509.1682 1976 | ], 1977 | [ 1978 | "nooombers", 1979 | "uuunderflow", 1980 | 1619871537.77128 1981 | ], 1982 | [ 1983 | "say-hellooo", 1984 | "u3w", 1985 | 1619871711.78992 1986 | ], 1987 | [ 1988 | "say-hellooo", 1989 | "yeetEr", 1990 | 1619871937.79679 1991 | ], 1992 | [ 1993 | "mama-a-fallen-lap-ray", 1994 | "r3kapig", 1995 | 1619872169.74154 1996 | ], 1997 | [ 1998 | "nooopster", 1999 | "Ultimate Remote workers", 2000 | 1619872984.83361 2001 | ], 2002 | [ 2003 | "mra", 2004 | "OSUSEC", 2005 | 1619873072.4196 2006 | ], 2007 | [ 2008 | "say-hellooo", 2009 | "PWr Synt@x Err0r", 2010 | 1619873296.06164 2011 | ], 2012 | [ 2013 | "exploit-for-dummies", 2014 | "PPP", 2015 | 1619873432.02239 2016 | ], 2017 | [ 2018 | "say-hellooo", 2019 | "TheHwackra", 2020 | 1619873526.96637 2021 | ], 2022 | [ 2023 | "say-hellooo", 2024 | "hxp", 2025 | 1619873651.32758 2026 | ], 2027 | [ 2028 | "say-hellooo", 2029 | "bad@hacking", 2030 | 1619873873.87178 2031 | ], 2032 | [ 2033 | "nooombers", 2034 | "PTB_WTL", 2035 | 1619874304.73708 2036 | ], 2037 | [ 2038 | "nooombers", 2039 | "K!nd4SUS", 2040 | 1619874455.20862 2041 | ], 2042 | [ 2043 | "nooopster", 2044 | "Never Stop Exploiting", 2045 | 1619874553.50404 2046 | ], 2047 | [ 2048 | "say-hellooo", 2049 | "miniVenom", 2050 | 1619874764.8737 2051 | ], 2052 | [ 2053 | "say-hellooo", 2054 | "DaHeed", 2055 | 1619875221.65663 2056 | ], 2057 | [ 2058 | "nooombers", 2059 | "koreanbadass", 2060 | 1619875236.89731 2061 | ], 2062 | [ 2063 | "say-hellooo", 2064 | "W018", 2065 | 1619875257.90392 2066 | ], 2067 | [ 2068 | "mra", 2069 | "MoreBushSmokedWhackers", 2070 | 1619875449.4409 2071 | ], 2072 | [ 2073 | "nooopster", 2074 | "C4T_BuT_S4D", 2075 | 1619875514.32236 2076 | ], 2077 | [ 2078 | "say-hellooo", 2079 | "dcua", 2080 | 1619875995.86342 2081 | ], 2082 | [ 2083 | "nooopster", 2084 | "ARESx", 2085 | 1619876015.00416 2086 | ], 2087 | [ 2088 | "say-hellooo", 2089 | "ErdosAmphetamineAddicion", 2090 | 1619876161.81663 2091 | ], 2092 | [ 2093 | "nooopster", 2094 | "/bin/tw", 2095 | 1619876198.36594 2096 | ], 2097 | [ 2098 | "mama-a-fallen-lap-ray", 2099 | "MapleBacon", 2100 | 1619876223.28409 2101 | ], 2102 | [ 2103 | "nooopster", 2104 | "HITCON ⚔ Balsn", 2105 | 1619876340.92694 2106 | ], 2107 | [ 2108 | "nooopster", 2109 | "rhackomandati", 2110 | 1619876571.66638 2111 | ], 2112 | [ 2113 | "nooopster", 2114 | "uuunderflow", 2115 | 1619876658.1089 2116 | ], 2117 | [ 2118 | "mra", 2119 | "Corrupted Pwnis", 2120 | 1619876750.68654 2121 | ], 2122 | [ 2123 | "nooopster", 2124 | "ShelloWorld", 2125 | 1619876871.07915 2126 | ], 2127 | [ 2128 | "mra", 2129 | "PTB_WTL", 2130 | 1619877413.90553 2131 | ], 2132 | [ 2133 | "mra", 2134 | "C4T_BuT_S4D", 2135 | 1619877590.6866 2136 | ], 2137 | [ 2138 | "mra", 2139 | "miniVenom", 2140 | 1619878008.42532 2141 | ], 2142 | [ 2143 | "mra", 2144 | "MapleBacon", 2145 | 1619878467.22293 2146 | ], 2147 | [ 2148 | "nooopster", 2149 | "PFS", 2150 | 1619878522.77767 2151 | ], 2152 | [ 2153 | "nooombers", 2154 | "侍", 2155 | 1619878936.65817 2156 | ], 2157 | [ 2158 | "say-hellooo", 2159 | "\\x4247Sec", 2160 | 1619879683.88609 2161 | ], 2162 | [ 2163 | "nooopster", 2164 | "Telnetcrew", 2165 | 1619879906.87528 2166 | ], 2167 | [ 2168 | "nooombers", 2169 | "DiceGang", 2170 | 1619880925.24304 2171 | ], 2172 | [ 2173 | "say-hellooo", 2174 | "skiddies", 2175 | 1619881235.59107 2176 | ], 2177 | [ 2178 | "nooombers", 2179 | "mhackeroni", 2180 | 1619881387.37635 2181 | ], 2182 | [ 2183 | "mra", 2184 | "TheFlatNetworkSociety", 2185 | 1619881404.21098 2186 | ], 2187 | [ 2188 | "say-hellooo", 2189 | "Haydevil", 2190 | 1619881452.90964 2191 | ], 2192 | [ 2193 | "mra", 2194 | "Ten*48", 2195 | 1619881471.92314 2196 | ], 2197 | [ 2198 | "nooopster", 2199 | "null2root", 2200 | 1619881741.37027 2201 | ], 2202 | [ 2203 | "mra", 2204 | "DarkArmy", 2205 | 1619881824.79214 2206 | ], 2207 | [ 2208 | "say-hellooo", 2209 | "ID-10-T", 2210 | 1619882032.31781 2211 | ], 2212 | [ 2213 | "say-hellooo", 2214 | "ruisilva", 2215 | 1619882193.49832 2216 | ], 2217 | [ 2218 | "mra", 2219 | "Dragon Sector", 2220 | 1619883297.94432 2221 | ], 2222 | [ 2223 | "nooopster", 2224 | "PPP", 2225 | 1619883498.04604 2226 | ], 2227 | [ 2228 | "say-hellooo", 2229 | "3xpertz.1np", 2230 | 1619883601.81042 2231 | ], 2232 | [ 2233 | "say-hellooo", 2234 | "lol123", 2235 | 1619883854.75898 2236 | ], 2237 | [ 2238 | "nooombers", 2239 | "K-Students", 2240 | 1619884676.84317 2241 | ], 2242 | [ 2243 | "say-hellooo", 2244 | "IIT(BHU)CyberSec", 2245 | 1619884717.42338 2246 | ], 2247 | [ 2248 | "say-hellooo", 2249 | "noSuchTeam", 2250 | 1619884979.46298 2251 | ], 2252 | [ 2253 | "nooombers", 2254 | "Jacobs", 2255 | 1619885145.82505 2256 | ], 2257 | [ 2258 | "say-hellooo", 2259 | "Re1n3r!", 2260 | 1619885557.4651 2261 | ], 2262 | [ 2263 | "say-hellooo", 2264 | "trojangoat", 2265 | 1619885905.13316 2266 | ], 2267 | [ 2268 | "say-hellooo", 2269 | "0x8Layer", 2270 | 1619886073.60287 2271 | ], 2272 | [ 2273 | "nooopster", 2274 | "Cyber_Monkeys", 2275 | 1619886241.69722 2276 | ], 2277 | [ 2278 | "mra", 2279 | "ISITDTU", 2280 | 1619886562.77037 2281 | ], 2282 | [ 2283 | "mra", 2284 | "ELT", 2285 | 1619886755.986 2286 | ], 2287 | [ 2288 | "nooopster", 2289 | "mhackeroni", 2290 | 1619886833.91682 2291 | ], 2292 | [ 2293 | "say-hellooo", 2294 | "GreenHat", 2295 | 1619886901.3371 2296 | ], 2297 | [ 2298 | "say-hellooo", 2299 | "decepticons", 2300 | 1619887074.65478 2301 | ], 2302 | [ 2303 | "nooombers", 2304 | "RPISEC", 2305 | 1619887156.21715 2306 | ], 2307 | [ 2308 | "nooombers", 2309 | "noproplem", 2310 | 1619887884.2898 2311 | ], 2312 | [ 2313 | "say-hellooo", 2314 | "delta007x", 2315 | 1619888029.57289 2316 | ], 2317 | [ 2318 | "nooopster", 2319 | "0daysober", 2320 | 1619888251.38557 2321 | ], 2322 | [ 2323 | "nooopster", 2324 | "PTB_WTL", 2325 | 1619888288.12819 2326 | ], 2327 | [ 2328 | "nooopster", 2329 | "SPRUSH", 2330 | 1619888492.01245 2331 | ], 2332 | [ 2333 | "nooopster", 2334 | "Team Enu", 2335 | 1619888597.38893 2336 | ], 2337 | [ 2338 | "nooopster", 2339 | "CYberMouflons", 2340 | 1619888686.38937 2341 | ], 2342 | [ 2343 | "say-hellooo", 2344 | "pfpwnd", 2345 | 1619889371.66805 2346 | ], 2347 | [ 2348 | "say-hellooo", 2349 | "HusSec Unicorn", 2350 | 1619889828.79885 2351 | ], 2352 | [ 2353 | "nooopster", 2354 | "KITCTF", 2355 | 1619890210.5814 2356 | ], 2357 | [ 2358 | "say-hellooo", 2359 | "Yahmasta", 2360 | 1619890614.16949 2361 | ], 2362 | [ 2363 | "nooopster", 2364 | "Dragon Sector", 2365 | 1619890992.50893 2366 | ], 2367 | [ 2368 | "say-hellooo", 2369 | "KITCTF", 2370 | 1619891002.13791 2371 | ], 2372 | [ 2373 | "nooombers", 2374 | "GatorSheavesMutably", 2375 | 1619891350.36814 2376 | ], 2377 | [ 2378 | "nooombers", 2379 | "V&N", 2380 | 1619892111.61175 2381 | ], 2382 | [ 2383 | "nooopster", 2384 | "MoreBushSmokedWhackers", 2385 | 1619892196.98562 2386 | ], 2387 | [ 2388 | "nooopster", 2389 | "TheFlatNetworkSociety", 2390 | 1619892264.65655 2391 | ], 2392 | [ 2393 | "exploit-for-dummies", 2394 | "HITCON ⚔ Balsn", 2395 | 1619892351.73688 2396 | ], 2397 | [ 2398 | "say-hellooo", 2399 | "HumBeerHainBc", 2400 | 1619892620.65483 2401 | ], 2402 | [ 2403 | "mooosl", 2404 | "PPP", 2405 | 1619892977.34239 2406 | ], 2407 | [ 2408 | "say-hellooo", 2409 | "rock123", 2410 | 1619893142.92879 2411 | ], 2412 | [ 2413 | "rick", 2414 | "PFS", 2415 | 1619893219.86154 2416 | ], 2417 | [ 2418 | "nooopster", 2419 | "./Vespiary", 2420 | 1619894172.17956 2421 | ], 2422 | [ 2423 | "exploit-for-dummies", 2424 | "/bin/tw", 2425 | 1619894224.83648 2426 | ], 2427 | [ 2428 | "coooinbase-kernel", 2429 | "OSUSEC", 2430 | 1619894465.77821 2431 | ], 2432 | [ 2433 | "mooosl", 2434 | "Katzebin", 2435 | 1619894544.64559 2436 | ], 2437 | [ 2438 | "coooinbase", 2439 | "OSUSEC", 2440 | 1619895224.67709 2441 | ], 2442 | [ 2443 | "say-hellooo", 2444 | "Testausserveri", 2445 | 1619895239.54919 2446 | ], 2447 | [ 2448 | "nooombers", 2449 | "NorseCode", 2450 | 1619895410.46075 2451 | ], 2452 | [ 2453 | "rick", 2454 | "Katzebin", 2455 | 1619895611.64419 2456 | ], 2457 | [ 2458 | "say-hellooo", 2459 | "0xZ3R0", 2460 | 1619895767.33912 2461 | ], 2462 | [ 2463 | "say-hellooo", 2464 | "besoir", 2465 | 1619895795.97816 2466 | ], 2467 | [ 2468 | "say-hellooo", 2469 | "dczia", 2470 | 1619895955.9163 2471 | ], 2472 | [ 2473 | "say-hellooo", 2474 | "acdwas", 2475 | 1619896088.13289 2476 | ], 2477 | [ 2478 | "say-hellooo", 2479 | "HashSlingingHackers", 2480 | 1619896375.10522 2481 | ], 2482 | [ 2483 | "say-hellooo", 2484 | "MV9rwGOf08", 2485 | 1619896861.87284 2486 | ], 2487 | [ 2488 | "say-hellooo", 2489 | "Legacyy", 2490 | 1619896902.55859 2491 | ], 2492 | [ 2493 | "say-hellooo", 2494 | "N00Bv2.0", 2495 | 1619897067.59285 2496 | ], 2497 | [ 2498 | "mra", 2499 | "#71", 2500 | 1619897511.74376 2501 | ], 2502 | [ 2503 | "nooopster", 2504 | "KUDoS", 2505 | 1619897516.06823 2506 | ], 2507 | [ 2508 | "rick", 2509 | "mhackeroni", 2510 | 1619897758.12348 2511 | ], 2512 | [ 2513 | "say-hellooo", 2514 | "zeez", 2515 | 1619897788.90732 2516 | ], 2517 | [ 2518 | "mooosl", 2519 | "HITCON ⚔ Balsn", 2520 | 1619899315.52206 2521 | ], 2522 | [ 2523 | "say-hellooo", 2524 | "Zook", 2525 | 1619899934.34141 2526 | ], 2527 | [ 2528 | "say-hellooo", 2529 | "AstraCyber", 2530 | 1619900070.66466 2531 | ], 2532 | [ 2533 | "qoo-or-ooo", 2534 | "HITCON ⚔ Balsn", 2535 | 1619900753.85894 2536 | ], 2537 | [ 2538 | "rick", 2539 | "PTB_WTL", 2540 | 1619901032.23247 2541 | ], 2542 | [ 2543 | "say-hellooo", 2544 | "imesec1337", 2545 | 1619901158.09545 2546 | ], 2547 | [ 2548 | "say-hellooo", 2549 | "ctf_in_kz", 2550 | 1619901214.03259 2551 | ], 2552 | [ 2553 | "mama-a-fallen-lap-ray", 2554 | "PPP", 2555 | 1619901337.14613 2556 | ], 2557 | [ 2558 | "qoo-or-ooo", 2559 | "DiceGang", 2560 | 1619901382.75755 2561 | ], 2562 | [ 2563 | "say-hellooo", 2564 | "P@nc4ke3aterz", 2565 | 1619901805.08308 2566 | ], 2567 | [ 2568 | "qoo-or-ooo", 2569 | "NorseCode", 2570 | 1619902471.01714 2571 | ], 2572 | [ 2573 | "say-hellooo", 2574 | "Hazardous", 2575 | 1619902521.74527 2576 | ], 2577 | [ 2578 | "nooopster", 2579 | "OSUSEC", 2580 | 1619902708.18011 2581 | ], 2582 | [ 2583 | "qoo-or-ooo", 2584 | "Tea Deliverers", 2585 | 1619902725.40599 2586 | ], 2587 | [ 2588 | "rick", 2589 | "r3kapig", 2590 | 1619902740.4205 2591 | ], 2592 | [ 2593 | "coooinbase", 2594 | "PPP", 2595 | 1619902765.28598 2596 | ], 2597 | [ 2598 | "qoo-or-ooo", 2599 | "侍", 2600 | 1619903731.50236 2601 | ], 2602 | [ 2603 | "exploit-for-dummies", 2604 | "DiceGang", 2605 | 1619903842.25726 2606 | ], 2607 | [ 2608 | "rick", 2609 | "Organizers", 2610 | 1619903889.16401 2611 | ], 2612 | [ 2613 | "coooinbase-kernel", 2614 | "PPP", 2615 | 1619903930.96014 2616 | ], 2617 | [ 2618 | "say-hellooo", 2619 | "DangKids,GetOffMyLan!", 2620 | 1619904048.47576 2621 | ], 2622 | [ 2623 | "say-hellooo", 2624 | "455-7055", 2625 | 1619904236.40646 2626 | ], 2627 | [ 2628 | "coooinbase", 2629 | "0daysober", 2630 | 1619904241.73894 2631 | ], 2632 | [ 2633 | "say-hellooo", 2634 | "DC702", 2635 | 1619904276.13353 2636 | ], 2637 | [ 2638 | "qoo-or-ooo", 2639 | "PTB_WTL", 2640 | 1619904496.62276 2641 | ], 2642 | [ 2643 | "qoo-or-ooo", 2644 | "mhackeroni", 2645 | 1619904655.73994 2646 | ], 2647 | [ 2648 | "say-hellooo", 2649 | "OctaC0re", 2650 | 1619904742.11294 2651 | ], 2652 | [ 2653 | "qoo-or-ooo", 2654 | "Organizers", 2655 | 1619904762.49274 2656 | ], 2657 | [ 2658 | "exploit-for-dummies", 2659 | "PFS", 2660 | 1619904981.0135 2661 | ], 2662 | [ 2663 | "nooopster", 2664 | "srdnlen", 2665 | 1619905933.56692 2666 | ], 2667 | [ 2668 | "say-hellooo", 2669 | "tirefire", 2670 | 1619906057.48393 2671 | ], 2672 | [ 2673 | "qoo-or-ooo", 2674 | "SuperBlue", 2675 | 1619906279.82288 2676 | ], 2677 | [ 2678 | "say-hellooo", 2679 | "L:BCC1337", 2680 | 1619906442.07769 2681 | ], 2682 | [ 2683 | "qoo-or-ooo", 2684 | "STT", 2685 | 1619907034.93205 2686 | ], 2687 | [ 2688 | "qoo-or-ooo", 2689 | "RPISEC", 2690 | 1619907439.88734 2691 | ], 2692 | [ 2693 | "qoo-or-ooo", 2694 | "PPP", 2695 | 1619907785.21746 2696 | ], 2697 | [ 2698 | "rick", 2699 | "PPP", 2700 | 1619908150.74563 2701 | ], 2702 | [ 2703 | "nooombers", 2704 | "rhackomandati", 2705 | 1619908165.78622 2706 | ], 2707 | [ 2708 | "qoo-or-ooo", 2709 | "MapleBacon", 2710 | 1619908538.9117 2711 | ], 2712 | [ 2713 | "say-hellooo", 2714 | "SelSec", 2715 | 1619908653.0409 2716 | ], 2717 | [ 2718 | "coooinbase", 2719 | "NorseCode", 2720 | 1619908969.45463 2721 | ], 2722 | [ 2723 | "coooinbase-kernel", 2724 | "0daysober", 2725 | 1619908996.68541 2726 | ], 2727 | [ 2728 | "say-hellooo", 2729 | "sarma", 2730 | 1619909049.77862 2731 | ], 2732 | [ 2733 | "say-hellooo", 2734 | "trøjan_h0rs3s", 2735 | 1619909140.06632 2736 | ], 2737 | [ 2738 | "mra", 2739 | "shablul", 2740 | 1619909292.96555 2741 | ], 2742 | [ 2743 | "rick", 2744 | "Tea Deliverers", 2745 | 1619909395.14731 2746 | ], 2747 | [ 2748 | "say-hellooo", 2749 | "R3MAN3", 2750 | 1619909702.31542 2751 | ], 2752 | [ 2753 | "say-hellooo", 2754 | "./RED", 2755 | 1619909706.05479 2756 | ], 2757 | [ 2758 | "say-hellooo", 2759 | "mm", 2760 | 1619909974.71053 2761 | ], 2762 | [ 2763 | "say-hellooo", 2764 | "deerleader", 2765 | 1619910024.58453 2766 | ], 2767 | [ 2768 | "say-hellooo", 2769 | "N33rdZ", 2770 | 1619910042.80242 2771 | ], 2772 | [ 2773 | "mooosl", 2774 | "StarBugs", 2775 | 1619910347.1008 2776 | ], 2777 | [ 2778 | "nooombers", 2779 | "Tasteless", 2780 | 1619910358.81906 2781 | ], 2782 | [ 2783 | "say-hellooo", 2784 | "5866d102-627d-401f-96f5-1a9753851683", 2785 | 1619910474.39191 2786 | ], 2787 | [ 2788 | "say-hellooo", 2789 | "UAC", 2790 | 1619910610.08263 2791 | ], 2792 | [ 2793 | "say-hellooo", 2794 | "Chaocipher", 2795 | 1619910753.08672 2796 | ], 2797 | [ 2798 | "nooopster", 2799 | "Team-0x7", 2800 | 1619911164.4442 2801 | ], 2802 | [ 2803 | "say-hellooo", 2804 | "Carpedien", 2805 | 1619911661.2551 2806 | ], 2807 | [ 2808 | "qoo-or-ooo", 2809 | "GatorSheavesMutably", 2810 | 1619911677.82702 2811 | ], 2812 | [ 2813 | "nooombers", 2814 | "SaudiPwners", 2815 | 1619911742.89025 2816 | ], 2817 | [ 2818 | "say-hellooo", 2819 | "shablul", 2820 | 1619911872.79829 2821 | ], 2822 | [ 2823 | "say-hellooo", 2824 | "Ten*48", 2825 | 1619911996.1598 2826 | ], 2827 | [ 2828 | "say-hellooo", 2829 | "EvilMuffinHa", 2830 | 1619912029.36741 2831 | ], 2832 | [ 2833 | "nooombers", 2834 | "PPP", 2835 | 1619913274.51758 2836 | ], 2837 | [ 2838 | "say-hellooo", 2839 | "bingus", 2840 | 1619913359.51243 2841 | ], 2842 | [ 2843 | "say-hellooo", 2844 | "ThereIsNoInfoRoma", 2845 | 1619913373.63337 2846 | ], 2847 | [ 2848 | "qoo-or-ooo", 2849 | "rhackomandati", 2850 | 1619913606.44486 2851 | ], 2852 | [ 2853 | "mra", 2854 | "WashedUpResearchers", 2855 | 1619913936.40225 2856 | ], 2857 | [ 2858 | "nooopster", 2859 | "zwnj", 2860 | 1619914242.8685 2861 | ], 2862 | [ 2863 | "qoo-or-ooo", 2864 | "OSUSEC", 2865 | 1619914408.06831 2866 | ], 2867 | [ 2868 | "rick", 2869 | "c0r3dump", 2870 | 1619915050.30572 2871 | ], 2872 | [ 2873 | "rick", 2874 | "NorseCode", 2875 | 1619915181.23197 2876 | ], 2877 | [ 2878 | "mra", 2879 | "./Vespiary", 2880 | 1619915424.75468 2881 | ], 2882 | [ 2883 | "nooombers", 2884 | "PFS", 2885 | 1619915520.12892 2886 | ], 2887 | [ 2888 | "say-hellooo", 2889 | "{crypto_attackers}", 2890 | 1619916076.98811 2891 | ], 2892 | [ 2893 | "qoo-or-ooo", 2894 | "debug4RMY", 2895 | 1619916107.68817 2896 | ], 2897 | [ 2898 | "say-hellooo", 2899 | "nimdok", 2900 | 1619916295.44255 2901 | ], 2902 | [ 2903 | "nooombers", 2904 | "Never Stop Exploiting", 2905 | 1619916566.46326 2906 | ], 2907 | [ 2908 | "say-hellooo", 2909 | "gruf", 2910 | 1619916660.14846 2911 | ], 2912 | [ 2913 | "say-hellooo", 2914 | "DasRealBert", 2915 | 1619916688.06295 2916 | ], 2917 | [ 2918 | "mooosl", 2919 | "⚔️TSJ⚔️", 2920 | 1619917002.07784 2921 | ], 2922 | [ 2923 | "mra", 2924 | "GatorSheavesMutably", 2925 | 1619917120.557 2926 | ], 2927 | [ 2928 | "coooinbase", 2929 | "mhackeroni", 2930 | 1619917203.56778 2931 | ], 2932 | [ 2933 | "say-hellooo", 2934 | "Pwnie Island", 2935 | 1619917299.6114 2936 | ], 2937 | [ 2938 | "coooinbase", 2939 | "StarBugs", 2940 | 1619917398.13912 2941 | ], 2942 | [ 2943 | "mra", 2944 | "noraneco", 2945 | 1619917658.58526 2946 | ], 2947 | [ 2948 | "qoo-or-ooo", 2949 | "Katzebin", 2950 | 1619917692.31451 2951 | ], 2952 | [ 2953 | "nooopster", 2954 | "YOKARO-MON", 2955 | 1619918060.92494 2956 | ], 2957 | [ 2958 | "say-hellooo", 2959 | "ayelone1", 2960 | 1619919043.52727 2961 | ], 2962 | [ 2963 | "qoo-or-ooo", 2964 | "r3kapig", 2965 | 1619919091.89564 2966 | ], 2967 | [ 2968 | "rick", 2969 | "SuperBlue", 2970 | 1619919711.35142 2971 | ], 2972 | [ 2973 | "nooopster", 2974 | "ELT", 2975 | 1619920064.84227 2976 | ], 2977 | [ 2978 | "say-hellooo", 2979 | "tHe_pLebS", 2980 | 1619920944.17686 2981 | ], 2982 | [ 2983 | "say-hellooo", 2984 | "newbie_team", 2985 | 1619921363.2485 2986 | ], 2987 | [ 2988 | "say-hellooo", 2989 | "c00c00r00c00", 2990 | 1619921375.66322 2991 | ], 2992 | [ 2993 | "coooinbase-kernel", 2994 | "StarBugs", 2995 | 1619921641.04016 2996 | ], 2997 | [ 2998 | "exploit-for-dummies", 2999 | "Tasteless", 3000 | 1619921841.89133 3001 | ], 3002 | [ 3003 | "qoo-or-ooo", 3004 | "/bin/tw", 3005 | 1619922001.58321 3006 | ], 3007 | [ 3008 | "say-hellooo", 3009 | "JustAdam", 3010 | 1619922331.96603 3011 | ], 3012 | [ 3013 | "back-to-qoo", 3014 | "DiceGang", 3015 | 1619922350.38668 3016 | ], 3017 | [ 3018 | "back-to-qoo", 3019 | "r3kapig", 3020 | 1619922447.83191 3021 | ], 3022 | [ 3023 | "exploit-for-dummies", 3024 | "koreanbadass", 3025 | 1619922450.93525 3026 | ], 3027 | [ 3028 | "qoo-or-ooo", 3029 | "zwnj", 3030 | 1619922602.81323 3031 | ], 3032 | [ 3033 | "say-hellooo", 3034 | "r00ts", 3035 | 1619922871.1976 3036 | ], 3037 | [ 3038 | "nooopster", 3039 | "GatorSheavesMutably", 3040 | 1619922928.43786 3041 | ], 3042 | [ 3043 | "nooopster", 3044 | "ids-TeamCC", 3045 | 1619923325.99431 3046 | ], 3047 | [ 3048 | "mra", 3049 | "Merak", 3050 | 1619923473.46493 3051 | ], 3052 | [ 3053 | "coooinbase", 3054 | "PFS", 3055 | 1619923616.36925 3056 | ], 3057 | [ 3058 | "nooopster", 3059 | "HuntsvilleTechSupport", 3060 | 1619923829.54419 3061 | ], 3062 | [ 3063 | "nooombers", 3064 | "ids-TeamCC", 3065 | 1619923883.68824 3066 | ], 3067 | [ 3068 | "back-to-qoo", 3069 | "zwnj", 3070 | 1619923935.50107 3071 | ], 3072 | [ 3073 | "back-to-qoo", 3074 | "Katzebin", 3075 | 1619924231.01752 3076 | ], 3077 | [ 3078 | "say-hellooo", 3079 | "Merak", 3080 | 1619924473.16978 3081 | ], 3082 | [ 3083 | "mra", 3084 | "Mayas", 3085 | 1619924855.58637 3086 | ], 3087 | [ 3088 | "exploit-for-dummies", 3089 | "Shellphish", 3090 | 1619924862.72884 3091 | ], 3092 | [ 3093 | "rick", 3094 | "Nu1L", 3095 | 1619925101.43057 3096 | ], 3097 | [ 3098 | "mra", 3099 | "I'm_GGonna", 3100 | 1619925308.32705 3101 | ], 3102 | [ 3103 | "qoo-or-ooo", 3104 | "Jacobs", 3105 | 1619925646.64287 3106 | ], 3107 | [ 3108 | "segnalooo", 3109 | "PPP", 3110 | 1619925683.68091 3111 | ], 3112 | [ 3113 | "qoo-or-ooo", 3114 | "StarBugs", 3115 | 1619925707.64277 3116 | ], 3117 | [ 3118 | "say-hellooo", 3119 | "noraneco", 3120 | 1619925924.59095 3121 | ], 3122 | [ 3123 | "back-to-qoo", 3124 | "Tea Deliverers", 3125 | 1619926192.00315 3126 | ], 3127 | [ 3128 | "qoo-or-ooo", 3129 | "SaudiPwners", 3130 | 1619926365.66525 3131 | ], 3132 | [ 3133 | "say-hellooo", 3134 | "5280", 3135 | 1619926555.948 3136 | ], 3137 | [ 3138 | "rick", 3139 | "K-Students", 3140 | 1619926763.38451 3141 | ], 3142 | [ 3143 | "coooinbase", 3144 | "RPISEC", 3145 | 1619927379.01674 3146 | ], 3147 | [ 3148 | "nooombers", 3149 | "null2root", 3150 | 1619928063.52266 3151 | ], 3152 | [ 3153 | "say-hellooo", 3154 | "DarkArmy", 3155 | 1619928199.42051 3156 | ], 3157 | [ 3158 | "rick", 3159 | "HITCON ⚔ Balsn", 3160 | 1619928680.29663 3161 | ], 3162 | [ 3163 | "back-to-qoo", 3164 | "PPP", 3165 | 1619928782.30184 3166 | ], 3167 | [ 3168 | "rick", 3169 | "StarBugs", 3170 | 1619929124.51829 3171 | ], 3172 | [ 3173 | "qoo-or-ooo", 3174 | "Tea MSG", 3175 | 1619929675.13681 3176 | ], 3177 | [ 3178 | "mra", 3179 | "tiny baby", 3180 | 1619929716.12315 3181 | ], 3182 | [ 3183 | "nooombers", 3184 | "zwnj", 3185 | 1619930418.98595 3186 | ], 3187 | [ 3188 | "threefactooorx", 3189 | "⚔️TSJ⚔️", 3190 | 1619930485.31973 3191 | ], 3192 | [ 3193 | "coooinbase-kernel", 3194 | "PFS", 3195 | 1619930573.67777 3196 | ], 3197 | [ 3198 | "qoo-or-ooo", 3199 | "Dumb_bots", 3200 | 1619930750.03643 3201 | ], 3202 | [ 3203 | "qoo-or-ooo", 3204 | "Tasteless", 3205 | 1619930948.54513 3206 | ], 3207 | [ 3208 | "qoo-or-ooo", 3209 | "Shellphish", 3210 | 1619930998.39557 3211 | ], 3212 | [ 3213 | "back-to-qoo", 3214 | "Tasteless", 3215 | 1619931358.87379 3216 | ], 3217 | [ 3218 | "back-to-qoo", 3219 | "SuperBlue", 3220 | 1619931437.17657 3221 | ], 3222 | [ 3223 | "qoo-or-ooo", 3224 | "TheAdditionalPayphones", 3225 | 1619931522.35553 3226 | ], 3227 | [ 3228 | "mra", 3229 | "xtal", 3230 | 1619931702.15141 3231 | ], 3232 | [ 3233 | "mooosl", 3234 | "Nu1L", 3235 | 1619931866.79281 3236 | ], 3237 | [ 3238 | "threefactooorx", 3239 | "DiceGang", 3240 | 1619932270.43919 3241 | ], 3242 | [ 3243 | "say-hellooo", 3244 | "n0n$la$", 3245 | 1619932290.83492 3246 | ], 3247 | [ 3248 | "baby-a-fallen-lap-ray", 3249 | "侍", 3250 | 1619932294.97453 3251 | ], 3252 | [ 3253 | "back-to-qoo", 3254 | "/bin/tw", 3255 | 1619932467.10144 3256 | ], 3257 | [ 3258 | "qoo-or-ooo", 3259 | "Nu1L", 3260 | 1619932502.71589 3261 | ], 3262 | [ 3263 | "smart-cryptooo", 3264 | "HITCON ⚔ Balsn", 3265 | 1619932835.82964 3266 | ], 3267 | [ 3268 | "back-to-qoo", 3269 | "MapleBacon", 3270 | 1619933058.26265 3271 | ], 3272 | [ 3273 | "back-to-qoo", 3274 | "Shellphish", 3275 | 1619933188.55743 3276 | ], 3277 | [ 3278 | "coooinbase-kernel", 3279 | "RPISEC", 3280 | 1619933355.59195 3281 | ], 3282 | [ 3283 | "qoo-or-ooo", 3284 | "Mayas", 3285 | 1619933376.23507 3286 | ], 3287 | [ 3288 | "threefactooorx", 3289 | "r3kapig", 3290 | 1619933415.53888 3291 | ], 3292 | [ 3293 | "say-hellooo", 3294 | "JustNotBob", 3295 | 1619933529.29034 3296 | ], 3297 | [ 3298 | "threefactooorx", 3299 | "uuunderflow", 3300 | 1619933564.30541 3301 | ], 3302 | [ 3303 | "say-hellooo", 3304 | "5drone", 3305 | 1619933952.64753 3306 | ], 3307 | [ 3308 | "back-to-qoo", 3309 | "Jacobs", 3310 | 1619934372.15386 3311 | ], 3312 | [ 3313 | "qoo-or-ooo", 3314 | "Ten*48", 3315 | 1619934660.18844 3316 | ], 3317 | [ 3318 | "nooopster", 3319 | "Vidar-Team", 3320 | 1619935025.80633 3321 | ], 3322 | [ 3323 | "threefactooorx", 3324 | "/bin/tw", 3325 | 1619935041.54021 3326 | ], 3327 | [ 3328 | "back-to-qoo", 3329 | "GatorSheavesMutably", 3330 | 1619935088.66276 3331 | ], 3332 | [ 3333 | "mooosl", 3334 | "r3kapig", 3335 | 1619935158.8198 3336 | ], 3337 | [ 3338 | "nooopster", 3339 | "MidwestMinistryofMachines", 3340 | 1619935402.5881 3341 | ], 3342 | [ 3343 | "coooinbase", 3344 | "SuperBlue", 3345 | 1619935404.09551 3346 | ], 3347 | [ 3348 | "rick", 3349 | "Shellphish", 3350 | 1619935427.52328 3351 | ], 3352 | [ 3353 | "say-hellooo", 3354 | "Mr_Lucifer", 3355 | 1619935853.34592 3356 | ], 3357 | [ 3358 | "threefactooorx", 3359 | "Katzebin", 3360 | 1619935901.52984 3361 | ], 3362 | [ 3363 | "say-hellooo", 3364 | "Poltergeist", 3365 | 1619936155.70799 3366 | ], 3367 | [ 3368 | "back-to-qoo", 3369 | "StarBugs", 3370 | 1619936418.9332 3371 | ], 3372 | [ 3373 | "qoo-or-ooo", 3374 | "K-Students", 3375 | 1619936492.10022 3376 | ], 3377 | [ 3378 | "qoo-or-ooo", 3379 | "⚔️TSJ⚔️", 3380 | 1619936721.9028 3381 | ], 3382 | [ 3383 | "qoo-or-ooo", 3384 | "koreanbadass", 3385 | 1619936976.04644 3386 | ], 3387 | [ 3388 | "segnalooo", 3389 | "Dragon Sector", 3390 | 1619937395.29288 3391 | ], 3392 | [ 3393 | "threefactooorx", 3394 | "Tea MSG", 3395 | 1619937659.89321 3396 | ], 3397 | [ 3398 | "coooinbase", 3399 | "Katzebin", 3400 | 1619937804.93765 3401 | ], 3402 | [ 3403 | "nooopster", 3404 | "zeez", 3405 | 1619937841.75439 3406 | ], 3407 | [ 3408 | "threefactooorx", 3409 | "Nu1L", 3410 | 1619938024.50557 3411 | ], 3412 | [ 3413 | "back-to-qoo", 3414 | "koreanbadass", 3415 | 1619938511.12494 3416 | ], 3417 | [ 3418 | "baby-a-fallen-lap-ray", 3419 | "Tea Deliverers", 3420 | 1619938749.29714 3421 | ], 3422 | [ 3423 | "threefactooorx", 3424 | "StarBugs", 3425 | 1619938900.28619 3426 | ], 3427 | [ 3428 | "nooombers", 3429 | "0daysober", 3430 | 1619938907.17622 3431 | ], 3432 | [ 3433 | "mama-a-fallen-lap-ray", 3434 | "Tea Deliverers", 3435 | 1619938908.68954 3436 | ], 3437 | [ 3438 | "coooinbase", 3439 | "Shellphish", 3440 | 1619939015.45 3441 | ], 3442 | [ 3443 | "coooinbase-kernel", 3444 | "SuperBlue", 3445 | 1619939031.34675 3446 | ], 3447 | [ 3448 | "threefactooorx", 3449 | "Tea Deliverers", 3450 | 1619939764.3336 3451 | ], 3452 | [ 3453 | "back-to-qoo", 3454 | "K-Students", 3455 | 1619939856.53447 3456 | ], 3457 | [ 3458 | "coooinbase-kernel", 3459 | "NorseCode", 3460 | 1619940425.76151 3461 | ], 3462 | [ 3463 | "coooinbase", 3464 | "Nu1L", 3465 | 1619940460.92737 3466 | ], 3467 | [ 3468 | "pooow-buddy", 3469 | "SuperBlue", 3470 | 1619940549.05848 3471 | ], 3472 | [ 3473 | "exploit-for-dummies", 3474 | "MoreBushSmokedWhackers", 3475 | 1619941063.8092 3476 | ], 3477 | [ 3478 | "back-to-qoo", 3479 | "HITCON ⚔ Balsn", 3480 | 1619941100.76966 3481 | ], 3482 | [ 3483 | "threefactooorx", 3484 | "MoreBushSmokedWhackers", 3485 | 1619941112.92943 3486 | ], 3487 | [ 3488 | "threefactooorx", 3489 | "koreanbadass", 3490 | 1619941459.70251 3491 | ], 3492 | [ 3493 | "nooombers", 3494 | "Organizers", 3495 | 1619941495.76241 3496 | ], 3497 | [ 3498 | "mra", 3499 | "KUDoS", 3500 | 1619941550.62693 3501 | ], 3502 | [ 3503 | "threefactooorx", 3504 | "ELT", 3505 | 1619941586.12605 3506 | ], 3507 | [ 3508 | "threefactooorx", 3509 | "RPISEC", 3510 | 1619941736.38474 3511 | ], 3512 | [ 3513 | "say-hellooo", 3514 | "oscuro6879", 3515 | 1619941942.76826 3516 | ], 3517 | [ 3518 | "qoo-or-ooo", 3519 | "null2root", 3520 | 1619942540.6904 3521 | ], 3522 | [ 3523 | "back-to-qoo", 3524 | "Nu1L", 3525 | 1619942753.2476 3526 | ], 3527 | [ 3528 | "pooow-buddy", 3529 | "StarBugs", 3530 | 1619942941.08601 3531 | ], 3532 | [ 3533 | "qoo-or-ooo", 3534 | "uuunderflow", 3535 | 1619942990.98956 3536 | ], 3537 | [ 3538 | "qoo-or-ooo", 3539 | "C4T_BuT_S4D", 3540 | 1619943220.4337 3541 | ], 3542 | [ 3543 | "say-hellooo", 3544 | "SudoWoodoDoasWoodo", 3545 | 1619943339.09665 3546 | ], 3547 | [ 3548 | "threefactooorx", 3549 | "NorseCode", 3550 | 1619943459.03606 3551 | ], 3552 | [ 3553 | "mra", 3554 | "HackPack", 3555 | 1619943825.35196 3556 | ], 3557 | [ 3558 | "back-to-qoo", 3559 | "Organizers", 3560 | 1619944157.49821 3561 | ], 3562 | [ 3563 | "back-to-qoo", 3564 | "⚔️TSJ⚔️", 3565 | 1619944265.09731 3566 | ], 3567 | [ 3568 | "threefactooorx", 3569 | "K-Students", 3570 | 1619944359.93789 3571 | ], 3572 | [ 3573 | "nooopster", 3574 | "Keyboard Monkeys", 3575 | 1619944563.17113 3576 | ], 3577 | [ 3578 | "say-hellooo", 3579 | "VXRL", 3580 | 1619944601.76514 3581 | ], 3582 | [ 3583 | "pooow-buddy", 3584 | "Organizers", 3585 | 1619945317.56026 3586 | ], 3587 | [ 3588 | "back-to-qoo", 3589 | "侍", 3590 | 1619945438.07594 3591 | ], 3592 | [ 3593 | "pooow-buddy", 3594 | "r3kapig", 3595 | 1619945464.29025 3596 | ], 3597 | [ 3598 | "back-to-qoo", 3599 | "C4T_BuT_S4D", 3600 | 1619945656.20569 3601 | ], 3602 | [ 3603 | "nooopster", 3604 | "Nepnep", 3605 | 1619946034.76166 3606 | ], 3607 | [ 3608 | "say-hellooo", 3609 | "0x401", 3610 | 1619946174.04923 3611 | ], 3612 | [ 3613 | "threefactooorx", 3614 | "Never Stop Exploiting", 3615 | 1619946273.19214 3616 | ], 3617 | [ 3618 | "exploit-for-dummies", 3619 | "PTB_WTL", 3620 | 1619946294.51882 3621 | ], 3622 | [ 3623 | "threefactooorx", 3624 | "HITCON ⚔ Balsn", 3625 | 1619946304.27096 3626 | ], 3627 | [ 3628 | "rick", 3629 | "DiceGang", 3630 | 1619946486.95403 3631 | ], 3632 | [ 3633 | "threefactooorx", 3634 | "侍", 3635 | 1619946644.67868 3636 | ], 3637 | [ 3638 | "baby-a-fallen-lap-ray", 3639 | "Shellphish", 3640 | 1619946672.99948 3641 | ], 3642 | [ 3643 | "say-hellooo", 3644 | "Shell_hunters", 3645 | 1619946924.98457 3646 | ], 3647 | [ 3648 | "mama-a-fallen-lap-ray", 3649 | "Shellphish", 3650 | 1619946937.06301 3651 | ], 3652 | [ 3653 | "pooow-buddy", 3654 | "Katzebin", 3655 | 1619946991.60079 3656 | ], 3657 | [ 3658 | "mra", 3659 | "RobotMafia", 3660 | 1619947165.72386 3661 | ], 3662 | [ 3663 | "say-hellooo", 3664 | "vertez", 3665 | 1619947187.25628 3666 | ], 3667 | [ 3668 | "pooow-buddy", 3669 | "Nu1L", 3670 | 1619947254.84562 3671 | ], 3672 | [ 3673 | "threefactooorx", 3674 | "SuperBlue", 3675 | 1619947399.28538 3676 | ], 3677 | [ 3678 | "pooow-buddy", 3679 | "uuunderflow", 3680 | 1619947882.51558 3681 | ], 3682 | [ 3683 | "mama-a-fallen-lap-ray", 3684 | "StarBugs", 3685 | 1619948200.88253 3686 | ], 3687 | [ 3688 | "nooombers", 3689 | "hxp", 3690 | 1619948298.2596 3691 | ], 3692 | [ 3693 | "say-hellooo", 3694 | "hshui", 3695 | 1619948324.96565 3696 | ], 3697 | [ 3698 | "rick", 3699 | "rhackomandati", 3700 | 1619948395.95424 3701 | ], 3702 | [ 3703 | "coooinbase-kernel", 3704 | "Shellphish", 3705 | 1619948442.39145 3706 | ], 3707 | [ 3708 | "coooinbase-kernel", 3709 | "Katzebin", 3710 | 1619948457.41203 3711 | ], 3712 | [ 3713 | "qoo-or-ooo", 3714 | "0daysober", 3715 | 1619948669.64372 3716 | ], 3717 | [ 3718 | "pooow-buddy", 3719 | "Tea Deliverers", 3720 | 1619948835.94868 3721 | ], 3722 | [ 3723 | "baby-a-fallen-lap-ray", 3724 | "HITCON ⚔ Balsn", 3725 | 1619949006.12607 3726 | ], 3727 | [ 3728 | "nooopster", 3729 | "Bawolff", 3730 | 1619949194.86814 3731 | ], 3732 | [ 3733 | "back-to-qoo", 3734 | "0daysober", 3735 | 1619949229.05312 3736 | ], 3737 | [ 3738 | "threefactooorx", 3739 | "Team Enu", 3740 | 1619949261.6437 3741 | ], 3742 | [ 3743 | "baby-a-fallen-lap-ray", 3744 | "StarBugs", 3745 | 1619949268.1089 3746 | ], 3747 | [ 3748 | "mra", 3749 | "V&N", 3750 | 1619949711.94062 3751 | ], 3752 | [ 3753 | "mama-a-fallen-lap-ray", 3754 | "HITCON ⚔ Balsn", 3755 | 1619949887.21494 3756 | ], 3757 | [ 3758 | "segnalooo", 3759 | "DiceGang", 3760 | 1619950068.54012 3761 | ], 3762 | [ 3763 | "nooopster", 3764 | "Re1n3r!", 3765 | 1619950119.11047 3766 | ], 3767 | [ 3768 | "threefactooorx", 3769 | "PFS", 3770 | 1619950155.10753 3771 | ], 3772 | [ 3773 | "nooopster", 3774 | "bi0s", 3775 | 1619950305.10221 3776 | ], 3777 | [ 3778 | "mooosl", 3779 | "PFS", 3780 | 1619950394.86525 3781 | ], 3782 | [ 3783 | "say-hellooo", 3784 | "L0remIpsec", 3785 | 1619950573.32807 3786 | ], 3787 | [ 3788 | "rick", 3789 | "C4T_BuT_S4D", 3790 | 1619950857.52358 3791 | ], 3792 | [ 3793 | "pooow-buddy", 3794 | "K-Students", 3795 | 1619950992.61199 3796 | ], 3797 | [ 3798 | "qoo-or-ooo", 3799 | "ids-TeamCC", 3800 | 1619951218.21306 3801 | ], 3802 | [ 3803 | "nooopster", 3804 | "#71", 3805 | 1619951239.74816 3806 | ], 3807 | [ 3808 | "back-to-qoo", 3809 | "NorseCode", 3810 | 1619951249.21966 3811 | ], 3812 | [ 3813 | "back-to-qoo", 3814 | "rhackomandati", 3815 | 1619951533.11628 3816 | ], 3817 | [ 3818 | "rick", 3819 | "MoreBushSmokedWhackers", 3820 | 1619951630.59225 3821 | ], 3822 | [ 3823 | "coooinbase-kernel", 3824 | "Nu1L", 3825 | 1619952116.75594 3826 | ], 3827 | [ 3828 | "coooinbase", 3829 | "Organizers", 3830 | 1619952178.72278 3831 | ], 3832 | [ 3833 | "coooinbase-kernel", 3834 | "mhackeroni", 3835 | 1619952662.57046 3836 | ], 3837 | [ 3838 | "pooow-buddy", 3839 | "0daysober", 3840 | 1619952815.26909 3841 | ], 3842 | [ 3843 | "threefactooorx", 3844 | "PTB_WTL", 3845 | 1619952826.2448 3846 | ], 3847 | [ 3848 | "nooombers", 3849 | "c0r3dump", 3850 | 1619953032.86683 3851 | ], 3852 | [ 3853 | "mama-a-fallen-lap-ray", 3854 | "侍", 3855 | 1619953122.48641 3856 | ], 3857 | [ 3858 | "tiamat", 3859 | "Katzebin", 3860 | 1619953435.04747 3861 | ], 3862 | [ 3863 | "back-to-qoo", 3864 | "uuunderflow", 3865 | 1619953549.31071 3866 | ], 3867 | [ 3868 | "back-to-qoo", 3869 | "Ten*48", 3870 | 1619953677.91507 3871 | ], 3872 | [ 3873 | "pooow-buddy", 3874 | "⚔️TSJ⚔️", 3875 | 1619953972.33663 3876 | ], 3877 | [ 3878 | "qoo-or-ooo", 3879 | "Never Stop Exploiting", 3880 | 1619954467.80019 3881 | ], 3882 | [ 3883 | "threefactooorx", 3884 | "C4T_BuT_S4D", 3885 | 1619954510.82122 3886 | ], 3887 | [ 3888 | "pooow-buddy", 3889 | "mhackeroni", 3890 | 1619954714.02413 3891 | ], 3892 | [ 3893 | "pooow-buddy", 3894 | "HITCON ⚔ Balsn", 3895 | 1619954939.74913 3896 | ], 3897 | [ 3898 | "mooosl", 3899 | "uuunderflow", 3900 | 1619955107.09166 3901 | ], 3902 | [ 3903 | "tiamat", 3904 | "r3kapig", 3905 | 1619955333.96224 3906 | ], 3907 | [ 3908 | "pooow-buddy", 3909 | "Shellphish", 3910 | 1619955394.53627 3911 | ], 3912 | [ 3913 | "coooinbase-kernel", 3914 | "Organizers", 3915 | 1619955438.33864 3916 | ], 3917 | [ 3918 | "back-to-qoo", 3919 | "STT", 3920 | 1619955647.40312 3921 | ], 3922 | [ 3923 | "baby-a-fallen-lap-ray", 3924 | "PTB_WTL", 3925 | 1619955762.17487 3926 | ], 3927 | [ 3928 | "segnalooo", 3929 | "uuunderflow", 3930 | 1619955940.04192 3931 | ], 3932 | [ 3933 | "threefactooorx", 3934 | "./Vespiary", 3935 | 1619956044.78742 3936 | ], 3937 | [ 3938 | "pooow-buddy", 3939 | "NorseCode", 3940 | 1619956191.84677 3941 | ], 3942 | [ 3943 | "coooinbase", 3944 | "koreanbadass", 3945 | 1619956328.81522 3946 | ], 3947 | [ 3948 | "threefactooorx", 3949 | "Tasteless", 3950 | 1619957108.96461 3951 | ], 3952 | [ 3953 | "mama-a-fallen-lap-ray", 3954 | "PTB_WTL", 3955 | 1619957205.77106 3956 | ], 3957 | [ 3958 | "threefactooorx", 3959 | "Shellphish", 3960 | 1619957241.38308 3961 | ], 3962 | [ 3963 | "mooosl", 3964 | "noproplem", 3965 | 1619957434.13346 3966 | ], 3967 | [ 3968 | "back-to-qoo", 3969 | "Tea MSG", 3970 | 1619957671.29539 3971 | ], 3972 | [ 3973 | "say-hellooo", 3974 | "Lil_Nix", 3975 | 1619957804.17801 3976 | ], 3977 | [ 3978 | "say-hellooo", 3979 | "2honrr", 3980 | 1619957916.10882 3981 | ], 3982 | [ 3983 | "pooow-buddy", 3984 | "C4T_BuT_S4D", 3985 | 1619958028.31153 3986 | ], 3987 | [ 3988 | "threefactooorx", 3989 | "rhackomandati", 3990 | 1619958105.18251 3991 | ], 3992 | [ 3993 | "coooinbase", 3994 | "PTB_WTL", 3995 | 1619958116.85146 3996 | ], 3997 | [ 3998 | "coooinbase", 3999 | "Tea Deliverers", 4000 | 1619958322.39209 4001 | ], 4002 | [ 4003 | "pooow-buddy", 4004 | "PPP", 4005 | 1619958346.48791 4006 | ], 4007 | [ 4008 | "mra", 4009 | "0xbadf00d", 4010 | 1619959103.49711 4011 | ], 4012 | [ 4013 | "pooow-buddy", 4014 | "TheFlatNetworkSociety", 4015 | 1619959125.07096 4016 | ], 4017 | [ 4018 | "pooow-buddy", 4019 | "koreanbadass", 4020 | 1619959135.68636 4021 | ], 4022 | [ 4023 | "exploit-for-dummies", 4024 | "C4T_BuT_S4D", 4025 | 1619959302.81007 4026 | ], 4027 | [ 4028 | "nooopster", 4029 | "tiny baby", 4030 | 1619959311.99411 4031 | ], 4032 | [ 4033 | "threefactooorx", 4034 | "0daysober", 4035 | 1619959360.21343 4036 | ], 4037 | [ 4038 | "pooow-buddy", 4039 | "noproplem", 4040 | 1619959527.28939 4041 | ], 4042 | [ 4043 | "mra", 4044 | "SPRUSH", 4045 | 1619959532.28656 4046 | ], 4047 | [ 4048 | "say-hellooo", 4049 | "0xbadf00d", 4050 | 1619959533.50803 4051 | ], 4052 | [ 4053 | "coooinbase", 4054 | "DiceGang", 4055 | 1619959941.56332 4056 | ], 4057 | [ 4058 | "back-to-qoo", 4059 | "RPISEC", 4060 | 1619960058.65921 4061 | ], 4062 | [ 4063 | "say-hellooo", 4064 | "AzureDragons", 4065 | 1619960079.45669 4066 | ], 4067 | [ 4068 | "pooow-buddy", 4069 | "侍", 4070 | 1619960496.89894 4071 | ], 4072 | [ 4073 | "mooosl", 4074 | "h4tum", 4075 | 1619960534.88952 4076 | ], 4077 | [ 4078 | "coooinbase", 4079 | "Sauercloud", 4080 | 1619960736.02287 4081 | ], 4082 | [ 4083 | "coooinbase-kernel", 4084 | "Tea Deliverers", 4085 | 1619960960.0654 4086 | ], 4087 | [ 4088 | "pooow-buddy", 4089 | "PTB_WTL", 4090 | 1619961070.34597 4091 | ], 4092 | [ 4093 | "coooinbase-kernel", 4094 | "Sauercloud", 4095 | 1619961075.08646 4096 | ], 4097 | [ 4098 | "threefactooorx", 4099 | "mhackeroni", 4100 | 1619961251.53928 4101 | ], 4102 | [ 4103 | "exploit-for-dummies", 4104 | "NorseCode", 4105 | 1619961381.92677 4106 | ], 4107 | [ 4108 | "pooow-buddy", 4109 | "Dragon Sector", 4110 | 1619961672.56014 4111 | ], 4112 | [ 4113 | "coooinbase-kernel", 4114 | "koreanbadass", 4115 | 1619961757.99818 4116 | ], 4117 | [ 4118 | "segnalooo", 4119 | "PFS", 4120 | 1619961792.7381 4121 | ], 4122 | [ 4123 | "baby-a-fallen-lap-ray", 4124 | "Nu1L", 4125 | 1619961926.33768 4126 | ], 4127 | [ 4128 | "back-to-qoo", 4129 | "ids-TeamCC", 4130 | 1619961936.39903 4131 | ], 4132 | [ 4133 | "threefactooorx", 4134 | "KUDoS", 4135 | 1619962035.84458 4136 | ], 4137 | [ 4138 | "say-hellooo", 4139 | "Martial_Law_Enforcer", 4140 | 1619962148.35404 4141 | ], 4142 | [ 4143 | "pooow-buddy", 4144 | "rhackomandati", 4145 | 1619962213.97838 4146 | ], 4147 | [ 4148 | "gran-a-fallen-lap-ray", 4149 | "MapleBacon", 4150 | 1619962335.34208 4151 | ], 4152 | [ 4153 | "qoo-or-ooo", 4154 | "noraneco", 4155 | 1619962566.64397 4156 | ], 4157 | [ 4158 | "mra", 4159 | "wawawa13", 4160 | 1619962570.97435 4161 | ], 4162 | [ 4163 | "coooinbase", 4164 | "侍", 4165 | 1619962602.98687 4166 | ], 4167 | [ 4168 | "threefactooorx", 4169 | "TeamBaguette", 4170 | 1619962683.19708 4171 | ], 4172 | [ 4173 | "nooopster", 4174 | "0xbadf00d", 4175 | 1619962889.69615 4176 | ], 4177 | [ 4178 | "rick", 4179 | "侍", 4180 | 1619962898.638 4181 | ], 4182 | [ 4183 | "say-hellooo", 4184 | "Maurus", 4185 | 1619963052.93203 4186 | ], 4187 | [ 4188 | "threefactooorx", 4189 | "huli", 4190 | 1619963496.93094 4191 | ], 4192 | [ 4193 | "mra", 4194 | "Re1n3r!", 4195 | 1619963710.82903 4196 | ], 4197 | [ 4198 | "coooinbase-kernel", 4199 | "DiceGang", 4200 | 1619963743.49517 4201 | ], 4202 | [ 4203 | "say-hellooo", 4204 | "whitecats", 4205 | 1619963898.96762 4206 | ], 4207 | [ 4208 | "coooinbase-kernel", 4209 | "PTB_WTL", 4210 | 1619964269.1048 4211 | ], 4212 | [ 4213 | "qoo-or-ooo", 4214 | "LiquidTeam", 4215 | 1619964490.82969 4216 | ], 4217 | [ 4218 | "say-hellooo", 4219 | "LeetCTF", 4220 | 1619964869.72816 4221 | ], 4222 | [ 4223 | "say-hellooo", 4224 | "pwnable-fs0ciety", 4225 | 1619964937.42474 4226 | ], 4227 | [ 4228 | "qoo-or-ooo", 4229 | "ShelloWorld", 4230 | 1619965079.3946 4231 | ], 4232 | [ 4233 | "segnalooo", 4234 | "Never Stop Exploiting", 4235 | 1619965590.8544 4236 | ], 4237 | [ 4238 | "mama-a-fallen-lap-ray", 4239 | "Nu1L", 4240 | 1619965660.21995 4241 | ], 4242 | [ 4243 | "pooow-buddy", 4244 | "RPISEC", 4245 | 1619965690.88831 4246 | ], 4247 | [ 4248 | "coooinbase", 4249 | "r3kapig", 4250 | 1619965692.37755 4251 | ], 4252 | [ 4253 | "say-hellooo", 4254 | "digial_turtle", 4255 | 1619965785.42896 4256 | ], 4257 | [ 4258 | "mooosl", 4259 | "h_noson", 4260 | 1619965930.15798 4261 | ], 4262 | [ 4263 | "threefactooorx", 4264 | "#71", 4265 | 1619966264.43232 4266 | ], 4267 | [ 4268 | "baby-a-fallen-lap-ray", 4269 | "mhackeroni", 4270 | 1619966503.22821 4271 | ], 4272 | [ 4273 | "pooow-buddy", 4274 | "DiceGang", 4275 | 1619966505.69141 4276 | ], 4277 | [ 4278 | "pooow-buddy", 4279 | "ShelloWorld", 4280 | 1619966647.26663 4281 | ], 4282 | [ 4283 | "mama-a-fallen-lap-ray", 4284 | "mhackeroni", 4285 | 1619966806.67363 4286 | ], 4287 | [ 4288 | "rick", 4289 | "hxp", 4290 | 1619967033.49056 4291 | ], 4292 | [ 4293 | "qoo-or-ooo", 4294 | "CyberpUnk Jiu-jitsu Otters", 4295 | 1619967102.09411 4296 | ], 4297 | [ 4298 | "say-hellooo", 4299 | "raywando1", 4300 | 1619967353.67955 4301 | ], 4302 | [ 4303 | "pooow-buddy", 4304 | "PFS", 4305 | 1619967369.79804 4306 | ], 4307 | [ 4308 | "coooinbase", 4309 | "uuunderflow", 4310 | 1619967440.06286 4311 | ], 4312 | [ 4313 | "mooosl", 4314 | "Tea Deliverers", 4315 | 1619967464.07741 4316 | ], 4317 | [ 4318 | "say-hellooo", 4319 | "Killer Queen", 4320 | 1619967729.67773 4321 | ], 4322 | [ 4323 | "coooinbase-kernel", 4324 | "侍", 4325 | 1619967928.98227 4326 | ], 4327 | [ 4328 | "threefactooorx", 4329 | "L0remIpsec", 4330 | 1619968231.04388 4331 | ], 4332 | [ 4333 | "qoo-or-ooo", 4334 | "Ultimate Remote workers", 4335 | 1619968347.64321 4336 | ], 4337 | [ 4338 | "back-to-qoo", 4339 | "null2root", 4340 | 1619968792.89245 4341 | ], 4342 | [ 4343 | "exploit-for-dummies", 4344 | "Nu1L", 4345 | 1619968926.66864 4346 | ], 4347 | [ 4348 | "pooow-buddy", 4349 | "/bin/tw", 4350 | 1619969161.6931 4351 | ], 4352 | [ 4353 | "say-hellooo", 4354 | "Glidermed", 4355 | 1619969466.82379 4356 | ], 4357 | [ 4358 | "coooinbase-kernel", 4359 | "HITCON ⚔ Balsn", 4360 | 1619969610.34163 4361 | ], 4362 | [ 4363 | "coooinbase", 4364 | "HITCON ⚔ Balsn", 4365 | 1619969723.19083 4366 | ], 4367 | [ 4368 | "say-hellooo", 4369 | "wronganswer", 4370 | 1619969822.22003 4371 | ], 4372 | [ 4373 | "say-hellooo", 4374 | "Lacznosc_Przyszlosc", 4375 | 1619969850.30202 4376 | ], 4377 | [ 4378 | "smart-cryptooo", 4379 | "Tea Deliverers", 4380 | 1619970200.48046 4381 | ], 4382 | [ 4383 | "coooinbase-kernel", 4384 | "uuunderflow", 4385 | 1619970357.18426 4386 | ], 4387 | [ 4388 | "say-hellooo", 4389 | "TheBlackEyedELITES", 4390 | 1619970398.90292 4391 | ], 4392 | [ 4393 | "pooow-buddy", 4394 | "MoreBushSmokedWhackers", 4395 | 1619970469.16286 4396 | ], 4397 | [ 4398 | "pooow-buddy", 4399 | "Tasteless", 4400 | 1619970516.58861 4401 | ], 4402 | [ 4403 | "pooow-buddy", 4404 | "Never Stop Exploiting", 4405 | 1619970588.79409 4406 | ], 4407 | [ 4408 | "segnalooo", 4409 | "/bin/tw", 4410 | 1619971739.22525 4411 | ], 4412 | [ 4413 | "say-hellooo", 4414 | "Ranchers", 4415 | 1619971972.44112 4416 | ], 4417 | [ 4418 | "threefactooorx", 4419 | "Organizers", 4420 | 1619972134.04773 4421 | ], 4422 | [ 4423 | "segnalooo", 4424 | "StarBugs", 4425 | 1619972136.42434 4426 | ], 4427 | [ 4428 | "back-to-qoo", 4429 | "mhackeroni", 4430 | 1619972152.98432 4431 | ], 4432 | [ 4433 | "back-to-qoo", 4434 | "ShelloWorld", 4435 | 1619972434.18784 4436 | ], 4437 | [ 4438 | "mooosl", 4439 | "mhackeroni", 4440 | 1619972490.62736 4441 | ], 4442 | [ 4443 | "say-hellooo", 4444 | "OnePunchMen", 4445 | 1619972644.50809 4446 | ], 4447 | [ 4448 | "exploit-for-dummies", 4449 | "r3kapig", 4450 | 1619972688.75973 4451 | ], 4452 | [ 4453 | "qoo-or-ooo", 4454 | "PFS", 4455 | 1619973157.84168 4456 | ], 4457 | [ 4458 | "rick", 4459 | "noproplem", 4460 | 1619973409.48506 4461 | ], 4462 | [ 4463 | "pooow-buddy", 4464 | "null2root", 4465 | 1619973594.26329 4466 | ], 4467 | [ 4468 | "say-hellooo", 4469 | "0000x0000", 4470 | 1619973684.76968 4471 | ], 4472 | [ 4473 | "qoo-or-ooo", 4474 | "ELT", 4475 | 1619974124.90947 4476 | ], 4477 | [ 4478 | "rick", 4479 | "⚔️TSJ⚔️", 4480 | 1619974566.32361 4481 | ], 4482 | [ 4483 | "back-to-qoo", 4484 | "PFS", 4485 | 1619974988.82299 4486 | ], 4487 | [ 4488 | "say-hellooo", 4489 | "Asame", 4490 | 1619975680.95853 4491 | ], 4492 | [ 4493 | "nooombers", 4494 | "ARESx", 4495 | 1619976029.45297 4496 | ], 4497 | [ 4498 | "back-to-qoo", 4499 | "PTB_WTL", 4500 | 1619976344.81899 4501 | ], 4502 | [ 4503 | "segnalooo", 4504 | "HITCON ⚔ Balsn", 4505 | 1619976671.16357 4506 | ], 4507 | [ 4508 | "say-hellooo", 4509 | "Lemonz", 4510 | 1619976837.05013 4511 | ], 4512 | [ 4513 | "rick", 4514 | "/bin/tw", 4515 | 1619976856.57506 4516 | ], 4517 | [ 4518 | "pooow-buddy", 4519 | "./Vespiary", 4520 | 1619976900.27103 4521 | ], 4522 | [ 4523 | "threefactooorx", 4524 | "Vidar-Team", 4525 | 1619976972.64487 4526 | ], 4527 | [ 4528 | "nooombers", 4529 | "ID-10-T", 4530 | 1619977070.47251 4531 | ], 4532 | [ 4533 | "exploit-for-dummies", 4534 | "Team Enu", 4535 | 1619977073.1883 4536 | ], 4537 | [ 4538 | "threefactooorx", 4539 | "hack^3", 4540 | 1619977108.57395 4541 | ], 4542 | [ 4543 | "segnalooo", 4544 | "Katzebin", 4545 | 1619977220.40846 4546 | ], 4547 | [ 4548 | "threefactooorx", 4549 | "OSUSEC", 4550 | 1619977362.16991 4551 | ], 4552 | [ 4553 | "say-hellooo", 4554 | "noplalic", 4555 | 1619977684.00552 4556 | ], 4557 | [ 4558 | "threefactooorx", 4559 | "SugarCats", 4560 | 1619977772.51317 4561 | ], 4562 | [ 4563 | "say-hellooo", 4564 | "DokuDempa", 4565 | 1619978728.47406 4566 | ], 4567 | [ 4568 | "threefactooorx", 4569 | "Sauercloud", 4570 | 1619978803.98782 4571 | ], 4572 | [ 4573 | "pooow-buddy", 4574 | "noraneco", 4575 | 1619978950.27128 4576 | ], 4577 | [ 4578 | "pooow-buddy", 4579 | "c0r3dump", 4580 | 1619978982.21215 4581 | ], 4582 | [ 4583 | "say-hellooo", 4584 | "mnx", 4585 | 1619979033.18796 4586 | ], 4587 | [ 4588 | "threefactooorx", 4589 | "PPP", 4590 | 1619979412.83944 4591 | ], 4592 | [ 4593 | "say-hellooo", 4594 | "TomSteer1", 4595 | 1619979963.42818 4596 | ], 4597 | [ 4598 | "nooopster", 4599 | "DarkArmy", 4600 | 1619980119.21452 4601 | ], 4602 | [ 4603 | "say-hellooo", 4604 | "notname", 4605 | 1619980328.36696 4606 | ], 4607 | [ 4608 | "segnalooo", 4609 | "Tea Deliverers", 4610 | 1619980352.13302 4611 | ], 4612 | [ 4613 | "say-hellooo", 4614 | "Unknown Impact", 4615 | 1619980584.13434 4616 | ], 4617 | [ 4618 | "mra", 4619 | "ids-TeamCC", 4620 | 1619980593.16617 4621 | ], 4622 | [ 4623 | "smart-cryptooo", 4624 | "Katzebin", 4625 | 1619980660.12809 4626 | ], 4627 | [ 4628 | "qoo-or-ooo", 4629 | "Team Enu", 4630 | 1619980693.54247 4631 | ], 4632 | [ 4633 | "say-hellooo", 4634 | "supernode", 4635 | 1619980724.69378 4636 | ], 4637 | [ 4638 | "threefactooorx", 4639 | "touch /fish", 4640 | 1619980940.0906 4641 | ], 4642 | [ 4643 | "pooow-buddy", 4644 | "WashedUpResearchers", 4645 | 1619981019.23836 4646 | ], 4647 | [ 4648 | "qoo-or-ooo", 4649 | "DarkArmy", 4650 | 1619981305.89948 4651 | ], 4652 | [ 4653 | "back-to-qoo", 4654 | "Team Enu", 4655 | 1619981931.26167 4656 | ], 4657 | [ 4658 | "pooow-buddy", 4659 | "GatorSheavesMutably", 4660 | 1619982167.48336 4661 | ], 4662 | [ 4663 | "say-hellooo", 4664 | "gregf1", 4665 | 1619982321.10091 4666 | ], 4667 | [ 4668 | "nooombers", 4669 | "Tea MSG", 4670 | 1619982354.34556 4671 | ], 4672 | [ 4673 | "qoo-or-ooo", 4674 | "./Vespiary", 4675 | 1619982442.72814 4676 | ], 4677 | [ 4678 | "mra", 4679 | "F-Killer", 4680 | 1619982857.38443 4681 | ], 4682 | [ 4683 | "nooopster", 4684 | "xtal", 4685 | 1619982961.90854 4686 | ], 4687 | [ 4688 | "pooow-buddy", 4689 | "SugarCats", 4690 | 1619983106.96657 4691 | ], 4692 | [ 4693 | "tiamat", 4694 | "Shellphish", 4695 | 1619983159.16804 4696 | ], 4697 | [ 4698 | "say-hellooo", 4699 | "ooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooverflow!", 4700 | 1619983749.60504 4701 | ], 4702 | [ 4703 | "segnalooo", 4704 | "r3kapig", 4705 | 1619984678.96274 4706 | ], 4707 | [ 4708 | "mra", 4709 | "pasten", 4710 | 1619984692.71566 4711 | ], 4712 | [ 4713 | "coooinbase", 4714 | "#71", 4715 | 1619984709.73006 4716 | ], 4717 | [ 4718 | "mooosl", 4719 | "K-Students", 4720 | 1619984716.52806 4721 | ], 4722 | [ 4723 | "say-hellooo", 4724 | "trashgordon", 4725 | 1619984830.99669 4726 | ], 4727 | [ 4728 | "pooow-buddy", 4729 | "RobotMafia", 4730 | 1619985118.99418 4731 | ], 4732 | [ 4733 | "pooow-pal", 4734 | "MoreBushSmokedWhackers", 4735 | 1619985268.54527 4736 | ], 4737 | [ 4738 | "threefactooorx", 4739 | "bi0s", 4740 | 1619985387.41876 4741 | ], 4742 | [ 4743 | "qoo-or-ooo", 4744 | "L0remIpsec", 4745 | 1619985433.60663 4746 | ], 4747 | [ 4748 | "back-to-qoo", 4749 | "./Vespiary", 4750 | 1619985497.41596 4751 | ], 4752 | [ 4753 | "pooow-buddy", 4754 | "OSUSEC", 4755 | 1619985567.60297 4756 | ], 4757 | [ 4758 | "qoo-or-ooo", 4759 | "Keyboard Monkeys", 4760 | 1619985582.50008 4761 | ], 4762 | [ 4763 | "coooinbase", 4764 | "Dragon Sector", 4765 | 1619985601.21772 4766 | ], 4767 | [ 4768 | "threefactooorx", 4769 | "hxp", 4770 | 1619986185.26029 4771 | ], 4772 | [ 4773 | "back-to-qoo", 4774 | "CyberpUnk Jiu-jitsu Otters", 4775 | 1619986793.70364 4776 | ], 4777 | [ 4778 | "say-hellooo", 4779 | "Tronx", 4780 | 1619986814.63658 4781 | ], 4782 | [ 4783 | "pooow-buddy", 4784 | "LiquidTeam", 4785 | 1619986895.1908 4786 | ], 4787 | [ 4788 | "coooinbase-kernel", 4789 | "r3kapig", 4790 | 1619987214.88405 4791 | ], 4792 | [ 4793 | "back-to-qoo", 4794 | "OSUSEC", 4795 | 1619987410.63736 4796 | ], 4797 | [ 4798 | "threefactooorx", 4799 | "STT", 4800 | 1619987604.56137 4801 | ], 4802 | [ 4803 | "say-hellooo", 4804 | "sdsadwewq", 4805 | 1619987651.01831 4806 | ], 4807 | [ 4808 | "exploit-for-dummies", 4809 | "TheFlatNetworkSociety", 4810 | 1619987701.21578 4811 | ], 4812 | [ 4813 | "tiamat", 4814 | "Tea Deliverers", 4815 | 1619987701.82017 4816 | ], 4817 | [ 4818 | "baby-a-fallen-lap-ray", 4819 | "Organizers", 4820 | 1619987704.84013 4821 | ], 4822 | [ 4823 | "pooow-buddy", 4824 | "CyberpUnk Jiu-jitsu Otters", 4825 | 1619987831.34053 4826 | ], 4827 | [ 4828 | "say-hellooo", 4829 | "GnatsInMyHair", 4830 | 1619988340.72108 4831 | ], 4832 | [ 4833 | "pooow-pal", 4834 | "StarBugs", 4835 | 1619988457.40443 4836 | ], 4837 | [ 4838 | "pooow-pal", 4839 | "HITCON ⚔ Balsn", 4840 | 1619988965.12664 4841 | ], 4842 | [ 4843 | "segnalooo", 4844 | "0daysober", 4845 | 1619988985.95707 4846 | ], 4847 | [ 4848 | "exploit-for-dummies", 4849 | "uuunderflow", 4850 | 1619989144.56703 4851 | ], 4852 | [ 4853 | "pooow-buddy", 4854 | "MV9rwGOf08", 4855 | 1619989309.3375 4856 | ], 4857 | [ 4858 | "exploit-for-dummies", 4859 | "Tea Deliverers", 4860 | 1619989316.26564 4861 | ], 4862 | [ 4863 | "exploit-for-dummies", 4864 | "0daysober", 4865 | 1619989339.51534 4866 | ], 4867 | [ 4868 | "qoo-or-ooo", 4869 | "ID-10-T", 4870 | 1619989592.76385 4871 | ], 4872 | [ 4873 | "gran-a-fallen-lap-ray", 4874 | "Katzebin", 4875 | 1619989866.19671 4876 | ], 4877 | [ 4878 | "nooombers", 4879 | "srdnlen", 4880 | 1619989934.68143 4881 | ], 4882 | [ 4883 | "segnalooo", 4884 | "Nu1L", 4885 | 1619989979.9692 4886 | ], 4887 | [ 4888 | "mama-a-fallen-lap-ray", 4889 | "Organizers", 4890 | 1619990008.69789 4891 | ], 4892 | [ 4893 | "pooow-buddy", 4894 | "Scavenger Security", 4895 | 1619990016.32716 4896 | ], 4897 | [ 4898 | "coooinbase", 4899 | "MoreBushSmokedWhackers", 4900 | 1619990227.38261 4901 | ], 4902 | [ 4903 | "segnalooo", 4904 | "RPISEC", 4905 | 1619990519.3345 4906 | ], 4907 | [ 4908 | "nooopster", 4909 | "WashedUpResearchers", 4910 | 1619990598.5996 4911 | ], 4912 | [ 4913 | "rick", 4914 | "Tasteless", 4915 | 1619990880.31267 4916 | ], 4917 | [ 4918 | "mooosl", 4919 | "Sauercloud", 4920 | 1619990964.47266 4921 | ], 4922 | [ 4923 | "qoo-or-ooo", 4924 | "MoreBushSmokedWhackers", 4925 | 1619991016.49569 4926 | ], 4927 | [ 4928 | "threefactooorx", 4929 | "GatorSheavesMutably", 4930 | 1619991082.65679 4931 | ], 4932 | [ 4933 | "say-hellooo", 4934 | "badsctr", 4935 | 1619991305.41937 4936 | ], 4937 | [ 4938 | "threefactooorx", 4939 | "noraneco", 4940 | 1619991387.82083 4941 | ], 4942 | [ 4943 | "pooow-pal", 4944 | "noproplem", 4945 | 1619991865.66287 4946 | ], 4947 | [ 4948 | "rad", 4949 | "PPP", 4950 | 1619992285.05005 4951 | ], 4952 | [ 4953 | "say-hellooo", 4954 | "The_Investors", 4955 | 1619992548.45263 4956 | ], 4957 | [ 4958 | "qoo-or-ooo", 4959 | "KITCTF", 4960 | 1619992649.77797 4961 | ], 4962 | [ 4963 | "say-hellooo", 4964 | "npc", 4965 | 1619992758.60323 4966 | ], 4967 | [ 4968 | "pooow-pal", 4969 | "SuperBlue", 4970 | 1619992903.86472 4971 | ], 4972 | [ 4973 | "pooow-buddy", 4974 | "hxp", 4975 | 1619993150.34737 4976 | ], 4977 | [ 4978 | "mra", 4979 | "MidwestMinistryofMachines", 4980 | 1619993304.88147 4981 | ], 4982 | [ 4983 | "nooopster", 4984 | "ID-10-T", 4985 | 1619993426.18966 4986 | ], 4987 | [ 4988 | "qoo-or-ooo", 4989 | "Sauercloud", 4990 | 1619993471.2253 4991 | ], 4992 | [ 4993 | "mooosl", 4994 | "DiceGang", 4995 | 1619993496.22932 4996 | ], 4997 | [ 4998 | "smart-cryptooo", 4999 | "NorseCode", 5000 | 1619993496.52683 5001 | ], 5002 | [ 5003 | "rick", 5004 | "0daysober", 5005 | 1619993625.65332 5006 | ], 5007 | [ 5008 | "pooow-buddy", 5009 | "Tea MSG", 5010 | 1619993903.05175 5011 | ], 5012 | [ 5013 | "say-hellooo", 5014 | "LeslieShow", 5015 | 1619994058.70004 5016 | ], 5017 | [ 5018 | "segnalooo", 5019 | "侍", 5020 | 1619994216.24278 5021 | ], 5022 | [ 5023 | "coooinbase-kernel", 5024 | "Dragon Sector", 5025 | 1619994275.09615 5026 | ], 5027 | [ 5028 | "pooow-buddy", 5029 | "SPRUSH", 5030 | 1619994417.93962 5031 | ], 5032 | [ 5033 | "back-to-qoo", 5034 | "KITCTF", 5035 | 1619994731.66193 5036 | ], 5037 | [ 5038 | "segnalooo", 5039 | "PTB_WTL", 5040 | 1619994743.03086 5041 | ], 5042 | [ 5043 | "threefactooorx", 5044 | "h4tum", 5045 | 1619994766.60328 5046 | ], 5047 | [ 5048 | "back-to-qoo", 5049 | "L0remIpsec", 5050 | 1619994846.2447 5051 | ], 5052 | [ 5053 | "smart-cryptooo", 5054 | "PPP", 5055 | 1619995127.37882 5056 | ], 5057 | [ 5058 | "pooow-pal", 5059 | "Tea Deliverers", 5060 | 1619995152.34707 5061 | ], 5062 | [ 5063 | "exploit-for-dummies", 5064 | "Never Stop Exploiting", 5065 | 1619995167.21357 5066 | ], 5067 | [ 5068 | "nooopster", 5069 | "Mayas", 5070 | 1619995918.24599 5071 | ], 5072 | [ 5073 | "threefactooorx", 5074 | "MapleBacon", 5075 | 1619996086.69704 5076 | ], 5077 | [ 5078 | "pooow-buddy", 5079 | "Bawolff", 5080 | 1619996093.02687 5081 | ], 5082 | [ 5083 | "pooow-buddy", 5084 | "zwnj", 5085 | 1619996421.96594 5086 | ], 5087 | [ 5088 | "mooosl", 5089 | "Tasteless", 5090 | 1619996478.42779 5091 | ], 5092 | [ 5093 | "tiamat", 5094 | "PTB_WTL", 5095 | 1619996604.0744 5096 | ], 5097 | [ 5098 | "say-hellooo", 5099 | "katagaitai", 5100 | 1619996671.53305 5101 | ], 5102 | [ 5103 | "coooinbase", 5104 | "/bin/tw", 5105 | 1619996941.17916 5106 | ], 5107 | [ 5108 | "qoo-or-ooo", 5109 | "Dragon Sector", 5110 | 1619997035.09355 5111 | ], 5112 | [ 5113 | "say-hellooo", 5114 | "CeruttiGino", 5115 | 1619997215.62649 5116 | ], 5117 | [ 5118 | "say-hellooo", 5119 | "Buckys_Angels", 5120 | 1619997243.77885 5121 | ], 5122 | [ 5123 | "coooinbase-kernel", 5124 | "MoreBushSmokedWhackers", 5125 | 1619997529.02994 5126 | ], 5127 | [ 5128 | "mra", 5129 | "Ba Sing Sec", 5130 | 1619997683.85014 5131 | ], 5132 | [ 5133 | "tiamat", 5134 | "PPP", 5135 | 1619997721.82845 5136 | ], 5137 | [ 5138 | "exploit-for-dummies", 5139 | "Organizers", 5140 | 1619997784.28059 5141 | ], 5142 | [ 5143 | "say-hellooo", 5144 | "Ba Sing Sec", 5145 | 1619998089.10842 5146 | ], 5147 | [ 5148 | "say-hellooo", 5149 | "azriek", 5150 | 1619998092.71049 5151 | ], 5152 | [ 5153 | "segnalooo", 5154 | "Tasteless", 5155 | 1619998133.98733 5156 | ], 5157 | [ 5158 | "back-to-qoo", 5159 | "TheAdditionalPayphones", 5160 | 1619998472.60223 5161 | ], 5162 | [ 5163 | "rick", 5164 | "uuunderflow", 5165 | 1619998500.11831 5166 | ], 5167 | [ 5168 | "say-hellooo", 5169 | "Blackjack", 5170 | 1619998641.32055 5171 | ], 5172 | [ 5173 | "pooow-buddy", 5174 | "MapleBacon", 5175 | 1619998815.08495 5176 | ], 5177 | [ 5178 | "pooow-pal", 5179 | "NorseCode", 5180 | 1619998987.3795 5181 | ], 5182 | [ 5183 | "pooow-buddy", 5184 | "STT", 5185 | 1619999000.5604 5186 | ], 5187 | [ 5188 | "coooinbase-kernel", 5189 | "#71", 5190 | 1619999026.72661 5191 | ], 5192 | [ 5193 | "segnalooo", 5194 | "NorseCode", 5195 | 1619999077.788 5196 | ], 5197 | [ 5198 | "coooinbase", 5199 | "⚔️TSJ⚔️", 5200 | 1619999122.22426 5201 | ], 5202 | [ 5203 | "coooinbase-kernel", 5204 | "/bin/tw", 5205 | 1619999189.04188 5206 | ], 5207 | [ 5208 | "threefactooorx", 5209 | "SPRUSH", 5210 | 1619999531.77273 5211 | ], 5212 | [ 5213 | "mra", 5214 | "CYberMouflons", 5215 | 1619999574.40996 5216 | ], 5217 | [ 5218 | "segnalooo", 5219 | "mhackeroni", 5220 | 1619999738.41923 5221 | ] 5222 | ], 5223 | "unopened_by_category": { 5224 | } 5225 | } 5226 | } 5227 | -------------------------------------------------------------------------------- /data/dcquals_2021.teams: -------------------------------------------------------------------------------- 1 | "PPP" 2 | "Katzebin" 3 | "Tea Deliverers" 4 | "HITCON ⚔ Balsn" 5 | "r3kapig" 6 | "PTB_WTL" 7 | "StarBugs" 8 | "NorseCode" 9 | "Nu1L" 10 | "Shellphish" 11 | "mhackeroni" 12 | "侍" 13 | "Organizers" 14 | "PFS" 15 | "DiceGang" 16 | "uuunderflow" 17 | "0daysober" 18 | "/bin/tw" 19 | "SuperBlue" 20 | "Tasteless" 21 | "MoreBushSmokedWhackers" 22 | "MapleBacon" 23 | "⚔️TSJ⚔️" 24 | "RPISEC" 25 | "koreanbadass" 26 | "K-Students" 27 | "OSUSEC" 28 | "noproplem" 29 | "Never Stop Exploiting" 30 | "C4T_BuT_S4D" 31 | #"rhackomandati" 32 | #"Sauercloud" 33 | #"Dragon Sector" 34 | #"./Vespiary" 35 | #"GatorSheavesMutably" 36 | #"Tea MSG" 37 | #"Team Enu" 38 | #"null2root" 39 | #"zwnj" 40 | #"#71" 41 | #"hxp" 42 | #"c0r3dump" 43 | #"ids-TeamCC" 44 | #"ShelloWorld" 45 | #"STT" 46 | #"CyberpUnk Jiu-jitsu Otters" 47 | #"noraneco" 48 | #"Ultimate Remote workers" 49 | #"SPRUSH" 50 | #"ELT" 51 | -------------------------------------------------------------------------------- /makeconf.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # -*- coding: utf-8 -*- 3 | 4 | 5 | import sys 6 | import json 7 | import os.path 8 | 9 | if len(sys.argv) < 2: 10 | print ("Use: %s "%sys.argv[0]) 11 | sys.exit(1) 12 | 13 | filename = sys.argv[1] 14 | if filename.endswith(".json"): 15 | basename = filename[:-5] 16 | else: 17 | basename = filename 18 | 19 | if os.path.exists(basename+".teams"): 20 | print ("File %s.teams already exist"%basename) 21 | sys.exit(2) 22 | if os.path.exists(basename+".challs"): 23 | print ("File %s.challs already exist"%basename) 24 | sys.exit(2) 25 | 26 | with open(filename) as f: 27 | data = json.load(f) 28 | solves = data['message']['solves'] 29 | tmp = data['message']['open'] 30 | 31 | challs_names = [t[0] for t in tmp] 32 | teams_names = set([s[1] for s in solves]) 33 | teams_names = sorted(list(teams_names)) 34 | 35 | f = open(basename+".teams","w") 36 | for tname in teams_names: 37 | f.write('# "%s"\n'%tname) 38 | f.close() 39 | 40 | f = open(basename+".challs","w") 41 | for cname in challs_names: 42 | f.write('"%s"\n'%cname) 43 | f.close() 44 | 45 | print ("Configuration file created successfully") 46 | print (" %d teams"%len(teams_names)) 47 | print (" %d challenges"%len(challs_names)) 48 | print ("\n (now edit the %s.teams file to uncomment the ones you want to work with)"%basename) 49 | 50 | 51 | -------------------------------------------------------------------------------- /scorep.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # -*- coding: utf-8 -*- 3 | 4 | 5 | import sys 6 | import json 7 | import math 8 | import scorings 9 | import getopt 10 | import inspect 11 | import pickle 12 | from collections import namedtuple 13 | 14 | # ---------------------------------------------------------------------------- 15 | # FUNCTIONS 16 | # ---------------------------------------------------------------------------- 17 | 18 | def dict_to_sorted_list(d, f): 19 | result = list(d.values()) 20 | result.sort(key=f, reverse=True) 21 | return result 22 | 23 | class Chall: 24 | def __init__(self, name, open_time): 25 | self.name = name 26 | self.open_time = open_time 27 | self.solved_by = [] 28 | self.points = 0 29 | 30 | def add_solution(self, team, time): 31 | t = int((time - self.open_time)/60); assert t >= 0 32 | for oldsolve in self.solved_by: assert t >= oldsolve[1] # solved_by must be ordered 33 | self.solved_by.append((team, t)) 34 | if isinstance(team, Team): 35 | team.solve(self, t, len(self.solved_by)) 36 | 37 | def get_solve_count(self, max_time=0): 38 | if max_time: 39 | return len([x for x in self.solved_by if x[1] quals: 170 | delta = u' \033[31m%2d ▼\033[0m '%(pos-quals) 171 | else: 172 | delta = u' \033[32m%2d ▲\033[0m '%(quals-pos) 173 | except: 174 | delta = ' ? ' 175 | if reference: 176 | col1 = "%2d - \033[35m%5s\033[0m %s %s"%(pos+1, t.get_final_score(), delta, t.name+" "*(26-len(t.name))) 177 | else: 178 | # col1 = "%2d - \033[35m%5s\033[0m %s"%(pos+1, t.get_final_score(), t.name+" "*(26-len(t.name))) 179 | col1 = "%2d - \033[35m%5s\033[0m %2d %3d %s"%(pos+1, t.get_final_score(), len(t.solved), t.get_cumulative_solve_time()/60, t.name+" "*(22-len(t.name))) 180 | 181 | col2 = "" 182 | if i < len(cb): 183 | delta = ' ---' 184 | score = cb[i].points 185 | name = cb[i].name 186 | try: 187 | diff = score - ref_challs[name] 188 | if diff > 0: 189 | delta = '\033[32m+%3d\033[0m'%diff 190 | elif diff < 0: 191 | delta = '\033[31m-%3d\033[0m'%abs(diff) 192 | except: 193 | delta = ' ? ' 194 | 195 | fblood = "%4d"%cb[i].first_blood()[1] if cb[i].first_blood() else " - " 196 | if reference: 197 | col2 = "%4d %s %s %s %s"%(score, delta, cb[i].get_solve_count(), fblood, name) 198 | else: 199 | col2 = "%4d %4d %s %s"%(score, cb[i].get_solve_count(), fblood, name) 200 | 201 | print ("%s %s"%(col1, col2)) 202 | pos += 1 203 | 204 | 205 | def usage(): 206 | print ("\033[32mUse:\033[0m \n python3 %s [options] filename.json"%sys.argv[0]) 207 | print ("") 208 | print ("\033[32mOptions:\033[0m") 209 | # print (" -h [rank|score|bunus] \033[32m # Provide help on individual options \033[0m ") 210 | print (" -r a1,a2,...,an \033[33m # Select the ordered list of *Ranking* algorithms \033[0m ") 211 | print (" -s name:p1,p2..,pn \033[33m # Select and configure the *Scoring* algorithm \033[0m ") 212 | print (" -b ??? \033[33m # Select and configure the *Bonus* algorithm \033[0m ") 213 | print (" -w \033[33m # Save the result to a file for later comparison\033[0m ") 214 | print (" -c \033[33m # Compare ranking against previous result\033[0m ") 215 | print (" -l \033[33m # Limit the scoreboard to the top places (default=20)\033[0m ") 216 | print (" -t [max|change|new]:n\033[33m # Automatically test different values for the scoring parameters\033[0m ") 217 | print ("\n\033[32mRanking Algorithms:\033[0m") 218 | print (" Comma-separated list of algorithms. First ranking algorithm is applied first, in case of ties,") 219 | print (" the second algorithm is used, and so forth.") 220 | for name, help_str in [(s[5:], scorings.__dict__[s].__doc__) for s in scorings.__dict__ if s.startswith('rank')]: 221 | print (" - \033[32m{0:s}\033[0m {1:s}".format(name,help_str)) 222 | print (" Default is: score,first") 223 | print ("\n\033[32mScoring Algorithms:\033[0m") 224 | print (" Only one scoring algorithm can be applied at a time.") 225 | print (" Default is: ooo") 226 | for name, help_str in [(s[6:], scorings.__dict__[s].__doc__) for s in scorings.__dict__ if s.startswith('score')]: 227 | print (" - \033[32m{0:5s}\033[0m {1:s}".format(name,help_str.replace('\n','\n '))) 228 | print ("\n\033[32mBonus Algorithms:\033[0m") 229 | for name, help_str in [(s[6:], scorings.__dict__[s].__doc__) for s in scorings.__dict__ if s.startswith('bonus')]: 230 | print (" - \033[32m{0:5s}\033[0m {1:s}".format(name,help_str.replace('\n','\n '))) 231 | 232 | def error(msg): 233 | print("\033[31m ERROR:\033[0m %s"%msg) 234 | sys.exit(2) 235 | 236 | def get_default_params(f): 237 | spec = inspect.getfullargspec(f) 238 | return list(spec.defaults) 239 | 240 | # ---------------------------------------------------------------------------- 241 | # MAIN 242 | # ---------------------------------------------------------------------------- 243 | 244 | 245 | try: 246 | optlist, args = getopt.getopt(sys.argv[1:], 'hvw:c:r:s:b:l:t:', ['help', 'verbose', 'write=', 'compare=', 'rank=','score=','bonus=', 'limit=', 'test=']) 247 | except: 248 | usage() 249 | sys.exit(1) 250 | 251 | if len(args) != 1: 252 | usage() 253 | sys.exit(2) 254 | 255 | # Configurations 256 | # ---------------------------------------------------------------------------- 257 | rank_dict = {s[5:]: scorings.__dict__[s] for s in scorings.__dict__ if s.startswith('rank')} 258 | score_dict = {s[6:]: scorings.__dict__[s] for s in scorings.__dict__ if s.startswith('score')} 259 | bonus_dict = {s[6:]: scorings.__dict__[s] for s in scorings.__dict__ if s.startswith('bonus')} 260 | 261 | filename = args[0] 262 | verbose = False 263 | limit = 20 264 | fuzz = False 265 | reference_w = None 266 | reference_r = None 267 | reference = None 268 | test_condition = None 269 | ranking_algorithms = [rank_dict['score'], rank_dict['first']] 270 | score_gen_f = score_dict['ooo'] 271 | score_params = get_default_params(score_gen_f) 272 | bonus_f = lambda x,*y,**z: 1 273 | bonus_params = [] 274 | 275 | # Parse options 276 | # ---------------------------------------------------------------------------- 277 | for o, a in optlist: 278 | if o in ("-h", "--help"): 279 | usage() 280 | sys.exit(0) 281 | elif o in ("-t", "--test"): 282 | if not a: 283 | error ("Please specify a test condition") 284 | try: 285 | cond_type, cond_value = a.split(":") 286 | if cond_type not in ['change', 'max', 'new']: 287 | error("Test condition type invalid. Valid values are 'change', 'max', or 'new'") 288 | test_condition = [cond_type, int(cond_value)] 289 | except: 290 | error("Invalid test condition. Must be 'condition_type:condition_value") 291 | elif o in ("-v", "--verbose"): 292 | verbose = True 293 | elif o in ("-l", "--limit"): 294 | if not a: 295 | error ("Limit to what?") 296 | try: 297 | limit = int(a) 298 | except: 299 | error("\"%s\" is not a valid number"%a) 300 | elif o in ("-c", "--compare"): 301 | if not a: 302 | error("-c requires a file name") 303 | reference_r = a 304 | elif o in ("-w", "--write"): 305 | if not a: 306 | error("-w requires a file name to store the reference model") 307 | reference_w = a 308 | elif o in ("-b", "--bonus"): 309 | if not a: 310 | error("No bonus algorithm specified") 311 | if ':' in a: 312 | name, params = a.split(":") 313 | bonus_params = params.split(",") 314 | else: 315 | name = a 316 | bonus_params = [] 317 | 318 | if name in bonus_dict: 319 | bonus_f = bonus_dict[name] 320 | else: 321 | error("\"%s\" bonus algorithm not found!"%name) 322 | 323 | elif o in ("-r", "--rank"): 324 | if not a: 325 | error("No ranking algorithm specified") 326 | ranking_algorithms = [] 327 | for name in a.split(','): 328 | if name not in rank_dict: 329 | error("\"%s\" ranking algorithm not found!"%name) 330 | ranking_algorithms.append(rank_dict[name]) 331 | elif o in ("-s", "--score"): 332 | if not a: 333 | error("No scoring algorithm specified") 334 | if ':' in a: 335 | name, params = a.split(":") 336 | params = params.split(",") 337 | else: 338 | name = a 339 | params = [] 340 | 341 | if name in score_dict: 342 | score_gen_f = score_dict[name] 343 | else: 344 | error("\"%s\" scoring algorithm not found!"%name) 345 | 346 | score_params = get_default_params(score_gen_f) 347 | if len(params) > len(score_params): 348 | error("Too many parameters for model \"%s\""%name) 349 | i = 0 350 | for i in range(len(params)): 351 | if params[i]: 352 | score_params[i] = params[i] 353 | 354 | if reference_r: 355 | reference = load_reference(reference_r) 356 | 357 | 358 | ranking_f = lambda team: [s(team) for s in ranking_algorithms] 359 | 360 | formula = [x[10:] for x in score_gen_f.__doc__.split('\n') if x.strip().startswith("Points:")][0] 361 | spec = inspect.getfullargspec(score_gen_f) 362 | 363 | if filename.endswith(".json"): 364 | basename = filename[:-5] 365 | else: 366 | basename = filename 367 | config = load_config(basename) 368 | 369 | for i in range(len(spec.args)): 370 | formula = formula.replace("@%s"%spec.args[i], "%s"%score_params[i]) 371 | print ("\033[32m-------------------------------=[ Config ]=------------------------------------------\033[0m") 372 | print ("\033[32mScoring:\033[0m %s"%formula) 373 | print ("\033[32mRanking:\033[0m %s"%",".join([r.__name__[5:] for r in ranking_algorithms])) 374 | if bonus_f.__name__.startswith(''): 375 | print ("\033[32mBonus:\033[0m None") 376 | else: 377 | print ("\033[32mBonus:\033[0m %s:%s"%(bonus_f.__name__[6:], bonus_params)) 378 | print ("\033[32mTeams:\033[0m %d \033[32mChalls:\033[0m %d"%(len(config.teams), len(config.challs))) 379 | if reference: 380 | print ("\033[32mReference:\033[0m %s (%s)"%(reference_r," ".join(reference[0]))) 381 | print ("\033[32m-------------------------------------------------------------------------------------\033[0m\n") 382 | 383 | try: 384 | challs, teams = load_json(filename, config) 385 | except: 386 | error("Error reading file \"%s\""%filename) 387 | 388 | if reference_w and test_condition: 389 | error("You can't use both -w and -t") 390 | 391 | if test_condition: 392 | score_f = score_gen_f(*score_params) 393 | for chall in challs.values(): 394 | score_f(chall) 395 | for team in teams.values(): 396 | bonus_f(team, *bonus_params, all_teams=teams, all_challs=challs) 397 | 398 | baseline = dict_to_sorted_list(teams, ranking_f) 399 | baseline = [b.name for b in baseline] 400 | 401 | if test_condition[0]=='max': 402 | test_max = True 403 | base_pos = int(test_condition[1]) - 1 404 | test_value = baseline[base_pos] 405 | print ("Looking for parameters that maximize the final ranking of team: %s"%test_value) 406 | print ("Initial ranking: \033[32m%d\033[0m"%(base_pos+1)) 407 | for i in range(len(score_params)): 408 | new_params = [float(x) for x in score_params] 409 | best_pos = base_pos 410 | best_param = 0 411 | step = max(0.1, 0.01*new_params[i]) 412 | for j in range(1000): 413 | new_params[i]-=step 414 | score_f = score_gen_f(*new_params) 415 | for chall in challs.values(): 416 | try: 417 | score_f(chall) 418 | except: 419 | continue 420 | for team in teams.values(): 421 | team.bonus = 0 422 | bonus_f(team, *bonus_params, all_teams=teams, all_challs=challs) 423 | 424 | res = dict_to_sorted_list(teams, ranking_f) 425 | res = [r.name for r in res] 426 | if res.index(test_value) < best_pos: 427 | best_pos = res.index(test_value) 428 | best_param = new_params[i] 429 | if best_pos == 0: 430 | break 431 | if best_pos != base_pos: 432 | print (" Param {0:d} = \033[32m{1:7.2f}\033[0m --> rank {2:d}".format(i+1, best_param, best_pos+1)) 433 | 434 | new_params = [float(x) for x in score_params] 435 | best_pos = base_pos 436 | best_param = 0 437 | for j in range(1000): 438 | new_params[i]+=step 439 | score_f = score_gen_f(*new_params) 440 | for chall in challs.values(): 441 | try: 442 | score_f(chall) 443 | except: 444 | continue 445 | for team in teams.values(): 446 | team.bonus = 0 447 | bonus_f(team, *bonus_params, all_teams=teams, all_challs=challs) 448 | res = dict_to_sorted_list(teams, ranking_f) 449 | res = [r.name for r in res] 450 | if res.index(test_value) < best_pos: 451 | best_pos = res.index(test_value) 452 | best_param = new_params[i] 453 | if best_pos == 0: 454 | break 455 | if best_pos != base_pos: 456 | print (" Param {0:d} = \033[32m{1:7.2f}\033[0m --> rank {2:d}".format(i+1, best_param, best_pos+1)) 457 | else: 458 | test_value = test_condition[1] 459 | print ("Testing effects of parameter variations on the top %d positions"%test_value) 460 | for i in range(len(score_params)): 461 | new_params = [float(x) for x in score_params] 462 | abs_step = max(0.1, 0.01*new_params[i]) 463 | min_change = False 464 | print (" Param {0} (step +-{1:4.1f}): ".format(i+1, abs_step), end="") 465 | eol = False 466 | for step in [-1*abs_step, abs_step]: 467 | for j in range(500): 468 | new_params[i]-=step 469 | score_f = score_gen_f(*new_params) 470 | for chall in challs.values(): 471 | try: 472 | score_f(chall) 473 | except: 474 | print ("Warning") 475 | continue 476 | for team in teams.values(): 477 | team.bonus = 0 478 | bonus_f(team, *bonus_params, all_teams=teams, all_challs=challs) 479 | res = dict_to_sorted_list(teams, ranking_f) 480 | res = [r.name for r in res] 481 | if (test_condition[0]=='new' and set(res[:test_value]) != set(baseline[:test_value])) or (test_condition[0]=="change" and res[:test_value] != baseline[:test_value]): 482 | if step < 0: 483 | print ("{1:8.2f} <-- {0:8.2f}".format(float(score_params[i]), new_params[i]), end="") 484 | min_change = True 485 | break 486 | else: 487 | if min_change: 488 | print (" --> {0:8.2f}".format(new_params[i])) 489 | else: 490 | print ("{0:8.2f} --> {1:8.2f}".format(float(score_params[i]), new_params[i])) 491 | eol = True 492 | break 493 | if not eol: 494 | print ("") 495 | 496 | else: 497 | score_f = score_gen_f(*score_params) 498 | 499 | for chall in challs.values(): 500 | score_f(chall) 501 | for team in teams.values(): 502 | team.bonus = 0 503 | bonus_f(team, *bonus_params, all_teams=teams, all_challs=challs) 504 | 505 | cboard = dict_to_sorted_list(challs, lambda chall: chall.points) 506 | sboard = dict_to_sorted_list(teams, ranking_f) 507 | 508 | if reference_w: 509 | save_reference(reference_w, sys.argv[1:], sboard, cboard) 510 | print("Results saved to %s"%reference_w) 511 | print("You can now compare with those results by using \033[32m-c %s\033[0m"%reference_w) 512 | else: 513 | display(sboard, cboard, reference, limit) 514 | 515 | 516 | -------------------------------------------------------------------------------- /scorings.py: -------------------------------------------------------------------------------- 1 | import math 2 | import sys 3 | 4 | # ---------------------------------------------------------------------------- 5 | # SCORING FUNCTIONS 6 | # ---------------------------------------------------------------------------- 7 | 8 | def score_ooo(base=100, top=500, k=0.08, j=1, time=2880): 9 | '''Log-based Decay formula used for the Defcon Quals in 2018, 2019, and 2020. 10 | Format: ooo:base,top,k,j,time 11 | Points: @base + ( @top - @base ) / (1 + @k * Solved(@time) * Log (@j * Solved(@time))) 12 | Default value: ooo:100,500,0.08,1,2880''' 13 | def f(chall): 14 | n = chall.get_solve_count(int(time)) 15 | if n==0: 16 | chall.points = int(top) 17 | else: 18 | chall.points = int(int(base) + float(int(top)-int(base))/(1 + float(k)*n * math.log(float(j)*n))) 19 | return f 20 | 21 | def score_ctfd(base=100, top=500, decay=20, time=2880): 22 | '''Parabolic function available in ctfd. 23 | Format: ctfd:base,top,decay,time 24 | Points: max(base, (((base - top)/(decay**2)) * (Solved(@time)**2)) + top) 25 | Default value: ctfd:100,500,20,2880''' 26 | def f(chall): 27 | n = chall.get_solve_count(int(time)) 28 | chall.points = max(int(base), int(math.ceil( (((int(base)- int(top))/(int(decay)**2)) * (n**2)) + int(top) ))) 29 | return f 30 | 31 | def score_ccc(base=30, top=500, k=11.92201, j=1.206069, time=2880): 32 | '''Exponential decay formula used by the CCC CTF. 33 | Format: ccc:base,top,k,j,time 34 | Points: @base + ( @top - @base ) / (1 + (max(0, Solved(@time)-1)/ @k) ** @j) 35 | Default value: ooo:30,500,11.92291,1.206069,2880''' 36 | def f(chall): 37 | n = chall.get_solve_count(int(time)) 38 | chall.points = int(round(int(base) + float(int(top)-int(base)) / (1 + (max(0, n - 1) / float(k)) ** float(j)))) 39 | return f 40 | 41 | def score_time(base=30, top=500, i=0.75, n=1): 42 | '''Incremental model in which the number of points increase with time 43 | Format: time:base,top,i,n 44 | Points: @base + 1 point every @i minutes until @top or until @n-th team solve it 45 | Default value: time:20,500,0.75,1''' 46 | def f(chall): 47 | min_time = chall.first_blood(int(n)) 48 | if min_time: 49 | chall.points = int(round(min(int(top), int(base)+float(min_time[1])/float(i)))) 50 | else: 51 | chall.points = int(top) 52 | return f 53 | 54 | def score_five(v1=10, v2=15, v3=20, v4=40, t=2880): 55 | '''Classic five levels (500,400,300,200,100) challenges. 56 | Format: five:v1,v2,v3,v4,t 57 | Points: 500 if Solved(@t) < @v1; 400 if Solved(@t) < @v2; 300 if Solved(@t) < @v3; 200 if Solved(@t) < @v4; 100 otherwise 58 | Default: five:10,15,20,40,0''' 59 | def f(chall): 60 | n = chall.get_solve_count(int(t)) 61 | if n <= int(v1): chall.points=500 62 | elif n <= int(v2): chall.points=400 63 | elif n <= int(v3): chall.points=300 64 | elif n <= int(v4): chall.points=200 65 | else: 66 | chall.points = 100 67 | return f 68 | 69 | def score_lin(base=100, top=500, step=8, time=2880): 70 | '''Linear Decay formula in which points decrease by a fixed amount for each solve. 71 | Format: lin:base,top,step,time 72 | Points: max(@base, @top - @step * Solved(@time)) 73 | Default value: lin:100,500,8,2880''' 74 | def f(chall): 75 | n = chall.get_solve_count(int(time)) 76 | p = int(top) - int(step)*n 77 | if p0 else 0.1 135 | x = float(x) / 100 136 | cap = params[1] if len(params)>1 else 100 137 | cap = float(cap) / 100 138 | p2 = params[2] if len(params)>2 else "+{}".format(3*24*60) # +3 days default 139 | from time import strftime, localtime 140 | if isinstance(p2, str) and p2.startswith('+'): 141 | # Time relative to the first open 142 | # TODO: human-friendly time 143 | plusminutes = int(p2[1:]) 144 | first_open = min(c.open_time for c in all_challs.values()) 145 | p2 = first_open + 60*plusminutes 146 | competition_end_time = int(p2) 147 | #print(strftime('[ ] competition_end_time: %a, %d %b %Y %H:%M:%S %Z', localtime(competition_end_time)), file=sys.stderr) 148 | 149 | # 2. Compute the bonus 150 | for chall, time, order in team.solved: 151 | fb_team, fb_time = chall.first_blood(1) 152 | # Is this the team that scored the first blood? 153 | if fb_team != team: 154 | continue 155 | assert fb_time == time; assert order == 1 156 | # delta to the second-blood 157 | if chall.first_blood(2): 158 | sb_team, sb_time = chall.first_blood(2) 159 | else: # If no one else solved it, delta to the competition end 160 | sb_team = "EVERYBODY"; assert competition_end_time > chall.open_time 161 | sb_time = (competition_end_time - chall.open_time) / 60 # See add_solution 162 | delta = int(sb_time - fb_time); assert delta>=0 163 | bonus = x * chall.points * delta; assert bonus>=0 164 | if bonus > cap*chall.points: # Cap 165 | bonus = cap*chall.points 166 | bonus = int(bonus) # Rounds towards 0, intentionally so that "super-easy" challenges don't give first-blood points 167 | print("[.] Awarding {:4} points ({:4.0%} of {}) for {} to {}, who solved it {} minutes before {}".format( 168 | bonus, float(bonus)/chall.points, chall.points, chall.name, team.name, delta, sb_team), file=sys.stderr) 169 | #print(strftime(' first-blood at %a, %d %b %Y %H:%M:%S %Z', localtime(fb_time*60+chall.open_time)), file=sys.stderr) 170 | #print(' {} minutes after the challenge was opened'.format(fb_time), file=sys.stderr) 171 | team.bonus += bonus 172 | --------------------------------------------------------------------------------