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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>XSS Sample</title> | |
| <style type="text/css"> | |
| html { | |
| background-image: url('https://reset.ga/Eromanga.png'); | |
| background-size: cover; | |
| } |
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 | |
| /** | |
| * Proxy Tunnel | |
| * | |
| * @author Fray117 | |
| * @package ExploiterID/Proxy | |
| * @version 0.4.1 | |
| */ | |
| // Remove Execution Time Limit |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3DUTF-8"> | |
| <title>Segera Lakukan Konfirmasi Email</title> | |
| <style>body { | |
| width: 100% !important; | |
| } |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> | |
| <meta name="twitter:card" value="RESTRICTED AREA ON GLOBEDNET"> | |
| <meta property="og:title" content="RESTIRCTED AREA ON GLOBEDNET"> | |
| <meta property="og:type" content="website"> | |
| <title>Authorization Gate</title> | |
| <style media="screen" type="text/css"> |
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
| '-' | |
| ' ' | |
| '&' | |
| '^' | |
| '*' | |
| ' or ''-' | |
| ' or '' ' | |
| ' or ''&' | |
| ' or ''^' | |
| ' or ''*' |
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 | |
| /** | |
| * Censor the part of string | |
| * | |
| * @param mixed $str | |
| * @param mixed $mask | |
| * @param int $intensity | |
| * @param int $reveal | |
| * @return string | |
| */ |
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 java.util.Scanner; | |
| public class Arrow { | |
| public static void main(String[] args) { | |
| Scanner input = new Scanner(System.in); | |
| System.out.print("Size: "); | |
| int line = Integer.parseInt(input.nextLine()); | |
| int median = line / 2; |
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
| var container = document.getElementById("grid-container").getElementsByClassName("ytd-expanded-shelf-contents-renderer"); | |
| for (let i = 0; i < container.length; i++) { | |
| setTimeout(() => { | |
| container[i].querySelector("[aria-label^='Unsubscribe from']").click(); | |
| document.getElementById("confirm-button").click(); | |
| console.log(`${container[i].children[1].children[1].children[0].children[0].children[0].innerText | |
| } unsubscribed (${i} out of ${container.length})`); | |
| }, 2000); | |
| } |
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 CamelCase(str) { | |
| return str.split(/\W/).map(val => { | |
| let raw = val.toLowerCase() | |
| return raw.charAt(0).toUpperCase() + raw.slice(1) | |
| }).join(''); | |
| } | |
| // keep this function call here | |
| console.log(CamelCase("BOB loves-coding")); |
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 generatePlayers(player, dice) { | |
| let players = [] | |
| for (let id = 0; id < player; id++) { | |
| let dices = [] | |
| for (let die = 0; die < dice; die++) { | |
| dices.push(0) | |
| } |
OlderNewer