Skip to content

Instantly share code, notes, and snippets.

View pdelteil's full-sized avatar
🌴
On vacation

Philippe Delteil pdelteil

🌴
On vacation
View GitHub Profile
resolvers:
- 1.1.1.1
- 1.0.0.1
- 8.8.8.8
- 8.8.4.4
- 9.9.9.9
- 9.9.9.10
- 77.88.8.8
- 77.88.8.1
- 208.67.222.222
@pdelteil
pdelteil / gob-cl-chile.txt
Last active April 24, 2024 04:51
domains government sites Chile
_5a34971da639c5b9eb49bedf7f462269.eboleta.sii.cl
_dmarc.pjud.cl
10.inapi.cl
11.alo.mop.cl
11.inapi.cl
12.alo.mop.cl
12.inapi.cl
13.inapi.cl
14.alo.mop.cl
14.inapi.cl
#!/bin/bash
# Prompt the user to specify whether they want to remove the downloaded files or not
read -p "Do you want to remove the downloaded files? (y/n): " remove_files
# Loop through a range of numbers from 7422 to 17000
for i in $(seq 7422 17000); do
# Construct the filename based on the current loop iteration
filename="BoltApp-$i.apk"
@pdelteil
pdelteil / configbbrf.sh
Last active September 5, 2023 22:51
Config script for bbrf
ADDRESS='127.0.0.1'
PORT=6984
COUCHDB="https://$ADDRESS:$PORT"
#username of the admin (created previously)
ADMIN_NAME='admin'
#admin password
ADMIN_PASS='admin'
#the password to assign to user bbrf
@pdelteil
pdelteil / gist:6ebac2290a6fb33eea1af194485a22b1
Created June 14, 2019 15:48
CMS made simple SQL Injection
#!/usr/bin/env python
# Exploit Title: Unauthenticated SQL Injection on CMS Made Simple <= 2.2.9
# Date: 30-03-2019
# Exploit Author: Daniele Scanu @ Certimeter Group
# Vendor Homepage: https://www.cmsmadesimple.org/
# Software Link: https://www.cmsmadesimple.org/downloads/cmsms/
# Version: <= 2.2.9
# Tested on: Ubuntu 18.04 LTS
# CVE : CVE-2019-9053
@pdelteil
pdelteil / gist:99331c07284d9c815254809484c326d4
Last active May 17, 2023 18:14
Wahoo firmware versions
Size (MB), name, URL
18.34,BoltApp-7412.apk,http://wahoo-cloud-eu.wahooligan.com/firmware/elemnt/boltapp/7412/BoltApp.apk
18.34,BoltApp-7413.apk,http://wahoo-cloud-eu.wahooligan.com/firmware/elemnt/boltapp/7413/BoltApp.apk
18.34,BoltApp-7414.apk,http://wahoo-cloud-eu.wahooligan.com/firmware/elemnt/boltapp/7414/BoltApp.apk
18.34,BoltApp-7415.apk,http://wahoo-cloud-eu.wahooligan.com/firmware/elemnt/boltapp/7415/BoltApp.apk
18.34,BoltApp-7416.apk,http://wahoo-cloud-eu.wahooligan.com/firmware/elemnt/boltapp/7416/BoltApp.apk
18.34,BoltApp-7417.apk,http://wahoo-cloud-eu.wahooligan.com/firmware/elemnt/boltapp/7417/BoltApp.apk
18.34,BoltApp-7418.apk,http://wahoo-cloud-eu.wahooligan.com/firmware/elemnt/boltapp/7418/BoltApp.apk
18.35,BoltApp-7419.apk,http://wahoo-cloud-eu.wahooligan.com/firmware/elemnt/boltapp/7419/BoltApp.apk
18.35,BoltApp-7420.apk,http://wahoo-cloud-eu.wahooligan.com/firmware/elemnt/boltapp/7420/BoltApp.apk
@pdelteil
pdelteil / Wahoo_Elemnt.md
Created May 2, 2023 05:12 — forked from Intyre/Wahoo_Elemnt.md
Wahoo Elemnt - Tips, tricks and custom images
@pdelteil
pdelteil / gist:9def73fc23815153adb0dd5ce46bb2a7
Created May 26, 2020 00:45
Converts morse code in image to text. The script supports two colors.
import sys
import string
import re
from PIL import Image
morseAlphabet = {"A": ".-","B": "-...","C": "-.-.","D": "-..","E": ".","F": "..-.","G": "--.","H": "....",
"I": "..","J": ".---","K": "-.-","L": ".-..","M": "--","N": "-.","O": "---","P": ".--.","Q": "--.-","R": ".-.",
"S": "...","T": "-","U": "..-","V": "...-","W": ".--","X": "-..-","Y": "-.--","Z": "--.."," ": "/",
"1" : ".----","2" : "..---","3" : "...--","4" : "....-","5" : ".....","6" : "-....","7" : "--...","8" : "---..",
"9" : "----.","0" : "-----",".": ".-.-.-",",": "--..--",":": "---...","?": "..--..","'": ".----.","-": "-....-",
<?php
class Sample {
// constructor
public function __construct($value, $variable_name, $record_id, $event_id)
{
$this->value = $value;
$this->variable_name = $variable_name;
$this->record_id = $record_id;
$this->event_id = $event_id;
}
@pdelteil
pdelteil / CVE-2018-15473.py
Last active August 24, 2022 02:01
CVE-2018-15473
#!/usr/bin/env python
###########################################################################
# ____ _____ _____ _ _ #
# / __ \ / ____/ ____| | | | #
# | | | |_ __ ___ _ __ | (___| (___ | |__| | #
# | | | | '_ \ / _ \ '_ \ \___ \\___ \| __ | #
# | |__| | |_) | __/ | | |____) |___) | | | | #
# \____/| .__/ \___|_| |_|_____/_____/|_| |_| #
# | | Username Enumeration #
# |_| #