Skip to content

Instantly share code, notes, and snippets.

View williamdes's full-sized avatar
πŸš€
Catching up on GitHub notifications

William Desportes williamdes

πŸš€
Catching up on GitHub notifications
View GitHub Profile
@NeklandChocobot
NeklandChocobot / Update-AUPackages.md
Last active February 24, 2025 19:48
Update-AUPackages Report #powershell #chocolatey
@ThEMarD
ThEMarD / flash-all.sh
Created January 13, 2021 09:08
flash all script for payton pie
#!/bin/sh
# Copyright 2012 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
@fvln
fvln / Jouons avec le phishing Paypal.md
Last active January 7, 2021 11:02
Quelques observations sur les attaques par phishing ciblant Paypal

Jouons avec le phishing Paypal

Courant septembre, j'ai testΓ© un dΓ©veloppement qui cherche des patterns parmi (les certificats TLS venant d'Γͺtre dΓ©livrΓ©s publiquement)[http://certstream.calidog.io/]. La limite de cette recherche, c'est qu'elle s'applique sur des noms de domaines et pas des URL complΓ¨tes ! Il suffit de filtrer ces certificats avec le mot-clΓ© Β« paypal Β» pour obtenir des dizaines de noms de domaines malveillants par jour, avec parfois... juste un .zip Γ  la racine. Comme j'en ai attrapΓ© quelques-uns (ici 16shop), c'est l'occasion de les dΓ©cortiquer ;)

Comment Γ§a marche ?

Essayons de comprendre comment les attaquants travaillent !

@taiki-e
taiki-e / maintenance-status-badges.md
Last active February 18, 2026 17:26
Markdown Maintenance status badges
🌞 Morning 123 commits β–ˆβ–‰β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 9.4%
πŸŒ† Daytime 345 commits β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 26.3%
πŸŒƒ Evening 548 commits β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Šβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 41.8%
πŸŒ™ Night 295 commits β–ˆβ–ˆβ–ˆβ–ˆβ–‹β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 22.5%
@jprieton
jprieton / update-phpmyadmin.sh
Last active August 14, 2021 10:42
Update phpMyAdmin 5.x to latest
#/bin/bash
# Download latest package
wget https://www.phpmyadmin.net/downloads/phpMyAdmin-latest-all-languages.tar.gz -O latest.tar.gz
# Create temp folder
mkdir ./phpmyadmin
# Decompress latest package
tar --extract --file=latest.tar.gz --strip-components=1 --directory=./phpmyadmin
@Tehnix
Tehnix / CI.yml
Created March 30, 2020 21:21 — forked from FedericoPonzi/CI.yml
Ready to use Github workflow for cross-compiling a rust binary to many Linux architectures.
# Instruction + template repo: https://github.com/FedericoPonzi/rust-ci
name: CI
on:
pull_request:
push:
branches:
- master
tags:
- 'v*.*.*'
@manualbashing
manualbashing / 1_troubleshooting.md
Last active September 23, 2022 14:22
[racadm Cheatsheet] for administration of Dell iDRAC with #racadm

Network Troubleshooting

Ping from iDRAC:

racadm ping <ip>

View Logs

@izikeros
izikeros / convert_ssh2_key_to_openssh.sh
Last active July 17, 2024 22:38
[convert ssh2 public key to openssh] Convert ssh2 public key to openssh format and add to authorized_keys #ssh #key
# if received key in format:
#β€”- BEGIN SSH2 PUBLIC KEY β€”-
#
#Comment: "rsa-key-20160402"
#AAAAB3NzaC1yc2EAAAABJQAAAgEAiL0jjDdFqK/kYThqKt7THrjABTPWvXmB3URI
#
# and you want to add it to authorized keys
# from: https://tutorialinux.com/convert-ssh2-openssh/
ssh-keygen -i -f coworker.pub >> ~/.ssh/authorized_keys
@vladox
vladox / download_sentry_data.py
Last active April 13, 2024 01:00 — forked from bubenkoff/download_sentry_data.py
Download all sentry events for a project. Useful for data processing
"""Download sentry data.
usage:
python download_sentry_data.py <org>/<project> <api_key>
"""
import requests
import csv
import sys
if __name__ == '__main__':