Skip to content

Instantly share code, notes, and snippets.

View peligro63's full-sized avatar
🎧
Focusing

riepke peligro63

🎧
Focusing
View GitHub Profile
@peligro63
peligro63 / How to download streaming video
Created November 6, 2018 16:29 — forked from danfinlay/How to download streaming video.md
How to download a streaming video with Google Chrome
#How to download streaming video
Streaming just means a download that they don't want you to keep. But Chrome's developer tools make it easy to access what's really going on under the hood.
##Open Developer Tools
From the page where you want to download some things, go into your chrome menu to open the developer tools. You can either:
1. (On a mac): Command-option-J
2. (On a PC): Control-alt-J
@peligro63
peligro63 / breachcompilation.txt
Created May 18, 2018 00:00
1.4 billion password breach compilation wordlist
wordlist created from original 41G stash via:
grep -rohP '(?<=:).*$' | uniq > breachcompilation.txt
Then, compressed with:
7z a breachcompilation.txt.7z breachcompilation.txt
Size:
# Logfile created on 2017-11-02 14:12:17 +0900 by logger.rb/v1.2.7
I, [2017-11-02T14:12:17.249598 #26147] INFO -- : #<BuildRuby:0x005597d7a1b520 @REPOSITORY="https://svn.ruby-lang.org/repos/ruby/trunk", @REPOSITORY_TYPE=:svn, @git_branch=nil, @svn_revision=nil, @TARGET_NAME="trunk-test", @SRC_DIR="/home/ko1/ruby/src", @BUILD_DIR="/home/ko1/ruby/build", @INSTALL_DIR="/home/ko1/ruby/install", @TARGET_SRC_DIR="/home/ko1/ruby/src/trunk-test", @TARGET_BUILD_DIR="/home/ko1/ruby/build/trunk-test", @TARGET_INSTALL_DIR="/home/ko1/ruby/install/trunk-test", @configure_opts=["--enable-shared"], @build_opts="-j40", @test_opts="TESTS='-j40'", @incremental=true, @steps=["checkout", "autoconf", "configure", "build_up", "build_miniruby", "build_ruby", "build_all", "build_install", "test_btest", "test_basic", "test_all", "test_rubyspec"], @quiet=false, @gist=false, @timeout=7200, @logfile="/home/ko1/ruby/logs/brlog.trunk-test.20171102-141217", @logger=#<Logger:0x005597d7a28b80 @progname=nil, @level=0, @default_formatter=#<Log
@peligro63
peligro63 / gist:fec4dd66eda2f23148df174ae58fa9ff
Created November 2, 2017 05:13 — forked from bkimble/gist:1365005
List local memcached keys using Ruby
#!/usr/bin/env ruby
# List all keys stored in memcache.
# Credit to Graham King at http://www.darkcoding.net/software/memcached-list-all-keys/ for the original article on how to get the data from memcache in the first place.
require 'net/telnet'
headings = %w(id expires bytes cache_key)
rows = []
@peligro63
peligro63 / gist:5fc5b710fca51506ff1a80ea2ec86a1a
Created November 2, 2017 05:13 — forked from bkimble/gist:1365005
List local memcached keys using Ruby
#!/usr/bin/env ruby
# List all keys stored in memcache.
# Credit to Graham King at http://www.darkcoding.net/software/memcached-list-all-keys/ for the original article on how to get the data from memcache in the first place.
require 'net/telnet'
headings = %w(id expires bytes cache_key)
rows = []