Skip to content

Instantly share code, notes, and snippets.

View wh1t3h47's full-sized avatar
:octocat:
Escape the matrix!

Antônio Martos Harres wh1t3h47

:octocat:
Escape the matrix!
View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons' rel="stylesheet">
<link href="https://unpkg.com/vuetify/dist/vuetify.min.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
</head>
<body>
<div id="app">
@sundowndev
sundowndev / GoogleDorking.md
Last active November 15, 2024 20:47
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"
@Mazyod
Mazyod / delete-older-docker-image-tags.sh
Last active September 16, 2023 21:34
Bash script that loops over Docker images, and keeps only the latest tag for each image name (Repository).
#!/bin/bash
set -e
echo "Script for cleaning up Docker images"
# First, we grab a list of all images
docker_images=$(docker images --format "{{.ID}}|{{.Repository}}|{{.Tag}}")
# prepare a image name lookup