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 customModuleLoader = require('module'); | |
| export class CustomModuleLoader { | |
| public cOptions: any = require('../tsconfig.json').compilerOptions; | |
| public replacePaths: any = {}; | |
| constructor() { | |
| Object.keys(this.cOptions.paths).forEach(alias => { | |
| this.replacePaths[alias.replace(/\*.?/, '(.*)')] = this.cOptions.paths[alias][0].replace(/\*.?/, '$1'); |
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
| function hldsDecrypt() | |
| { | |
| this.decode_table = [ | |
| 0x5A180000, | |
| 0x1A001040, | |
| 0x00104000, | |
| 0x12401040, | |
| 0x40105040, | |
| 0x10504000, | |
| 0x52401000, |
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 | |
| if($_SERVER['REMOTE_ADDR'] == 'IP cimed') { | |
| $sql = mysql_connect("IP", "Felhasználónév", "Jelszó");/ | |
| mysql_select_db('account'); | |
| if (!$sql) { | |
| echo "Kapcsolat hiba!"; | |
| } else { | |
| $mysql_query = mysql_query("SELECT login, email from account", $sql); | |
| while($email = mysql_fetch_assoc($mysql_query)) { | |
| $message = sprintf("<p>Hi, %s!</p>\r\n<p>Welcome To MT2SRV.HU</p>", $email['login']); |
NewerOlder