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 | |
// $wordlist, acho que e a lista do challange anterior que retornou uma porrada de conteudo | |
$cookie_data = 'ClVLIh4ASCsCBE8lAxMacFMZV2hdVVotEhhUJQNVAmhSEV4sFxFeaAw' | |
function xor_encrypt($in, $key) { | |
# $key = '<censored>'; | |
$text = $in; | |
$outText = ''; |
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
Show hidden characters
[ | |
/* @ EMPTY WINDOW | |
* Style for empty (no tabs) window | |
========================================================================= */ | |
{ | |
"class": "sheet_container_control", | |
"layer0.tint": [37, 43, 57], | |
"layer0.opacity": 1.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
import glob,os,pdb,time | |
class File_: | |
def __init__(self,name_,codes_,codeLength_,shortName_): | |
self.name=name_ | |
self.codes=codes_ | |
self.codeLength=codeLength_ | |
self.shortName=shortName_ |
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
diskutil list | |
diskutil unmountdisk diskN | |
sudo dd if=retropie-v3.1-rpi1.img of=/dev/rdisk3 bs=1m |
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
git rm $(git ls-files --deleted) |
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 string | |
def words_product(word): | |
words = string.ascii_uppercase | |
multiplier = 1 | |
for letter in word.upper(): | |
multiplier *= words.index(letter) + 1 | |
return multiplier % 45 |
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 sys | |
import socket | |
import string | |
HOST="irc.freenode.net" | |
PORT=6667 | |
NICK="SuperAwesomeNickForARobot" | |
IDENT="thatawesomenick" | |
REALNAME="AwesomeRobot" | |
CHANNEL = "#MyAwesomeRobotChannel" |
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
# -*- coding: utf-8 -*- | |
from path import path | |
import paramiko | |
import os, sys, time | |
def find_between( s, first, last ): | |
try: | |
start = s.index( first ) + len( first ) | |
end = s.index( last, start ) | |
return s[start: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
shh THIS IS FIBODOGE SUCH WOW | |
quiet | |
fibodoge was created with dogescript by arthurbarros at github | |
such appreciate, much thanks, wow | |
loud | |
such fibodoge much number | |
rly number bigger 2 | |
doge is 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 WebSocket = require('ws'), | |
Entities = require('html-entities').XmlEntities, | |
http = require('https'); | |
var TransportHelper = function(){} | |
TransportHelper.prototype.parse = function(data) | |
{ | |
data = JSON.parse(JSON.parse(data).data); | |
if(typeof data == 'string'){ |