View SSLPinning.kt
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
package quevedo.soares.leandro.ssl | |
import okhttp3.Connection | |
import okhttp3.Interceptor | |
import okhttp3.MediaType.Companion.toMediaTypeOrNull | |
import okhttp3.Protocol | |
import okhttp3.Response | |
import okhttp3.ResponseBody.Companion.toResponseBody | |
import java.security.MessageDigest | |
import java.security.cert.Certificate |
View Dynv6.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
# Imports | |
import requests | |
import socket | |
import time | |
import traceback | |
import os | |
# Constants | |
ENDPOINT = "https://dynv6.com/api/update" | |
HOSTNAME = "....." |
View DatabaseDump.kt
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 android.content.Context | |
import android.database.Cursor | |
import androidx.core.database.getBlobOrNull | |
import androidx.core.database.getStringOrNull | |
import androidx.room.RoomDatabase | |
import org.json.JSONArray | |
import org.json.JSONObject | |
private fun listTables(db: RoomDatabase): ArrayList<String> { | |
val buffer = arrayListOf<String>() |
View Array benchmark.js
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
(() => { | |
function n() { | |
let length = Math.floor((Math.random() * 90) + 10); | |
let buffer = ""; | |
for (let i = 0; i < length; i ++) { | |
let tmp = Math.floor(Math.random() * 26); | |
buffer += String.fromCharCode(65 + tmp); | |
} | |
return buffer; |