This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <windows.h> | |
#include <iostream> | |
#include <shlobj.h> | |
#include <time.h> | |
#include <cstdlib> | |
#include <string> | |
#include <sstream> | |
using namespace std; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define WIN32_LEAN_AND_MEAN | |
#define _WIN32_WINNT 0x0500 | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
#include <conio.h> | |
#include <string.h> | |
#include <windows.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import urllib2 | |
import json | |
import threading | |
def worker(): | |
orginal = -1 | |
while True: | |
req = urllib2.Request('https://lumerico.mx/api/') | |
req.add_header('Content-Type', 'application/json') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import urllib2 | |
import time | |
previous = -1 | |
def main(): | |
while True: | |
GetData() | |
time.sleep(30) | |
def GetData(): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OverTool v1.8.4.11 | |
Initializing CASC... | |
Mapping... | |
Adding Encryption Keys... | |
Added Encryption Key 6DD3212FB942714A | |
Tooling... | |
AUTOMATION ARENA | |
ID: 000001C2 | |
State: DEFEND |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OverTool v1.8.4.11 | |
Initializing CASC... | |
Mapping... | |
Adding Encryption Keys... | |
Added Encryption Key 6DD3212FB942714A | |
Tooling... | |
Cosmetics for Widowmaker in package 06E00000011CD48E | |
ACHIEVEMENT (4 items) | |
Pixel (Common Spray) | |
Cute (Common Spray) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OverTool v1.8.4.11 | |
Initializing CASC... | |
Mapping... | |
Adding Encryption Keys... | |
Added Encryption Key 6DD3212FB942714A | |
Tooling... | |
0000000001B4.07C: RIP-Tire | |
00000000140B.07C: Steel Trap | |
000000001D0F.07C: Concussion Mine | |
0000000029BA.07C: Heroic |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class YoutubeEmbed extends JBBCode\CodeDefinition { | |
public function __construct() | |
{ | |
parent::__construct(); | |
$this->setTagName("youtubeEmbed"); | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Controllers\EventEngine; | |
class EventHandler | |
{ | |
private static $EventPool = []; | |
public static function CreatePool($poolName){ | |
if(array_key_exists($poolName, self::$EventPool)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Controllers; | |
class StaticFileHandler { | |
private $basePath; | |
private $loadedFiles; | |
function __construct($basePath) |