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
| // ==UserScript== | |
| // @name ESL Admin Helper | |
| // @namespace https://play.eslgaming.com/rainbowsix/europe-pc/ | |
| // @version 0.17 | |
| // @description ESL Rainbow Six Siege Admin Helper | |
| // @author Deadshot | |
| // @updateURL https://gist.githubusercontent.com/stevenklar/4a22dbb739dbe17b7c9159f833d566cf/raw | |
| // @downloadURL https://gist.githubusercontent.com/stevenklar/4a22dbb739dbe17b7c9159f833d566cf/raw | |
| // @require https://greasyfork.org/scripts/622-super-gm-setvalue-and-gm-getvalue-js/code/Super_GM_setValue_and_GM_getValuejs.js?version=1786 | |
| // @match https://play.eslgaming.com/* |
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
| #!/bin/bash | |
| # Setup variables | |
| secret="default --namespace default" | |
| fullchain="/etc/letsencrypt/live/example.com/fullchain.pem" | |
| privkey="/etc/letsencrypt/live/example.com//privkey.pem" | |
| privkey_rsa="/etc/letsencrypt/live/example.com/privkey-rsa.pem" | |
| # Generate rsa privkey | |
| openssl rsa -in $privkey > $privkey_rsa |
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
| from flatten_json import flatten | |
| import json | |
| print("> Open File") | |
| file = open("FILEPATH","r") | |
| print("> Print File") | |
| data = file.read() | |
| print("> Load json from file") | |
| translationDict = json.loads(data) | |
| print("> Flatten") |
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 requests | |
| import threading | |
| from lxml import etree | |
| # Variables =) | |
| users = ["muhtrix", "Tomsi203", "ShivaLu", "Zael17"] | |
| startRange = 3341838 | |
| chunks = 50 | |
| xreporter = '//*[@id="reportInfo"]/div[3]/span[2]/span[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
| #!/usr/bin/env kscript | |
| //DEPS com.squareup.okhttp3:okhttp:4.9.0 | |
| import java.io.IOException; | |
| import okhttp3.OkHttpClient; | |
| import okhttp3.CertificatePinner | |
| import okhttp3.Response; | |
| import okhttp3.Interceptor | |
| import okhttp3.Request |
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
| # Copyright (C) 2017 Mandiant, Inc. All Rights Reserved. | |
| #!/usr/bin/env python3 | |
| """ | |
| Run FLOSS to automatically extract obfuscated strings and apply them to the | |
| currently loaded module in IDA Pro. | |
| author: Willi Ballenthin | |
| email: [email protected] | |
| """ |