View Turkiye-Il-Ilce.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
[ | |
{ | |
"il": "Adana", | |
"plaka": 1, | |
"ilceleri": [ | |
"Aladağ", | |
"Ceyhan", | |
"Çukurova", | |
"Feke", | |
"İmamoğlu", |
View gist:918d93323ad6cef57d6c2a0b11ef65f4
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
# Generated by iptables-save v1.6.1 on Tue May 7 19:15:45 2019 | |
*filter | |
:INPUT DROP [349:29624] | |
:FORWARD ACCEPT [0:0] | |
:OUTPUT ACCEPT [573:36440] | |
-A INPUT -i lo -j ACCEPT | |
-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT | |
-A INPUT -p tcp -m tcp --dport 22 -m conntrack --ctstate NEW,ESTABLISHED -j ACCEPT | |
-A INPUT -p tcp -m tcp --dport 80 -m conntrack --ctstate NEW,ESTABLISHED -j ACCEPT | |
-A INPUT -p tcp -m tcp --dport 445 -m conntrack --ctstate NEW,ESTABLISHED -j ACCEPT |
View README
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
needs; | |
rtl_fm | |
sox | |
wxtoimg (https://wxtoimgrestored.xyz/beta/wxtoimg-armhf-2.11.2-beta.deb) | |
wxmap on your server for map generation (https://wxtoimgrestored.xyz/beta/wxtoimg-amd64-2.11.2-beta.deb) | |
(because wxmap on ARM is not working, at least for me) | |
python3 | |
requests | |
noaa-apt | |
n2yo account and api key |
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 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 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> |
View ilce-listesi.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
[ | |
{"kod":99133,"il_kodu":"1","ad":"Şakirpaşa Havalimanı","il_adi":"ADANA"}, | |
{"kod":2033,"il_kodu":"1","ad":"ÇUKUROVA","il_adi":"ADANA"}, | |
{"kod":2032,"il_kodu":"1","ad":"SARIÇAM","il_adi":"ADANA"}, | |
{"kod":1806,"il_kodu":"1","ad":"İMAMOĞLU","il_adi":"ADANA"}, | |
{"kod":1757,"il_kodu":"1","ad":"ALADAĞ","il_adi":"ADANA"}, | |
{"kod":1748,"il_kodu":"1","ad":"YÜREĞİR","il_adi":"ADANA"}, | |
{"kod":1734,"il_kodu":"1","ad":"YUMURTALIK","il_adi":"ADANA"}, | |
{"kod":1687,"il_kodu":"1","ad":"TUFANBEYLİ","il_adi":"ADANA"}, | |
{"kod":1588,"il_kodu":"1","ad":"SAİMBEYLİ","il_adi":"ADANA"}, |
View captcha_readme.txt
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
Include AHGBold.tff | |
Run memcached at default port (11211) | |
Example captcha: https://i.ibb.co/sPQjW0K/index.png |
View format_btc.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 | |
function formatBtc($val){ | |
$val = number_format($val, 8); // round to 8 decimal points | |
$rtval = rtrim($val, "0"); // get rid of zeroes at the end | |
$x = strlen($val) - strlen($rtval); // get how many zeroes were deleted | |
if($x > 0){ | |
$rtval .= '<span style="color:#ffffff6f;">'; // start a "faded" <span> | |
// or try class="text-muted" for bootstrap | |
for($i = 0;$i < $x;$i++) // add deleted zeroes back | |
$rtval .= "0"; |
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 | |
// FOR NEW VERSION (1.0.6): https://gist.github.com/sh4dowb/86ad09b9bcbfce323b511395e446d616 | |
// for decrypting advanced version contact me on telegram | |
OlderNewer