View turkey_city_county_list.json
This file contains 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
[ | |
{ | |
"city": "Adana", | |
"plate_code": 1, | |
"counties": [ | |
"Aladağ", | |
"Ceyhan", | |
"Çukurova", | |
"Feke", | |
"İmamoğlu", |
View stake_limbo_verify.py
This file contains 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 hmac | |
import hashlib | |
def getLimboOutcome(server, client, nonce): | |
server = server.encode() | |
client = client.encode() | |
nonce = str(nonce).encode() | |
round = 0 | |
hash = hmac.new(server, client+b':'+nonce+b':'+str(round).encode('utf-8'), hashlib.sha256).digest() | |
first4 = hash[:4] |
View decrypt.py
This file contains 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
# I absolutely hated crypto-js for this. non-standard configurations, weird algorithms, ... | |
# well obviously you can encrypt it with a better configuration which people will not | |
# go crazy figuring out its implementation, but in this case I wasn't encrypting the data. | |
import base64 | |
from Crypto.Hash import MD5 | |
from Crypto.Util.Padding import unpad | |
from Crypto.Cipher import AES | |
# generated using: CryptoJS.AES.encrypt('test 123456 plaintext', 'some password').toString() |
View retrieve_password.py
This file contains 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
# source: https://stackoverflow.com/questions/23153159/decrypting-chromium-cookies | |
# just put a few answers together for a working script | |
# python3 retrieve_password.py | |
# outputs passwords.csv | |
import secretstorage | |
import sqlite3 | |
import os | |
import csv | |
from Crypto.Cipher import AES |
View send_usdt.py
This file contains 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 time | |
from tronapi import Tron | |
full_node = 'https://api.trongrid.io' | |
solidity_node = 'https://api.trongrid.io' | |
event_server = 'https://api.trongrid.io' | |
pkey = "private_key_hex" | |
payments = [ |
View phpkoru.deobfuscate.php
This file contains 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 | |
$input = file_get_contents("untitled.php"); | |
//edit this filename | |
$fge_ebg13 = "str_rot13"; | |
$onfr64_qrpbqr = "base64_decode"; | |
$eha_pbqr = "cnVuX2NvZGU="; |
View fuck-ethereum.py
This file contains 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
""" | |
do you have an app that fucking supports geth only? | |
and after new cryptobros got high and decided you should have at least 1 TB SSD and 10 fucking free days to synchronize to run a "fast" node, you can't be fucking bothered? | |
well I did, and there you fucking go. this fucking shit gets all stupid motherfucking data from cloudflare and handles account creation and sending etc | |
fuck you web 3.0 | |
run geth with snap and dont run no consensus or what in the flying fuck that is | |
note that you probably need to add more methods to the cloudflare array for block and tx fetching etc. | |
I also added gas price fetching because the app was fucking dumb and sending 0x0 |
View selenium-save-profile-session.py
This file contains 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
# Selenium does not use the given profile, but copies it, and uses a temporary profile. | |
# As a result, new cookies and sessions etc. are not saved. | |
# To fix it, we get the actual profile firefox is using, kill firefox manually so geckodriver | |
# doesn't delete profile data. Copying the profile when it's being used is generally not a good idea. | |
# After killing firefox profile and databases are unlocked, we copy the "temporary" profile | |
# to our old profile. | |
# | |
# driver.profile doesn't provide the actual temporary profile, but another copy of it. And firefox | |
# does not use that one. that's why I got it from process list. | |
# |
View ud64_deobfuscator.php
This file contains 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
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<style>*{font-family:Arial;}a{text-decoration:none;}</style> | |
<link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/base-min.css"> | |
<meta name="description" content="UD64, Unknowndevice64 deobfuscator/decrypter."> | |
<meta name="keywords" content="ud64 deobfuscate, ud64 cleaner, ud64 beautifier, ud64 decrypt"> | |
<title>UD64 - Unknowndevice64 Deobfuscator</title> | |
<body> | |
<center> |
NewerOlder