This file contains 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
county | population | website | portal | type | version | |
---|---|---|---|---|---|---|
Anderson | 59120 | http://www.co.anderson.tx.us/ | http://ac5.co.anderson.tx.us/PublicAccess/default.aspx | odyssey | 2003 | |
Andrews | 19588 | http://www.co.andrews.tx.us/ | ||||
Angelina | 90669 | http://www.angelinacounty.net/ | http://public.angelinacounty.net/default.aspx | odyssey | 2003 | |
Aransas | 23649 | http://www.aransascountytx.gov/main/ | ||||
Archer | 9135 | http://www.co.archer.tx.us/ | ||||
Armstrong | 2028 | http://www.co.armstrong.tx.us/ | ||||
Atascosa | 51233 | http://www.atascosacounty.texas.gov/ | ||||
Austin | 32344 | http://www.austincounty.com/ | http://public.austincounty.com/default.aspx | odyssey | 2003 | |
Bailey | 7082 | http://www.co.bailey.tx.us/ |
This file contains 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 Get-BrowserData { | |
<# | |
.SYNOPSIS | |
Dumps Browser Information | |
Original Author: u/424f424f | |
Modified by: 51Ev34S | |
License: BSD 3-Clause | |
Required Dependencies: None | |
Optional Dependencies: None | |
.DESCRIPTION |
This is a helper function that will convert a given PDF file blob into text, as well as offering options to save the original PDF, intermediate Google Doc, and/or final plain text files. Additionally, the language used for Optical Character Recognition (OCR) may be specified, defaulting to 'en' (English).
Note: Updated 12 May 2015 due to deprecation of DocsList. Thanks to Bruce McPherson for the getDriveFolderFromPath()
utility.
// Start with a Blob object
var blob = gmailAttchment.getAs(MimeType.PDF);
This file contains 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
export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games | |
script_dir=/var/root/scripts | |
pattern=AccessPopup | |
last_command="NoNe" | |
if ps ax | grep $0 | grep -v $$ | grep bash | grep -v grep; then | |
echo "The script is already running." | |
exit 1 | |
fi |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
# Tested with jq-1.6 | |
# The script converts json entries into lines of format | |
# `filename[TAB]content-in-base64` and then | |
# for each line creates the corresponding file | |
# with the content decoded. | |
# Better be in a safe directory!! | |
mkdir /tmp/snippets-backup | |
cd /tmp/snippets-backup |
This file contains 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
#!/usr/bin/env python3 | |
import time | |
import uuid | |
import random | |
import re | |
import sys | |
import requests |
This file contains 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 works | |
## Content of C:\Plop.ps1 | |
Write-host "plop" | |
# Code to import a script file as function | |
$Content = Get-Content C:\plop.ps1 -raw |
This file contains 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
import requests | |
import base64 | |
import sys | |
# Generates a Microsoft Symbol Server link from a filename and a file hash using VirusTotal. | |
# Example: | |
# microsoft-symbol-server-link-gen.py srv2.sys pD5a0dKSCg7Kc0g1yDyWEX8n8ogPj/niCIy4yUR7WvQ= | |
# Details: | |
# https://m417z.com/Introducing-Winbindex-the-Windows-Binaries-Index/ |
NewerOlder