Skip to content

Instantly share code, notes, and snippets.

View fyxme's full-sized avatar
🔴
blinking

fyx fyxme

🔴
blinking
View GitHub Profile
@fyxme
fyxme / burp-target-scope-options.json
Last active August 20, 2025 20:38
Burp Target Scope Options file to exclude all irrelevant stuff
{
"target":{
"scope":{
"advanced_mode":true,
"exclude":[
{
"enabled":true,
"host":".*\\.google\\.com",
"protocol":"any"
},
@fyxme
fyxme / sqlmap-proxy.go
Last active October 10, 2024 16:07
Golang proxy example to abuse more complex SQL injections which may not be picked up by sqlmap. For example, SQL injections in CTF challenges
package main
/*
Golang proxy example to abuse more complex SQL injections which may not be picked up by sqlmap. For example, SQL injections in CTF challenges
*/
import (
"fmt"
@fyxme
fyxme / next_prime.py
Last active October 10, 2024 16:12
next_prime.py
#!/usr/bin/env python
import math
def isPrime(n):
""" Check if n is prime using trial division as our primality test """
if n%2 == 0 and n > 2:
# takes care of all the even numbers
return False
from random import random
from time import time
from multiprocessing import Pool
import matplotlib.pyplot as plt
def _avg(results):
return sum(results) / float(len(results))
def _range(results):