Skip to content

Instantly share code, notes, and snippets.

@bribes
bribes / break-into-any-microsoft-building.md
Last active August 30, 2025 21:00
Break into any Microsoft building: Leaking PII in Microsoft Guest Check-In

Break into any Microsoft building: Leaking PII in Microsoft Guest Check-In (All Buildings + Guest/Employee PII)

Date: 07/18/25

Hey! I'm Faav, a 15 y/o amateur bug bounty hunter and this is my first write-up! So this is the story of how I figured out how to leak PII in Microsoft Guest Check-In.

One day I was poking around random Microsoft subdomains when I stumbled upon guest.microsoft.com.

image
@zeroc0d3
zeroc0d3 / README.md
Created February 9, 2020 03:53 — forked from justincjahn/README.md
Minecraft server(s) using systemd and screen.

Install

# Install dependencies
sudo yum install -y java-1.8.0-openjdk screen

# Create a new unprivileged user for minecraft
useradd -r -m -d /opt/minecraft minecraft

# Create the directory that will house our minecraft instances

sudo su --shell /bin/bash minecraft

@kawaii
kawaii / default.conf
Created February 7, 2020 10:38
An nginx virtual host configuration file, for use with the MyBB Docker distribution.
upstream mybb {
server mybb:9000 weight=5;
}
server {
listen 80;
root /var/www/html;
index index.html index.php;
@munim
munim / docker_start_stopped_container_in_interactive_mode.md
Last active April 9, 2025 13:33
Start a stopped docker container in bash/shell interactive mode

Start a stopped docker container in bash/shell interactive mode

For instance, you have just pulled a CentOS or Ubuntu image using docker pull centos:latest or docker pull ubuntu:latest.

Your immediate command would be

# docker run -it centos:latest
# docker ps -a
@adamgen
adamgen / timedatectl list-timezones
Created April 10, 2017 09:36
An online display timedatectl list-timezones list
Africa/Abidjan
Africa/Accra
Africa/Addis_Ababa
Africa/Algiers
Africa/Asmara
Africa/Bamako
Africa/Bangui
Africa/Banjul
Africa/Bissau
Africa/Blantyre
@tstout
tstout / liquibase-schema.groovy
Last active December 14, 2022 20:08
Example of defining liquibase schema with groovy dsl #liquibase
package db.io
databaseChangeLog {
//
// Liquibase column types. Oddly enough, these are not mentioned in the docs, these were obtained from the source.
//
// "BIGINT"
// "NUMBER || "NUMERIC"
// "BLOB"