Skip to content

Instantly share code, notes, and snippets.

View fellypsantos's full-sized avatar
🎯
Focusing

Fellyp Karlon fellypsantos

🎯
Focusing
  • Brazil
View GitHub Profile
@fellypsantos
fellypsantos / tplink-unauth-exploit.py
Created April 27, 2024 15:46 — forked from eacmen/tplink-unauth-exploit.py
TP-LINK WL-WA850RE POC Unauthenticated Exploit
@fellypsantos
fellypsantos / setup-react-native-env.ps1
Created September 28, 2024 00:42
Script to setup environment variables to make react-native build work.
# Function to set an environment variable if it doesn't exist
function Set-EnvironmentVariableIfNotExists {
param (
[string]$name,
[string]$value,
[string]$target = "User" # By default, set for current user
)
# Check if the environment variable exists
$currentValue = [System.Environment]::GetEnvironmentVariable($name, $target)
@fellypsantos
fellypsantos / AccountService.java
Created December 20, 2024 03:21 — forked from Amrsatrio/AccountService.java
some epic/fortnite endpoints
package com.tb24.fn.network;
import com.google.gson.JsonObject;
import com.tb24.fn.model.account.*;
import retrofit2.Call;
import retrofit2.http.*;
import java.util.List;
import java.util.Map;