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
#!/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 / 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
<?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 / 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
@pdelteil
pdelteil / munis-dominios.txt
Created April 9, 2021 19:35
dominios de municipalidades de Chile
_dmarc.dalc-vps2.munidalcahue.cl
_dmarc.futaleufu.cl
_dmarc.hualane.cl
_dmarc.munialtodelcarmen.cl
_dmarc.muniquellon.cl
_dmarc.munirauco.cl
_dmarc.munivichuquen.cl
_mta-sts.munivichuquen.cl
1.municipalidadalgarrobo.cl
1402.lascondes.cl
@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
id: fuzzing-example
info:
name: Connection pooling example
author: pdteam
severity: info
requests:
- payloads:
code: codes.txt
@pdelteil
pdelteil / installKernel.sh
Last active March 31, 2022 15:33
How to update your kernel
#!/bin/bash
# pdelteil@gmail.com
# Oct 2017
KERNEL=$(uname -a |awk '{print $3}'|awk -F"-" '{print $1}')
echo "Current kernel version" $KERNEL
MAIN_VER_CUR_KERNEL=$(echo "$KERNEL" |awk -F"." '{print $1}')
MIN_VER_CUR_KERNEL=$(echo "$KERNEL" |awk -F"." '{print $2}')
URL="http://kernel.ubuntu.com/~kernel-ppa/mainline/"
echo "Fetching list of kernels..."
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