THIS GIST WAS MOVED TO TERMSTANDARD/COLORS REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
| {url:'stun:stun01.sipphone.com'}, | |
| {url:'stun:stun.ekiga.net'}, | |
| {url:'stun:stun.fwdnet.net'}, | |
| {url:'stun:stun.ideasip.com'}, | |
| {url:'stun:stun.iptel.org'}, | |
| {url:'stun:stun.rixtelecom.se'}, | |
| {url:'stun:stun.schlund.de'}, | |
| {url:'stun:stun.l.google.com:19302'}, | |
| {url:'stun:stun1.l.google.com:19302'}, | |
| {url:'stun:stun2.l.google.com:19302'}, |
THIS GIST WAS MOVED TO TERMSTANDARD/COLORS REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
| import os | |
| import urllib2, posixpath, urlparse | |
| DOWNLOADS_DIR = './mp3' | |
| # For every line in the file | |
| for url in open('list.urls'): | |
| resp = urllib2.urlopen(url) | |
| # Split on the rightmost / and take everything on the right side of that | |
| name = urllib2.unquote(posixpath.basename(urlparse.urlsplit(resp.url).path)) |
| <? | |
| if(file_exists('/www/global/lockdown')) { | |
| if($_COOKIE['4chan_auser'] && $_COOKIE['4chan_apass'] && ($_POST['mode']=='usrdel'||$_GET['mode']=='latest')) { | |
| // ok | |
| } | |
| else { | |
| die('Posting temporarily disabled. Come back later!<br/>—Team 4chan (uptime? what\'s that?)'); | |
| } | |
| } | |
| include_once "./yotsuba_config.php"; |
| 07:01:38 /var/projects | |
| $ mkdir gitStashConflictExample | |
| 07:01:53 /var/projects | |
| $ cd gitStashConflictExample/ | |
| 07:01:55 /var/projects/gitStashConflictExample | |
| $ git init | |
| Initialized empty Git repository in /var/projects/gitStashConflictExample/.git/ |
| var failCount = 6; | |
| // These can be constants | |
| var FAIL_THRESHOLD = 5; | |
| var SECONDS_PER_INTERVAL = 5; | |
| var FUZZ_FACTOR = 0.1; | |
| // Returns delay 'fuzzed' by a random amount | |
| function fuzzDelay(delay) { | |
| var initial = function(delay) { return (delay - ((delay * FUZZ_FACTOR) / 2)); }; |
| ## | |
| # This module requires Metasploit: http//metasploit.com/download | |
| # Current source: https://github.com/rapid7/metasploit-framework | |
| ## | |
| require 'msf/core' | |
| class Metasploit3 < Msf::Auxiliary | |
| include Msf::Exploit::Capture |
| ################## | |
| # Privacy Settings | |
| ################## | |
| # Privacy: Let apps use my advertising ID: Disable | |
| Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo -Name Enabled -Type DWord -Value 0 | |
| # To Restore: | |
| #Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo -Name Enabled -Type DWord -Value 1 | |
| # Privacy: SmartScreen Filter for Store Apps: Disable | |
| Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AppHost -Name EnableWebContentEvaluation -Type DWord -Value 0 |