Skip to content

Instantly share code, notes, and snippets.

Go to: chrome://net-internals/#modules
Find Module by name, for e.g. "Alexa"
Get it's ID: `cknebhggccemgcnbidipinkifmmegdel`
Find chrome ext directory by profile:
```
$ sudo find / -iname "cknebhggccemgcnbidipinkifmmegdel"
​ /home/devil/.config/google-chrome/Profile 1/Extensions/cknebhggccemgcnbidipinkifmmegdel
```
# => Open this file
$ sudo vi /etc/default/tlp
# => Set this from 1 to 0:
USB_AUTOSUSPEND=0
# => Reboot
# SD card reader should work #
@duraki
duraki / breach_compilation_passlist-extraction.txt
Last active May 7, 2022 12:49
1.4 billion password breach compilation wordlist
# => create a wordlist from original 41G stash via:
$ grep -rohP '(?<=:).*$' | uniq > breachcompilation.txt
# => compressed with:
$ 7z a breachcompilation.txt.7z breachcompilation.txt
# => size (rel):
## 4.1G compressed
## 9.0G uncompressed
@duraki
duraki / shell_bind_tcp.asm
Created December 9, 2017 18:54 — forked from geyslan/shell_bind_tcp.asm
Shell Bind TCP in Assembly (Linux/x86)
; This is a snippet of the original file in https://github.com/geyslan/SLAE/blob/master/1st.assignment/shell_bind_tcp.asm
global _start
section .text
_start:
; syscalls (/usr/include/asm/unistd_32.h)
; socketcall numbers (/usr/include/linux/net.h)
@duraki
duraki / art.yaml
Last active December 6, 2019 03:22
Mockup YAML config for static blog generator `art`
---
minimal:
artist: "Your Name"
title: "Blog Title"
description: "Blog description."
theme: "sterdo"
posts:
in: /posts/in # => post in (md)
out: /posts/out # => post out (html)